/* ============================================
   BASE RESET & UTILITIES
============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-green { color: #008000; }
.text-red { color: #cc0000; }
.text-blue { color: #3b82f6; text-decoration: none; }
.section-padding { padding: 50px 0; }
.section-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.mt-4 { margin-top: 30px; }

/* ============================================
   ENQUIRY MODAL
============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}
.modal-overlay.active {
    display: flex;
}
.modal-box {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    width: 100%;
    max-width: 480px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.modal-box h2 {
    color: #008000;
    margin-bottom: 6px;
    font-size: 24px;
}
.modal-box p {
    color: #777;
    font-size: 14px;
    margin-bottom: 20px;
}
.modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: #555;
    line-height: 1;
}
.modal-close:hover { color: #cc0000; }
.modal-form-group { margin-bottom: 14px; }
.modal-form-group input,
.modal-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}
.modal-form-group input:focus,
.modal-form-group textarea:focus {
    border-color: #008000;
}
.modal-submit-btn {
    width: 100%;
    background-color: #008000;
    color: #fff;
    border: none;
    padding: 13px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 6px;
    transition: background-color 0.2s;
}
.modal-submit-btn:hover { background-color: #006600; }

/* ============================================
   ANNOUNCEMENT BAR
============================================ */
.announcement-bar {
    background-color: #f26b38;
    color: #ffffff;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.marquee-content {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding-left: 100%;
    animation: scroll-left 25s linear infinite;
}

.announcement-bar:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ============================================
   FIXED ELEMENTS
============================================ */
.enquiry-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #008000;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    z-index: 1000;
    font-weight: bold;
    border-radius: 5px 0 0 5px;
    transition: background-color 0.2s;
}
.enquiry-btn:hover {
    background-color: #006600;
}

/* WhatsApp Fixed Icon */
.phone-icon {
    position: fixed;
    left: 20px;
    bottom: 20px;
    background-color: #008000;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.phone-icon:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ============================================
   TOP BAR
============================================ */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 50px 0px 50px;
    background-color: #fff;
    border-bottom: 2px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: relative;
    z-index: 1000;
}
.top-bar .logo a {
    display: inline-block;
}
.top-bar .logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
}
.contact-info {
    display: flex;
    align-items: center;
    gap: 24px;
}
.contact-info span {
    font-size: 13.5px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 7px;
}
.contact-info span i {
    color: #f26b38;
    font-size: 14px;
}
.contact-info span a:hover {
    color: #f26b38 !important;
}

/* ============================================
   NAVBAR
============================================ */
.navbar {
    background-color: #f26b38;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 3px 12px rgba(242,107,56,0.3);
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 4px;
}
.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    padding: 18px 14px;
    display: block;
    letter-spacing: 0.4px;
    border-bottom: 3px solid transparent;
    transition: background 0.2s, border-color 0.2s;
}
.nav-links a:hover {
    background: rgba(0,0,0,0.12);
    border-bottom: 3px solid #fff;
}

/* WhatsApp Button */
.closed-btn {
    background-color: #008000;
    color: white;
    border: none;
    padding: 11px 28px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(37, 211, 102, 0.3);
    transition: transform 0.15s, box-shadow 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.closed-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(37, 211, 102, 0.4);
}
.closed-btn i.fa-whatsapp {
    font-size: 16px;
}

/* ============================================
   HAMBURGER MENU
============================================ */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 42px;
    height: 42px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 6px;
    transition: background 0.2s;
    z-index: 1000;
}
.hamburger:hover { background: rgba(0,0,0,0.12); }
.hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.mobile-menu-backdrop.active {
    display: block;
    opacity: 1;
}

/* Mobile WhatsApp Button - Hidden on Desktop */
.mobile-apply-btn {
    display: none;
}
body.menu-open { overflow: hidden; }

/* ============================================
   RESPONSIVE - MOBILE
============================================ */
@media screen and (max-width: 768px) {
    .announcement-bar {
        padding: 8px 0;
    }
    .marquee-content {
        font-size: 14px;
        animation-duration: 20s;
    }

    .top-bar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        padding: 8px 12px;
        text-align: left;
    }
    .top-bar .logo {
        flex: 0 0 auto;
        text-align: left;
    }
    .top-bar .logo img { height: 45px; }
    .contact-info {
        flex: 1 1 auto;
        flex-direction: column;
        gap: 3px;
        align-items: flex-end;
        text-align: right;
        min-width: 0;
    }
    .contact-info span {
        font-size: 11px;
        gap: 5px;
        word-break: break-word;
    }
    .contact-info span strong { font-size: 11px; font-weight: 600; }
    .contact-info span i { font-size: 12px; }

    .navbar {
        padding: 8px 15px;
        justify-content: flex-end;
        position: sticky;
    }
    .hamburger {
        display: flex;
        order: 2;
        z-index: 1000;
    }
    
    /* Hide Desktop WhatsApp Button on Mobile */
    .nav-button {
        display: none !important;
    }
    
    /* Show Mobile WhatsApp Button on Mobile */
    .mobile-apply-btn {
        display: inline-flex !important;
        order: 1;
        margin-right: auto;
        background-color: #008000 !important;
        color: #fff;
        padding: 8px 16px;
        font-size: 12px;
        border-radius: 6px;
        border: none;
        cursor: pointer;
        font-weight: 700;
        box-shadow: 0 2px 6px rgba(37, 211, 102, 0.3);
        align-items: center;
        gap: 6px;
    }
    .mobile-apply-btn i.fa-whatsapp {
        font-size: 14px;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #f26b38;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        z-index: 999;
        box-shadow: 0 6px 18px rgba(0,0,0,0.25);
        transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.25s ease, visibility 0s linear 0.35s;
        pointer-events: none;
    }
    .nav-links.active {
        max-height: calc(100vh - 60px);
        padding: 8px 0 16px;
        opacity: 1;
        visibility: visible;
        overflow-y: auto;
        pointer-events: auto;
        transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.25s ease, visibility 0s linear 0s;
    }
    .nav-links li { width: 100%; }
    .nav-links a {
        padding: 14px 22px;
        font-size: 14px;
        border-bottom: 1px solid rgba(255,255,255,0.18);
        border-left: 4px solid transparent;
    }
    .nav-links a:hover {
        background: rgba(0,0,0,0.18);
        border-bottom: 1px solid rgba(255,255,255,0.18);
        border-left: 4px solid #008000;
    }

    /* Fixed WhatsApp Icon - Mobile */
    .phone-icon {
        width: 50px;
        height: 50px;
        font-size: 26px;
        left: 12px;
        bottom: 12px;
    }
}

@media screen and (max-width: 480px) {
    .announcement-bar {
        padding: 6px 0;
    }
    .marquee-content {
        font-size: 13px;
        animation-duration: 15s;
    }
    .top-bar { padding: 6px 10px; }
    .top-bar .logo img { height: 38px; }
    .navbar { padding: 8px 10px; }
    .contact-info span,
    .contact-info span strong { font-size: 10px; }
    .modal-box { padding: 20px 14px; }

    .phone-icon {
        width: 44px;
        height: 44px;
        font-size: 22px;
        left: 10px;
        bottom: 10px;
    }
}


/* Hero Section */
.hero {
    display: flex;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
    min-height: auto;
}
.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
    flex: 1 1 100%;
    min-width: 0;
}








/* ============================================
   OVERVIEW / ABOUT SECTION
============================================ */
.rera-bar {
    background-color: #008000;
    color: white;
    padding: 10px;
    font-weight: bold;
    margin-bottom: 20px;
}

.overview-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    margin-top: 30px;
    text-align: left;
}

.overview-text h2 {
    margin-bottom: 20px;
    color: #333;
}

.overview-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.overview-cert img {
    width: 100%;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 992px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .overview-text h2 {
        font-size: 20px;
    }
    .overview-cert img {
        max-height: 550px !important;
        object-fit: cover;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .overview-text h2 {
        font-size: 18px;
    }
    .rera-bar {
        font-size: 13px;
    }
}







/* ============================================
   FLOOR PLAN SECTION - ENHANCED
============================================ */
.floor-plan {
    background: #f8f9fa;
}

.floor-plan-subtitle {
    font-size: 16px;
    color: #777;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.floor-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.floor-plan-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 20px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
}

.floor-plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
}

.floor-plan-card.featured {
    border: 2px solid #f26b38;
    background: #fffaf5;
}

.floor-plan-card h3 {
    font-size: 20px;
    color: #1a5c1a;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.floor-plan-badge {
    display: inline-block;
    background: #f26b38;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: absolute;
    top: -10px;
    left: 20px;
}

.floor-plan-badge.featured-badge {
    background: #008000;
}

.floor-plan-image {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid #eee;
}

.floor-plan-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.floor-plan-card:hover .floor-plan-image img {
    transform: scale(1.02);
}

.floor-plan-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}

.floor-plan-details ul li {
    padding: 6px 0;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
    gap: 10px;
}

.floor-plan-details ul li:last-child {
    border-bottom: none;
}

.floor-plan-details ul li i {
    color: #f26b38;
    font-size: 14px;
    width: 18px;
    text-align: center;
}

.floor-plan-details ul li strong {
    color: #333;
    font-weight: 600;
}

.floor-plan-btn {
    width: 100%;
    background-color: #008000;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.15s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.floor-plan-btn:hover {
    background-color: #1da851;
    transform: translateY(-2px);
}

.floor-plan-btn i {
    font-size: 16px;
}

.floor-plan-note {
    max-width: 800px;
    margin: 20px auto 0;
    padding: 15px 20px;
    background: #fff3e6;
    border-radius: 8px;
    border-left: 4px solid #f26b38;
}

.floor-plan-note p {
    font-size: 13px;
    color: #777;
    margin: 0;
}

.floor-plan-note p i {
    color: #f26b38;
    margin-right: 8px;
}

/* ============================================
   RESPONSIVE - FLOOR PLAN
============================================ */
@media (max-width: 992px) {
    .floor-plan-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .floor-plan {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .floor-plan-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .floor-plan-card {
        padding: 20px 15px 25px;
    }
    
    .floor-plan-card h3 {
        font-size: 18px;
    }
    
    .floor-plan-details ul li {
        font-size: 13px;
        padding: 5px 0;
    }
    
    .floor-plan-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .floor-plan-card {
        padding: 18px 12px 20px;
    }
    
    .floor-plan-card h3 {
        font-size: 16px;
    }
    
    .floor-plan-details ul li {
        font-size: 12px;
        padding: 4px 0;
    }
    
    .floor-plan-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .floor-plan-note p {
        font-size: 12px;
    }
}


/* ============================================
   LOCATION SECTION - ENHANCED
============================================ */
.location {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.location-subtitle {
    font-size: 16px;
    color: #777;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    align-items: start;
}

.location-description p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    font-size: 15px;
}

.location-description p strong {
    color: #1a5c1a;
}

.location-map-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.10);
}

.location-map {
    position: relative;
    width: 100%;
}

.location-map img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.location-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(242, 107, 56, 0.92);
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(242, 107, 56, 0.4);
    animation: pulse-marker 2s infinite;
}

.location-marker i {
    font-size: 18px;
}

@keyframes pulse-marker {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

/* ============================================
   LOCATION BENEFITS
============================================ */
.location-benefits {
    margin-top: 20px;
}

.benefits-title {
    font-size: 22px;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.benefits-title i {
    color: #f26b38;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-card {
    background: #ffffff;
    padding: 20px 18px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #f26b38;
}

.benefit-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #f26b38;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.benefit-info h4 {
    font-size: 14px;
    color: #333;
    margin-bottom: 3px;
    font-weight: 700;
}

.benefit-info p {
    font-size: 12px;
    color: #777;
    margin-bottom: 4px;
    line-height: 1.4;
}

.benefit-distance {
    font-size: 11px;
    color: #008000;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.benefit-distance i {
    font-size: 11px;
}

/* ============================================
   LOCATION CTA
============================================ */
.location-cta {
    margin-top: 40px;
}

.location-cta .closed-btn {
    background-color: #25D366;
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.location-cta .closed-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
}

.location-cta .closed-btn i {
    font-size: 18px;
}

/* ============================================
   RESPONSIVE - LOCATION
============================================ */
@media (max-width: 992px) {
    .location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .location-map img {
        height: 300px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .location {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .location-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .location-description p {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .location-map img {
        height: 250px;
    }
    
    .location-marker {
        padding: 10px 16px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    .location-marker i {
        font-size: 14px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .benefit-card {
        padding: 15px 12px;
        gap: 10px;
    }
    
    .benefit-icon {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    
    .benefit-info h4 {
        font-size: 13px;
    }
    
    .benefit-info p {
        font-size: 11px;
    }
    
    .benefits-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .location-map img {
        height: 200px;
    }
    
    .location-marker {
        padding: 8px 12px;
        font-size: 10px;
        gap: 6px;
    }
    
    .location-marker i {
        font-size: 12px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .benefit-card {
        padding: 12px 10px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
    }
    
    .benefit-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .benefit-info h4 {
        font-size: 12px;
    }
    
    .benefit-info p {
        font-size: 10px;
    }
    
    .benefit-distance {
        font-size: 10px;
    }
    
    .location-cta .closed-btn {
        padding: 12px 24px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }
}



/* ============================================
   PAYMENT PLAN SECTION
============================================ */
.payment {
    background: #ffffff;
}

.payment-subtitle {
    font-size: 16px;
    color: #777;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

/* Payment Note */
.payment-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff3e6;
    border-left: 4px solid #f26b38;
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 35px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.payment-note i {
    color: #f26b38;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.payment-note p {
    font-size: 14px;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

.payment-note p strong {
    color: #cc0000;
}

/* Payment Schedule */
.payment-schedule-wrapper {
    margin-bottom: 40px;
}

.payment-schedule-wrapper h4 {
    color: #333;
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.payment-schedule-wrapper h4 i {
    color: #f26b38;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.schedule-item {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.schedule-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #f26b38;
}

.schedule-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #f26b38;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.schedule-details {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.schedule-label {
    font-size: 13px;
    color: #555;
    font-weight: 500;
}

.schedule-percent {
    font-size: 22px;
    font-weight: 800;
    color: #008000;
    background: #e8f5e8;
    padding: 4px 18px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Payment Progress Bar */
.payment-progress-wrapper {
    margin-bottom: 40px;
}

.payment-progress-wrapper h4 {
    color: #333;
    font-size: 18px;
    text-align: center;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.payment-progress-wrapper h4 i {
    color: #f26b38;
}

.progress-bar-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 850px;
    margin: 0 auto;
    padding: 10px 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.progress-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ddd;
    border: 3px solid #ddd;
    z-index: 2;
    transition: all 0.3s ease;
}

.progress-dot.active {
    background: #008000;
    border-color: #008000;
    box-shadow: 0 0 0 4px rgba(0, 128, 0, 0.2);
}

.progress-line {
    position: absolute;
    top: 10px;
    left: 50%;
    width: 100%;
    height: 3px;
    background: #ddd;
    z-index: 1;
    transition: background 0.5s ease;
}

.progress-line.active {
    background: #008000;
}

.progress-step:last-child .progress-line {
    display: none;
}

.progress-label {
    font-size: 12px;
    color: #666;
    font-weight: 600;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.progress-percent {
    font-size: 14px;
    color: #008000;
    font-weight: 700;
    margin-top: 2px;
}

/* Pricing Summary */
.pricing-summary-wrapper {
    margin-bottom: 30px;
}

.pricing-summary-wrapper h4 {
    color: #333;
    font-size: 18px;
    text-align: center;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-summary-wrapper h4 i {
    color: #f26b38;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.pricing-card.highlight {
    border: 2px solid #008000;
    background: #f0faf0;
}

.pricing-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #f26b38;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.pricing-card.highlight .pricing-icon {
    background: #008000;
}

.pricing-details {
    flex: 1;
}

.pricing-label {
    display: block;
    font-size: 13px;
    color: #777;
    font-weight: 500;
    margin-bottom: 2px;
}

.pricing-value {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #1a5c1a;
}

.pricing-card.highlight .pricing-value {
    color: #008000;
}

.pricing-note {
    font-size: 11px;
    color: #999;
    margin-top: 2px;
}

/* Additional Charges */
.additional-charges-wrapper {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px 25px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.additional-charges-wrapper h4 {
    color: #333;
    font-size: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.additional-charges-wrapper h4 i {
    color: #f26b38;
}

.additional-charges {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 30px;
}

.additional-charges li {
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.additional-charges li i {
    color: #008000;
    font-size: 14px;
}

/* Payment CTA */
.payment-cta {
    margin-top: 10px;
}

.payment-cta .closed-btn {
    background-color: #008000;
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 128, 0, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.payment-cta .closed-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 128, 0, 0.45);
}

.payment-cta .closed-btn i {
    font-size: 18px;
}

/* Payment Disclaimer */
.payment-disclaimer {
    font-size: 13px;
    color: #999;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.payment-disclaimer i {
    color: #f26b38;
}

/* ============================================
   RESPONSIVE - PAYMENT PLAN
============================================ */
@media (max-width: 992px) {
    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 600px;
    }
    
    .pricing-grid {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .payment {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .payment-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .payment-note {
        padding: 14px 16px;
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .payment-note p {
        font-size: 13px;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        max-width: 400px;
    }
    
    .schedule-item {
        padding: 14px 12px;
    }
    
    .schedule-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .schedule-label {
        font-size: 12px;
    }
    
    .schedule-percent {
        font-size: 18px;
        padding: 3px 14px;
    }
    
    /* Progress Bar - Mobile */
    .progress-bar-container {
        flex-direction: column;
        gap: 12px;
        padding: 10px 0;
    }
    
    .progress-step {
        flex-direction: row;
        width: 100%;
        gap: 14px;
        align-items: center;
        padding: 8px 14px;
        background: #f8f9fa;
        border-radius: 8px;
        border-left: 3px solid #ddd;
    }
    
    .progress-step .progress-dot {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }
    
    .progress-step .progress-line {
        display: none !important;
    }
    
    .progress-step .progress-label {
        margin-top: 0;
        font-size: 12px;
        flex: 1;
        text-align: left;
    }
    
    .progress-step .progress-percent {
        margin-top: 0;
        font-size: 14px;
        font-weight: 700;
    }
    
    .progress-step.active-border {
        border-left-color: #008000;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        gap: 15px;
    }
    
    .pricing-card {
        padding: 18px 16px;
    }
    
    .pricing-icon {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }
    
    .pricing-value {
        font-size: 19px;
    }
    
    .additional-charges-wrapper {
        padding: 16px 18px;
    }
    
    .additional-charges {
        flex-direction: column;
        gap: 8px;
    }
    
    .additional-charges li {
        font-size: 13px;
    }
    
    .payment-cta .closed-btn {
        padding: 12px 30px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .payment-subtitle {
        font-size: 13px;
    }
    
    .payment-note {
        padding: 12px 14px;
    }
    
    .payment-note p {
        font-size: 12px;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        max-width: 300px;
    }
    
    .schedule-item {
        padding: 12px 14px;
        flex-direction: row;
        justify-content: center;
        gap: 14px;
    }
    
    .schedule-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .schedule-details {
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
    }
    
    .schedule-label {
        font-size: 11px;
    }
    
    .schedule-percent {
        font-size: 15px;
        padding: 2px 12px;
    }
    
    .pricing-card {
        padding: 14px 12px;
        gap: 12px;
    }
    
    .pricing-icon {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    
    .pricing-value {
        font-size: 17px;
    }
    
    .pricing-label {
        font-size: 12px;
    }
    
    .additional-charges-wrapper h4 {
        font-size: 14px;
    }
    
    .additional-charges li {
        font-size: 12px;
    }
    
    .payment-cta .closed-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .payment-disclaimer {
        font-size: 11px;
        flex-direction: column;
        gap: 4px;
    }
}



/* ============================================
   AMENITIES SECTION - ICON BASED (Compact)
============================================ */
.amenities {
    background: #f8f9fa;
}

.amenities-subtitle {
    font-size: 16px;
    color: #777;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

/* Amenity Category */
.amenity-category {
    margin-bottom: 40px;
}

.amenity-category:last-of-type {
    margin-bottom: 30px;
}

.category-title {
    font-size: 18px;
    color: #1a5c1a;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8f5e8;
}

.category-title i {
    color: #f26b38;
    font-size: 20px;
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.amenity-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 16px 12px 14px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #f26b38;
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.amenity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #f26b38;
}

.amenity-card:hover::before {
    transform: scaleX(1);
}

/* Large Icon - Smaller */
.amenity-icon-large {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f26b38, #e0552a);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 3px 12px rgba(242, 107, 56, 0.25);
}

.amenity-card:hover .amenity-icon-large {
    transform: scale(1.06) rotate(-3deg);
    box-shadow: 0 5px 20px rgba(242, 107, 56, 0.35);
}

/* Amenity Info - Smaller */
.amenity-info h4 {
    font-size: 13px;
    color: #1a5c1a;
    margin-bottom: 4px;
    font-weight: 700;
}

.amenity-info p {
    font-size: 11px;
    color: #777;
    line-height: 1.4;
    margin-bottom: 0;
}

/* CTA Button */
.amenities-cta {
    margin-top: 20px;
}

.amenities-cta .closed-btn {
    background-color: #008000;
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 128, 0, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.amenities-cta .closed-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 128, 0, 0.45);
}

.amenities-cta .closed-btn i {
    font-size: 18px;
}

/* ============================================
   RESPONSIVE - AMENITIES
============================================ */
@media (max-width: 992px) {
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .amenities {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .amenities-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .category-title {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .amenity-card {
        padding: 12px 10px 10px;
    }
    
    .amenity-icon-large {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .amenity-info h4 {
        font-size: 12px;
    }
    
    .amenity-info p {
        font-size: 10px;
        line-height: 1.3;
    }
    
    .amenities-cta .closed-btn {
        padding: 12px 30px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .amenities-subtitle {
        font-size: 13px;
    }
    
    .category-title {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .amenity-card {
        padding: 10px 8px 8px;
        border-radius: 8px;
    }
    
    .amenity-icon-large {
        width: 34px;
        height: 34px;
        font-size: 14px;
        margin-bottom: 6px;
        box-shadow: 0 2px 10px rgba(242, 107, 56, 0.20);
    }
    
    .amenity-info h4 {
        font-size: 11px;
    }
    
    .amenity-info p {
        font-size: 9px;
        line-height: 1.2;
    }
    
    .amenities-cta .closed-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* ============================================
   CONTACT SECTION
============================================ */
.contact {
    background: #ffffff;
}

.contact-subtitle {
    font-size: 16px;
    color: #777;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

/* Contact Container */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

/* ============================================
   CONTACT FORM
============================================ */
.contact-form-wrapper {
    background: #f8f9fa;
    padding: 35px 30px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
}

.contact-form-wrapper h3 {
    font-size: 20px;
    color: #1a5c1a;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form-wrapper h3 i {
    color: #f26b38;
}

.form-subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group.row {
    display: flex;
    gap: 15px;
}

.input-wrap {
    flex: 1;
    min-width: 0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #ffffff;
    font-family: Arial, sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #008000;
    box-shadow: 0 0 0 3px rgba(0, 128, 0, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: #008000;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 128, 0, 0.30);
}

.submit-btn:hover {
    background-color: #006600;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 128, 0, 0.40);
}

.submit-btn i {
    font-size: 16px;
}

/* ============================================
   CONTACT DETAILS
============================================ */
.contact-details-wrapper {
    padding: 10px 0;
}

.contact-details-wrapper h3 {
    font-size: 20px;
    color: #1a5c1a;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details-wrapper h3 i {
    color: #f26b38;
}

/* Contact Info Cards */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-info-card:hover {
    transform: translateX(6px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border-color: #f26b38;
}

.contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #f26b38;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-text h4 {
    font-size: 14px;
    color: #1a5c1a;
    margin-bottom: 3px;
    font-weight: 700;
}

.contact-text p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.contact-text a {
    color: #008000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.contact-text a:hover {
    color: #f26b38;
    text-decoration: underline;
}

/* ============================================
   SOCIAL LINKS
============================================ */
.social-links h4 {
    font-size: 15px;
    color: #333;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links h4 i {
    color: #f26b38;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.social-icon:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.20);
    color: #fff;
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.instagram {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.social-icon.youtube {
    background: #ff0000;
}

.social-icon.whatsapp {
    background: #25D366;
}

/* ============================================
   RESPONSIVE - CONTACT
============================================ */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 35px;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .contact {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .contact-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .contact-form-wrapper {
        padding: 25px 18px;
    }
    
    .contact-form-wrapper h3 {
        font-size: 17px;
    }
    
    .form-group.row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group.row input {
        margin-bottom: 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 11px 14px;
        font-size: 13px;
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .contact-details-wrapper h3 {
        font-size: 17px;
        margin-bottom: 18px;
    }
    
    .contact-info-card {
        padding: 14px 16px;
        gap: 14px;
    }
    
    .contact-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    
    .contact-text h4 {
        font-size: 13px;
    }
    
    .contact-text p {
        font-size: 13px;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .contact-subtitle {
        font-size: 13px;
    }
    
    .contact-form-wrapper {
        padding: 18px 14px;
    }
    
    .contact-form-wrapper h3 {
        font-size: 15px;
    }
    
    .form-subtitle {
        font-size: 13px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .submit-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .contact-details-wrapper h3 {
        font-size: 15px;
    }
    
    .contact-info-card {
        padding: 12px 14px;
        gap: 12px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    
    .contact-text h4 {
        font-size: 12px;
    }
    
    .contact-text p {
        font-size: 12px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .social-icon {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
}


/* ============================================
   FOOTER
============================================ */
footer {
    background-color: #f1f1f1;
    text-align: center;
    padding: 40px 30px 24px;
    color: #555;
    font-size: 14px;
    border-top: 4px solid #f26b38;
}

footer p strong {
    font-size: 14px;
    color: #333;
}

.disclaimer {
    font-size: 12px;
    margin-top: 18px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    color: #888;
    line-height: 1.7;
    border-top: 1px solid #ddd;
    padding-top: 16px;
}

/* ============================================
   RESPONSIVE - FOOTER
============================================ */
@media (max-width: 768px) {
    footer {
        padding: 30px 15px 20px;
    }
    
    footer p {
        font-size: 13px;
    }
    
    .disclaimer {
        font-size: 11px;
        padding-top: 12px;
        margin-top: 14px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 25px 12px 16px;
    }
    
    footer p {
        font-size: 12px;
    }
    
    .disclaimer {
        font-size: 10px;
        line-height: 1.6;
        padding-top: 10px;
        margin-top: 12px;
    }
}