* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
    --primary: #1E3A8A; /* Deep Blue */
    --secondary: #2790f7; /* Sky Blue */
    --success: #059669; /* New Accent for success */
    --accent: #F59E0B; /* Kept for limited-time offers/urgency */
    --light: #e5f4ff;
    --white: #FFFFFF;
    --text: #1E293B;
    --text-muted: #64748B;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
}

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--text);
            background: var(--white);
        }

        /* Navigation */
        nav {
            background: var(--white);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
            border-bottom: 1px solid #E2E8F0;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .logo-text {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--primary);
        }

        .logo-dan {
            color: var(--secondary);
        }

        .logo-stars {
            color: var(--accent);
            font-size: 0.9rem;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
            padding: 0.5rem 0;
        }

        .nav-links a:hover {
            color: var(--secondary);
        }

        /* Hero */
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, #0A2E5C 100%);
            color: var(--white);
            padding: 5rem 2rem;
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero .tagline {
            font-size: 1.1rem;
            color: var(--secondary);
            margin-bottom: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            font-weight: 800;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.15rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 0.9rem 2rem;
            border: none;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

       .btn-primary {
    /* Changed from --secondary (Sky Blue) to --success (Green) */
    background: var(--success);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3); /* Add green shadow */
}

.btn-primary:hover {
    background: #047857; /* Darker shade of success green for hover */
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
        .btn-accent {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3); /* Add orange shadow */
}

.btn-accent:hover {
    background: #E67A34; /* Darker orange */
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-outline:hover {
            background: var(--white);
            color: var(--primary);
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .section-title {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 0.75rem;
            color: var(--primary);
            font-weight: 700;
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-light);
            font-size: 1.05rem;
            margin-bottom: 3rem;
        }

        /* Badge */
     .pearson-badge {
    /* Replaced yellow gradient with light success green gradient */
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    padding: 1rem 2rem;
    border-radius: 8px;
    display: inline-block;
    margin: 0 auto 3rem;
    font-weight: 700; /* Increased weight */
    color: var(--success); /* Dark success green text */
    border: 2px solid var(--success); /* Success green border */
    display: block;
    text-align: center;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
    letter-spacing: 1px;
}
        /* Features */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .feature-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
            transition: all 0.3s;
            text-align: center;
            border: 1px solid #E2E8F0;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--secondary);
    background-color: #70c1c9; /* Very light gray background on hover */
}
        

    .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    /* NEW STYLES for visual pop */
    display: inline-flex;
    padding: 1rem;
    border-radius: 50%;
    background: var(--light); /* Very light blue background */
    color: var(--primary); /* Deep blue icon color */
    box-shadow: 0 0 0 10px rgba(39, 144, 247, 0.1); /* Subtle ring for emphasis */
}


    .feature-card h3 {
            color: var(--primary);
            margin-bottom: 0.75rem;
            font-size: 1.2rem;
        }

        .feature-card p {
            color: var(--text-light);
                 font-size: 0.95rem;
        }

        /* Stats Layout (for the row of cards) */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

/* Individual Stat Card */
.stat-card {
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    background-color: white; 
    box-shadow: 0 4px 10px rgba(3, 45, 96, 0.08); /* Subtle shadow */
}

/* The Highlighted Stat Number (Dan PTE Gradient) */
.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2px;
    
    /* Gradient Effect */
    background: linear-gradient(to right, #00C6FF, #032D60);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent; 
}

/* Description Text */
.stat-card p {
    font-size: 1rem;
    color: var(--text-color);
    margin: 0;
}

/* Responsiveness (for small screens) */
@media (max-width: 768px) {
    .stats {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
    }
}

        /* Courses */
        .courses {
            background: var(--light-bg);
        }

        .promo-banner {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
            color: var(--white);
            padding: 2.5rem 2rem;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 3rem;
            box-shadow: var(--shadow-lg);
        }

        .promo-banner h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .promo-badge {
            display: inline-block;
            background: var(--accent);
            color: var(--white);
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-size: 1.3rem;
            font-weight: 800;
            margin: 1rem 0;
        }

        .promo-banner p {
            font-size: 1.05rem;
            opacity: 0.95;
        }

        .course-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .course-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.3s;
            border: 1px solid #E2E8F0;
        }

        .course-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .course-image {
            width: 100%;
            height: 180px;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.5rem;
        }

        .course-content {
            padding: 2rem;
        }

        .course-card h3 {
            color: var(--primary);
            margin-bottom: 0.75rem;
            font-size: 1.4rem;
        }

        .course-card > .course-content > p {
            color: var(--text-light);
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

        .course-card ul {
            text-align: left;
            margin: 1.25rem 0;
            padding-left: 1.25rem;
            color: var(--text);
        }

        .course-card li {
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        .course-price {
            font-size: 1.8rem;
            color: var(--secondary);
            font-weight: 800;
            margin: 1.5rem 0;
        }

        .discount-price {
            text-decoration: line-through;
            color: var(--text-light);
            font-size: 1.1rem;
            margin-right: 0.5rem;
            font-weight: 500;
        }

        /* Booking */
        
        .booking-section {
            background: linear-gradient(135deg, var(--primary) 0%, #0A2E5C 100%);
            color: var(--white);
            padding: 4rem 2rem;
        }

        .booking-section h2 {
            text-align: center;
            margin-bottom: 0.75rem;
            font-size: 2.2rem;
        }

        .booking-section > p {
            text-align: center;
            margin-bottom: 2rem;
            font-size: 1.05rem;
            opacity: 0.95;
        }

        .booking-form {
            max-width: 600px;
            margin: 0 auto;
            background: var(--white);
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: var(--shadow-lg);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text);
            font-weight: 600;
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.85rem;
            border: 2px solid #E2E8F0;
            border-radius: 8px;
            font-size: 0.95rem;
            transition: border-color 0.3s;
            font-family: inherit;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary);
        }

        /* Tutor */
        .tutor-section {
            background: var(--white);
        }

        .tutor-profile {
            display: flex;
            gap: 3rem;
            align-items: center;
            max-width: 1000px;
            margin: 0 auto;
            flex-wrap: wrap;
            background: var(--light-bg);
            padding: 3rem;
            border-radius: 12px;
        }

        .tutor-image {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    /* NEW: Solid light background for a cleaner placeholder image effect */
    background: #F3F4F6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--text-muted); /* Muted text color for the emoji */
    box-shadow: var(--shadow-lg);
    /* Changed border to success green to highlight expertise */
    border: 4px solid var(--success);
    flex-shrink: 0;
}

        .tutor-info {
            flex: 1;
            min-width: 300px;
        }

        .tutor-info h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .tutor-name {
            color: var(--secondary);
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .tutor-info p {
            margin-bottom: 1rem;
            line-height: 1.7;
            color: var(--text);
        }

        /* Section Header Wrapper */
/* Section Header - BIGGER & BOLDER */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4.5rem;
    position: relative;
    z-index: 1;
}

/* Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--success) 0%, #047857 100%);
    color: var(--white);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 30px rgba(5, 150, 105, 0.35);
    transition: all 0.3s ease;
}

.section-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(5, 150, 105, 0.45);
}

/* Section Title - MUCH BIGGER */
.section-header .section-title {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

/* Section Subtitle - BIGGER & CLEARER */
.section-header .section-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .section-header {
        margin-bottom: 3.5rem;
    }
    
    .section-header .section-title {
        font-size: clamp(2.5rem, 7vw, 3.5rem);
        letter-spacing: -1px;
    }
    
    .section-header .section-subtitle {
        font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    }
}
/* Contact */
/* Update: Assuming Dan PTE brand variables */
:root {
    --danpte-dark-blue: #032D60;
    --danpte-vibrant-cyan: #00C6FF;
    --white: #ffffff;
    --text: #343a40;
    --text-muted: #6c757d;
    --light-bg: #f8f9fa; 
    --shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

/* ======================================= */
/* 1. CONTACT SECTION BASE                 */
/* ======================================= */
.contact-section {
    padding: 80px 0;
    background-color: var(--light-bg); /* Light background for contrast */
    text-align: center;
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--danpte-dark-blue);
    font-weight: 800;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ======================================= */
/* 2. SECTION BADGE (The Branding Element) */
/* ======================================= */
.section-badge {
    display: inline-block;
    padding: 6px 15px;
    margin-bottom: 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    
    /* Apply the gradient for a premium look, similar to the button border */
    background: linear-gradient(to right, var(--danpte-vibrant-cyan), var(--danpte-dark-blue));
    color: var(--white);
    box-shadow: 0 2px 5px rgba(3, 45, 96, 0.2);
}

/* ======================================= */
/* 3. CONTACT CARDS GRID                   */
/* ======================================= */
.contact-grid {
    display: grid;
    /* 3 equal columns for the 3 cards */
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    max-width: 1000px; /* Optional: Constrain width on large screens */
    margin: 0 auto;
}

.contact-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.contact-card:hover {
    /* Subtle hover effect to indicate interactivity/attention */
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(3, 45, 96, 0.15);
}

/* --- Card Content --- */
.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    
    /* Optional: Give the icons a colorful background border */
    display: inline-flex;
    padding: 10px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--danpte-vibrant-cyan), rgba(3, 45, 96, 0.1));
}

.contact-card h3 {
    font-size: 1.4rem;
    color: var(--danpte-dark-blue);
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-card p {
    margin: 0;
    font-size: 1.0rem;
    color: var(--text);
}

.contact-info p {
    margin: 5px 0;
}

.contact-info strong {
    color: var(--danpte-dark-blue);
}

/* ======================================= */
/* 4. RESPONSIVENESS                       */
/* ======================================= */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: repeat(1, 1fr); /* Stack all cards on mobile/tablet */
        max-width: 400px;
    }
}
/* Footer */
/* Footer */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 5rem 2rem 2.5rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Footer Section Headings */
.footer-section h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.35rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 40px;
    background-color: var(--secondary);
    border-radius: 2px;
}

/* Footer Paragraph */
.footer-section p {
    color: rgba(255, 255, 255, 0.9); 
    line-height: 1.7; 
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Footer Contact List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.footer-contact-list li {
    margin-bottom: 1rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s;
}

.footer-contact-list li:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

/* Contact Item Layout */
.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Icon Styling */
.icon-style {
    font-size: 1.75rem;
    color: var(--secondary);
    flex-shrink: 0;
    width: 2rem;
    text-align: center;
    transition: transform 0.3s;
}

.footer-contact-list li:hover .icon-style {
    transform: scale(1.1);
}

/* Contact Text */
.contact-text {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
    color: var(--white);
    font-size: 1rem;
}

.contact-text strong {
    color: var(--secondary);
    font-size: 1.15rem;
    font-weight: 800;
    padding-bottom: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.9rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease-in-out;
    display: block;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(6px);
    font-weight: 600;
}


    
    footer {
        padding: 3rem 1.5rem 2rem;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
   

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(4px);
        }

        .modal-content {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 12px;
            max-width: 500px;
            margin: 2rem;
            position: relative;
            box-shadow: var(--shadow-lg);
        }

        .close-modal {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--text-light);
            transition: color 0.3s;
        }

        .close-modal:hover {
            color: var(--primary);
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary);
            cursor: pointer;
        }

        @media (max-width: 768px) {
           /* Add this to the existing @media (max-width: 768px) block */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; /* Below the navbar */
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 1rem 0;
    border-top: 1px solid #E2E8F0;
    z-index: 999;
}
.nav-links.active li {
    text-align: center;
    padding: 0.5rem 0;
}
.nav-links.active a {
    display: block; /* Make links full width */
    padding: 0.75rem 0;
}

            .menu-toggle {
                display: block;
            }

            .tutor-profile {
                text-align: center;
                justify-content: center;
                padding: 2rem;
            }

            .tutor-image {
                width: 180px;
                height: 180px;
                font-size: 4rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .course-grid,
            .features {
                grid-template-columns: 1fr;
            }

           /* Contact Section */
        .contact-section {
            background: var(--white);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .contact-card {
            background: var(--light);
            padding: 2.5rem;
            border-radius: 16px;
            text-align: center;
            border: 1px solid #E2E8F0;
            transition: all 0.3s;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border-color: var(--secondary);
        }

        .contact-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .contact-card h3 {
            font-size: 1.25rem;
            color: var(--primary);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .contact-card p {
            color: var(--text-muted);
            margin-bottom: 0.5rem;
        }

        .contact-card strong {
            color: var(--secondary);
            font-weight: 700;
        }
    }


    /* Footer *//* Footer */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 5rem 2rem 0; /* Remove bottom padding, let footer-bottom handle it */
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Footer Section Headings */
.footer-section h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.35rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 40px;
    background-color: var(--secondary);
    border-radius: 2px;
}

/* Footer Paragraph */
.footer-section p {
    color: rgba(255, 255, 255, 0.9); 
    line-height: 1.7; 
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

/* Footer Contact List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.footer-contact-list li {
    margin-bottom: 1rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s;
}

.footer-contact-list li:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

/* Contact Item Layout */
.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Icon Styling */
.icon-style {
    font-size: 1.75rem;
    color: var(--secondary);
    flex-shrink: 0;
    width: 2rem;
    text-align: center;
    transition: transform 0.3s;
}

.footer-contact-list li:hover .icon-style {
    transform: scale(1.1);
}

/* Contact Text */
.contact-text {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
    color: var(--white);
    font-size: 1rem;
}

.contact-text strong {
    color: var(--secondary);
    font-size: 1.15rem;
    font-weight: 800;
    padding-bottom: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.9rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.3s ease-in-out;
    display: block;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(6px);
    font-weight: 600;
}

/* Footer Bottom - FULL WIDTH */
.footer-bottom {
    grid-column: 1 / -1; /* THIS IS KEY - spans all columns */
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem 0;
    text-align: center;
    margin-top: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.85rem, 1vw, 0.95rem);
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    footer {
        padding: 3rem 1.5rem 0;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
}
