/* CSS Variables */
:root {
    /* Colors - Primary Purple */
    --primary-light: #a585f5;
    --primary: #8456ee;
    --primary-dark: #6340b5;
    
    /* Colors - Black */
    --black-light: #333333;
    --black: #000000;
    --black-dark: #000000;
    
    /* Colors - White */
    --white-light: #ffffff;
    --white: #ffffff;
    --white-dark: #f5f5f5;
    
    /* Fonts */
    --font-heading: "Abril Fatface", serif;
    --font-body: "Lato", sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent AOS overflow */
[data-aos] {
    overflow-x: clip !important;
}

html, body{
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--black-light);
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--black);
    line-height: 1.2;
}

/* Utility Classes */
.container {
    width: 90%;
    max-width: 1450px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    background: var(--black);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--primary);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

/* Logo */
.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--primary);
    letter-spacing: 1px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.bar {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--white);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hamburger Animation (turns to X when active) */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: var(--primary);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: var(--primary);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-body);
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

/* Underline animation on hover */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Nav Button */
.btn-nav {
    font-family: var(--font-body);
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-nav:hover {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

/* Desktop Styles (992px and above) */
@media (min-width: 992px) {
    .nav-menu {
        display: flex !important;
    }
}

/* Mobile Styles (below 992px) */
@media (max-width: 991px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5rem;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(132, 86, 238, 0.2);
        border-left: 1px solid var(--primary);
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .btn-nav {
        margin-top: 1rem;
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
        font-size: 1rem;
    }
}

/* Hero Section */
.hero {
     background: linear-gradient(90deg, 
        var(--black) 0%, 
        var(--primary) 100%
    );
    color: var(--white);
    padding: 0;
    min-height: 92vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Left Content */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hero-title-highlight {
    color: var(--primary);
    display: block;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--white-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-hero {
    font-family: var(--font-body);
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 2px solid transparent;
}

.btn-school {
    background: var(--primary);
    color: var(--white);
}

.btn-school:hover {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-parents {
    background: transparent;
    border-color: var(--primary);
    color: var(--white);
}

.btn-parents:hover {
    background: var(--primary);
    color: var(--white);
}

/* Trust Badge */
.hero-trust {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.trust-item {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--white-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-item::before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
}

/* Right Image */
.hero-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(132, 86, 238, 0.15);
    border: 1px solid rgba(132, 86, 238, 0.2);
}

.image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--black-light) 0%, var(--black) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.placeholder-text {
    color: var(--white-dark);
    font-family: var(--font-body);
    opacity: 0.5;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-image {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem 0;
        min-height: auto;
        background: linear-gradient(45deg, 
            var(--primary) 0%, 
            var(--black) 70%
        );
    }

    .hero-title {
        font-size: clamp(1.85rem, 5vw, 2rem);
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        margin-bottom: 10px;
    }

    .btn-hero {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .trust-item{
        align-items: left;
    }
}

/* About Section */
.about {
    background: var(--white);
    padding: 5rem 0;
    color: var(--black-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Left Content */
.about-content {
    max-width: 600px;
}

.section-tag {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary);
    display: block;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.about-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.title-highlight {
    color: var(--primary);
    display: inline-block;
}

.about-text {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--black-light);
    margin-bottom: 1.5rem;
}

/* Stats Cards */
.stats-grid {
    display: flex;
    gap: 2rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.stat-card {
    background: var(--black);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    min-width: 120px;
    box-shadow: 0 10px 20px rgba(132, 86, 238, 0.2);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--white);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Button */
.btn-about {
    font-family: var(--font-body);
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-about:hover {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

/* Right Image */
.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(132, 86, 238, 0.15);
}

.about-image-placeholder {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.placeholder-text {
    color: var(--white);
    font-family: var(--font-body);
    opacity: 0.7;
    font-size: 0.875rem;
    text-align: center;
    padding: 1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .stats-grid {
        justify-content: center;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 3rem 0;
    }

    .stats-grid {
        align-items: center;
        gap: 10px;
    }

    .stat-card {
        width: 100%;
        max-width: 150px;
    }

    .stat-number{
        font-size: 1.5rem;
    }

    .stat-label{
        font-size: 0.8rem;
    }

    .about-text {
        font-size: 1rem;
        text-align: left;
        padding: 0 1rem;
    }
    
    .about-title {
        padding: 0 1rem;
    }
    
    .section-tag {
        padding: 0 1rem;
    }
}

/* Services Section */
.services {
    background: var(--white);
    padding: 5rem 0;
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.services-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--black);
    line-height: 1.3;
}

/* Accordion Container */
.accordion-container {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

/* Accordion Item */
.accordion-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Accordion Header */
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-header {
    background: var(--primary);
}

.accordion-item:not(.active) .accordion-header {
    background: var(--gray-100);
}

.accordion-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.accordion-item.active .accordion-title {
    color: var(--white);
}

.accordion-item:not(.active) .accordion-title {
    color: var(--black);
}

/* Accordion Icon */
.accordion-icon {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    color: var(--white);
}

.accordion-item:not(.active) .accordion-icon {
    color: var(--primary);
}

/* Accordion Content */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-top: none;
    border-radius: 0 0 8px 8px;
}

.accordion-item.active .accordion-content {
    max-height: 600px; /* Adjust based on content */
    transition: max-height 0.5s ease-in;
}

/* Service List */
.service-list {
    list-style: none;
    padding: 1.5rem;
    margin: 0;
}

.service-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.service-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-item strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

.service-item p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--black-light);
    line-height: 1.6;
    margin: 0;
}

/* Services CTA */
.services-cta {
    text-align: center;
}

.btn-services {
    font-family: var(--font-body);
    background: var(--primary);
    color: var(--white);
    padding: 1rem 3rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1.1rem;
}

.btn-services:hover {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .services {
        padding: 3rem 0;
    }

    .accordion-header {
        padding: 1rem;
    }

    .accordion-title {
        font-size: 1.1rem;
    }

    .service-list {
        padding: 1rem;
    }

    .service-item strong {
        font-size: 1rem;
    }

    .service-item p {
        font-size: 0.9rem;
    }

    .btn-services {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .accordion-title {
        font-size: 1rem;
    }

    .accordion-icon {
        font-size: 1.25rem;
    }
}

/* Testimonials Section */
.testimonials {
    background: var(--white-dark);
    padding: 5rem 0;
}

.testimonials-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
}

.testimonials-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--black);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.testimonials-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--black-light);
    opacity: 0.8;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Testimonial Card */
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--gray-200);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(132, 86, 238, 0.1);
    border-color: var(--primary-light);
}

/* Stars */
.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
}

.star {
    font-size: 1.25rem;
    color: var(--primary);
    filter: drop-shadow(0 2px 4px rgba(132, 86, 238, 0.2));
}

/* Testimonial Text */
.testimonial-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--black-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* Testimonial Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-initials {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.author-title {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--black-light);
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials {
        padding: 3rem 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr; /* 1 column on mobile as requested */
        gap: 1.5rem;
        max-width: 500px;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonials-subtitle {
        font-size: 1rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .author-initials {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .author-name {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 1.25rem;
    }

    .stars {
        margin-bottom: 1rem;
    }

    .star {
        font-size: 1rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .author-initials {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* CTA Section */
.cta {
    background: var(--primary);
    padding: 5rem 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-break {
    display: block;
}

.cta-text {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* CTA Button */
.btn-cta {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--primary);
    padding: 1rem 3rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-cta:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Phone Number */
.cta-phone {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--white);
    opacity: 0.8;
}

.cta-phone a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.cta-phone a:hover {
    border-bottom-color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .cta {
        padding: 4rem 0;
    }

    .btn-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .cta {
        padding: 3rem 0;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-text {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-phone {
        font-size: 0.9rem;
    }
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--primary-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Brand Column */
.footer-brand {
    max-width: 300px;
}

.footer-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.footer-logo-main {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.footer-logo-sub {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--primary);
    letter-spacing: 1px;
}

.footer-description {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--white-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Footer Columns */
.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-family: var(--font-body);
    color: var(--white-dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: var(--primary);
    opacity: 1;
    padding-left: 5px;
}

/* Contact Column */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--white-dark);
    opacity: 0.9;
    line-height: 1.5;
}

.contact-icon {
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: var(--white-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--white-dark);
    opacity: 0.7;
}

.agency-credit {
    display: inline-block;
    margin-left: 0.5rem;
}

.agency-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.agency-link:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-brand {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-heading {
        margin-bottom: 1rem;
    }

    .footer-contact li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-logo-main {
        font-size: 2rem;
    }

    .footer-logo-sub{
        font-size: 0.9rem;
    }

    .footer-description {
        font-size: 1rem;
    }

    .copyright {
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .agency-credit {
        display: block;
        margin-left: 0;
        margin-top: 0.25rem;
    }
}