/* ================= RESET & BASE ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", system-ui, sans-serif;
}

body {
    background: #ffffff;
    overflow-x: hidden;
}

/* ================= HEADER & NAVBAR STYLES ================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 15px 20px;
    background: transparent;
    box-sizing: border-box;
}

.navbar {
    width: 100%;
    pointer-events: auto;
}

.nav-container {
    max-width: 1250px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 28px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
}

.logo img {
    height: 32px;
    width: auto;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 10002;
    position: relative;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background-color: #146c43;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.menu {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #374151;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.menu a:hover,
.menu a.active {
    color: #146c43;
}

.menu a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #146c43;
    transition: width 0.25s ease;
}

.menu a:hover::before,
.menu a.active::before {
    width: 100%;
}

.nav-item {
    position: relative;
}

.arrow {
    font-size: 11px;
    margin-left: 4px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav-item:hover .arrow {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 48px;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 1000;
    list-style: none;
}

.dropdown li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown li a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: #374151;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.dropdown li a:hover {
    background: #ecfdf5;
    color: #146c43;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ================= MOBILE MENU STYLES ================= */
@media (max-width: 992px) {
    .site-header {
        padding: 12px 15px;
        top: 0;
    }

    .nav-container {
        padding: 10px 20px;
    }

    .hamburger {
        display: flex !important;
    }

    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background-color: #ffffff;
        display: flex !important;
        flex-direction: column;
        gap: 0;
        padding: 80px 20px 30px;
        z-index: 10001;
        overflow-y: auto;
        transition: right 0.3s ease-in-out;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        margin: 0;
        list-style: none;
    }

    .menu.active {
        right: 0;
    }

    .menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .menu a {
        display: block;
        padding: 16px 10px;
        font-size: 16px;
        font-weight: 500;
        border-bottom: none;
    }

    .menu a::before {
        display: none;
    }

    .dropdown {
        position: static;
        display: none;
        margin-top: 0;
        padding-left: 20px;
        box-shadow: none;
        border-radius: 0;
        background: #fafafa;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
        width: 100%;
    }

    .dropdown li a {
        padding: 12px 10px;
        font-size: 14px;
    }

    .nav-item.active > .dropdown {
        display: block !important;
    }

    .nav-item:hover > .dropdown {
        display: none;
    }

    .nav-item > a {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-item.active > a .arrow {
        transform: rotate(180deg);
    }
}

/* ================= CONTACT HERO SECTION ================= */
.contact-hero {
    background: linear-gradient(120deg, #0b5c3b 0%, #157a57 45%, #1f9c6f 100%);
    padding: 140px 20px 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: "";
    position: absolute;
    left: -10%;
    top: 15%;
    width: 70%;
    height: 80%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
}

.contact-hero::after {
    content: "";
    position: absolute;
    left: -18%;
    top: 28%;
    width: 85%;
    height: 90%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-hero-content h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-hero-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* ================= CONTACT MAIN SECTION ================= */
.contact-main {
    padding: 80px 20px;
    background: #fafafa;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* ================= CONTACT INFO SIDE ================= */
.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card, .branches-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef8f4;
}

.contact-info-card h2, .branches-card h3 {
    color: #0b5c3b;
    font-size: 24px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info-card h2 i, .branches-card h3 i {
    font-size: 22px;
    color: #FFA500;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8fdfb;
    border-radius: 12px;
    margin-bottom: 20px;
}

.info-item i {
    color: #FFA500;
    font-size: 20px;
    margin-top: 4px;
}

.info-item h4 {
    color: #0b3d2e;
    font-size: 18px;
    margin-bottom: 8px;
}

.info-item p {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.contact-details {
    margin: 30px 0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #eef8f4;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-icon {
    width: 48px;
    height: 48px;
    background: #ecfdf5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFA500;
    font-size: 18px;
    flex-shrink: 0;
}

.detail-item h4 {
    color: #0b3d2e;
    font-size: 16px;
    margin-bottom: 5px;
}

.detail-item a, .detail-item p {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.detail-item a:hover {
    color: #FFA500;
}

.emergency-contact {
    background: linear-gradient(135deg, #fff9f0 0%, #fff4e6 100%);
    border-radius: 16px;
    padding: 25px;
    margin-top: 30px;
    border-left: 4px solid #FFA500;
}

.emergency-contact h3 {
    color: #0b5c3b;
    font-size: 18px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.emergency-contact p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.emergency-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #FFA500;
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.emergency-btn:hover {
    background: #ff8c00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.3);
}

/* ================= BRANCHES CARD ================= */
.branch-item {
    padding: 20px;
    background: #f8fdfb;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.branch-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.branch-item h4 {
    color: #0b5c3b;
    font-size: 16px;
    margin-bottom: 8px;
}

.branch-item p {
    color: #4b5563;
    font-size: 14px;
    margin: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.branch-item p i {
    color: #FFA500;
    font-size: 12px;
}

.view-all-branches {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FFA500;
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
    padding: 12px 20px;
    border: 2px solid #FFA500;
    border-radius: 12px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.view-all-branches:hover {
    background: #FFA500;
    color: white;
    transform: translateY(-2px);
}

/* ================= CONTACT FORM SIDE ================= */
.contact-form-side {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef8f4;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 28px;
    color: #0b5c3b;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-header h2 i {
    color: #FFA500;
}

.form-header p {
    color: #666;
    font-size: 16px;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
    font-size: 14px;
}

.form-group label i {
    color: #FFA500;
    margin-right: 5px;
    width: 18px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fafafa;
    font-family: inherit;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFA500;
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 165, 0, 0.1);
}

.form-group input.error-input,
.form-group select.error-input,
.form-group textarea.error-input {
    border-color: #ff3333;
    background: #fff8f8;
}

.error-message {
    color: #ff3333;
    font-size: 12px;
    margin-top: 6px;
    display: none;
    padding-left: 4px;
    font-weight: 500;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 25px 0;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #FFA500;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    padding: 16px 30px;
    background: #FFA500;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.submit-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    background: #ff8c00;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 165, 0, 0.3);
}

.submit-btn:hover i {
    transform: translateX(5px);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.submit-btn i.fa-spinner {
    animation: spin 1s linear infinite;
}

.form-note {
    margin-top: 20px;
    text-align: center;
    color: #999;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.form-note i {
    color: #FFA500;
}

/* ================= SUCCESS MESSAGE ================= */
.success-message {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, #f0fff0 0%, #e8ffe8 100%);
    border-radius: 20px;
    margin-top: 20px;
    display: none;
    animation: fadeIn 0.5s ease;
}

.success-message i {
    font-size: 70px;
    color: #4CAF50;
    margin-bottom: 25px;
    display: inline-block;
    animation: scaleIn 0.5s ease;
}

.success-message h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.success-message p {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.success-message .outline-btn {
    background: transparent;
    border: 2px solid #FFA500;
    color: #FFA500;
    padding: 12px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.success-message .outline-btn:hover {
    background: #FFA500;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 165, 0, 0.2);
}

/* ================= QUICK CONTACT BANNER ================= */
.quick-contact-banner {
    background: linear-gradient(135deg, #0b5c3b 0%, #084a30 100%);
    padding: 40px 20px;
    color: white;
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.banner-text h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.banner-text p {
    font-size: 16px;
    opacity: 0.9;
}

.banner-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.call-btn, .whatsapp-btn {
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.call-btn {
    background: white;
    color: #0b5c3b;
}

.call-btn:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* ================= FOOTER STYLING ================= */
.kcpl-footer {
    background: #eef8f4;
    padding-top: 80px;
    border-top: 1px solid #eee;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-logo-img {
    width: 160px;
    margin-bottom: 25px;
}

.footer-col h4 {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    text-decoration: none;
    color: #666;
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: #0b5c3b;
    padding-left: 5px;
}

.company-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

.contact-info p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #333;
}

.green-text {
    color: #0b5c3b;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #0b5c3b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background: #0b5c3b;
    color: white;
    transform: translateY(-3px);
}

.mt-30 {
    margin-top: 30px;
}

.footer-bottom-strip {
    background-color: #0b5c3b;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 0.85rem;
}

/* ================= POPUP OVERLAY ================= */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 20px;
}

.popup-box {
    background: #ffffff;
    width: 100%;
    max-width: 900px;
    max-height: 85vh;
    padding: 40px 45px;
    border-radius: 16px;
    position: relative;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    font-family: "Inter", system-ui, sans-serif;
}

.popup-box h2 {
    font-size: 28px;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #0b5c3b;
}

.popup-box h4 {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #0b5c3b;
}

.popup-content p {
    font-size: 15.5px;
    line-height: 1.85;
    color: #333;
    margin-bottom: 14px;
}

.popup-content hr {
    margin: 35px 0;
    border: none;
    border-top: 1px solid #ddd;
}

.close-btn {
    position: sticky;
    top: 0;
    float: right;
    font-size: 26px;
    cursor: pointer;
    color: #555;
}

.close-btn:hover {
    color: #000;
}

.popup-box::-webkit-scrollbar {
    width: 8px;
}

.popup-box::-webkit-scrollbar-thumb {
    background: #c5c5c5;
    border-radius: 6px;
}

/* ================= ANIMATIONS ================= */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* ================= RESPONSIVE STYLES ================= */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-actions {
        justify-content: center;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .info-col {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 15px 60px;
    }
    
    .contact-hero-content h1 {
        font-size: 36px;
    }
    
    .contact-hero-content p {
        font-size: 16px;
    }
    
    .contact-info-card, .contact-form-side, .branches-card {
        padding: 25px;
    }
    
    .contact-main {
        padding: 60px 15px;
    }
    
    .quick-contact-banner {
        padding: 30px 15px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .info-col {
        grid-column: span 1;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-logo-img {
        margin: 0 auto 20px;
    }
    
    .company-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-info p {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links {
        align-items: center;
    }
}

@media (max-width: 576px) {
    .contact-hero-content h1 {
        font-size: 32px;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .badge {
        width: 100%;
        justify-content: center;
    }
    
    .detail-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .banner-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .call-btn, .whatsapp-btn {
        width: 100%;
        justify-content: center;
    }
    
    .contact-form-side {
        padding: 20px;
    }
    
    .form-header h2 {
        font-size: 22px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
    }
    
    .checkbox-group label {
        font-size: 13px;
    }
    
    .success-message {
        padding: 30px 15px;
    }
    
    .success-message i {
        font-size: 50px;
    }
    
    .success-message h3 {
        font-size: 20px;
    }
    
    .footer-bottom-strip {
        padding: 12px;
        font-size: 0.75rem;
    }
}

/* ================= SELECT DROPDOWN STYLING ================= */
select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    padding-right: 45px;
}

select option:disabled {
    color: #999;
}

/* ================= PLACEHOLDER STYLING ================= */
::placeholder {
    color: #aaa;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #aaa;
}

::-ms-input-placeholder {
    color: #aaa;
}