@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --clr-white: #f1f4f6f5;
    --clr-skyBlue: #3a85ef;
    --clr-lightBlue: #1a60c2;
    --clr-gray: #888888;
    --clr-softDarkBlue: #1c2a3d;
    --clr-mediumDarkBlue: #162232;
    --clr-hardDarkBlue: #101a26;
    --header-bg: rgba(16, 26, 38, 0.95);
    --header-shadow: 0 4px 30px rgba(255, 255, 255, 0.05);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --card-border: 1px solid rgba(255, 255, 255, 0.05);
    --step-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    --step-shadow-hover: 0 15px 30px rgba(0, 210, 255, 0.2);
    --test-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --footer-border: 1px solid rgba(255, 255, 255, 0.1);
    --transition: all 0.3s ease;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.5;
    background-color: var(--clr-hardDarkBlue);
    color: var(--clr-white);
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
}

/* LAYOUT */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--clr-white);
    position: relative;
    margin-bottom: 0;
}

/* .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--clr-skyBlue);
    margin: 15px auto 0;
    border-radius: 2px;
} */

.section-subtitle {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 3rem;
    color: var(--clr-white);
    position: relative;
}

.section-subtitle::after {
    content: '';
    display: block;
    width: 150px;
    height: 4px;
    background: var(--clr-skyBlue);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* NAVBAR */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    /* background-color: var(--clr-hardDarkBlue); */
    background-image: transparent;
    transition: all 0.4s ease;
}

.header.scrolled {
    background-color: var(--header-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--header-shadow);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

/* .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--clr-white);
    letter-spacing: -0.5px;
} */

.nav img {
    width: 100%;
    min-width: 210px;
    height: 100px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--clr-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-skyBlue);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--clr-skyBlue);
}

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

/* NAV DROPDOWN */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    margin-left: 4px;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--clr-softDarkBlue);
    border: var(--card-border);
    border-radius: 12px;
    padding: 10px 0;
    min-width: 220px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    /* transform: translateX(-50%) translateY(0); */
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 24px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a:hover {
    background: rgba(58, 133, 239, 0.15);
    color: var(--clr-skyBlue);
    padding-left: 28px;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.5); */
    z-index: 1;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    opacity: 0.5;
    z-index: 0;
}

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

.hero-slider .slide.active {
    transform: translateX(0);
    opacity: 1;
    transition: transform 2.5s ease-in-out, opacity 1s ease-in-out 2s;
}

.hero-slider .slide.exit {
    transform: translateX(-100%);
    opacity: 0.5;
    transition: transform 2.5s ease-in-out, opacity 1s ease-in-out;
}

.hero-content {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    z-index: 2;
    text-align: left;
    color: var(--clr-white);
    margin: 0;
    position: relative;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 20px;
    border: var(--card-border);
    background: rgba(128, 128, 128, 0.1);
    font-size: 0.85rem;
    color: var(--clr-white);
    margin-top: 25px;
    backdrop-filter: blur(4px);
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #00d2ff;
    border-radius: 50%;
    box-shadow: 0 0 8px #00d2ff;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

@media(max-width: 991px) {
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-content {
        padding: 40px 20px;
        margin: 0 20px;
    }
}

.hero h2 {
    font-size: 4rem;
    line-height: 1.1;
    color: var(--clr-white);
    margin-bottom: 25px;
    font-weight: 700;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.3rem;
    color: var(--clr-white);
    margin-bottom: 35px;
    line-height: 1.6;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* BUTTON */
.btn,
.btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    background: linear-gradient(135deg, var(--clr-skyBlue), var(--clr-lightBlue));
    color: var(--clr-white);
    box-shadow: 0 10px 20px rgba(64, 121, 140, 0.3);
}

.btn:hover,
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(64, 121, 140, 0.4);
    color: var(--clr-white);
}

/* GRID SYSTEM */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* ABOUT */
.about {
    background-color: var(--clr-hardDarkBlue);
}

.about-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.about-label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--clr-white);
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--clr-white);
    text-align: right;
}

.about-split-office {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-split-consultant {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: start;
}

/* Photo Card */
.about-photo-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.about-photo-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: top;
    display: block;
}

.about-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 60%, transparent);
    color: var(--clr-white);
}

.about-photo-tagline {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}

.about-photo-name {
    font-size: 0.85rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

/* Info Card */
.about-info-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--clr-softDarkBlue);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    border: var(--card-border);
    overflow: hidden;
}

.about-bio {
    padding: 30px 30px 10px;
}

.about-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 12px;
}

.about-bio p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    /* margin-bottom: 14px; */
}

.about-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--clr-skyBlue);
    color: var(--clr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.85;
}

.about-why {
    padding: 25px 35px 30px;
    border-top: 1px solid rgba(128, 128, 128, 0.15);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-why h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 10px;
}

.about-why p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

/* About Tabs */
.about-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0;
}

.about-tab-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 20px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border-radius: 15px 15px 0 0;
    font-family: inherit;
}

.about-tab-btn i {
    font-size: 1.2rem;
}

.about-tab-btn:hover {
    color: var(--clr-white);
    background: rgba(255, 255, 255, 0.05);
}

.about-tab-btn.active {
    color: var(--clr-white);
    background: var(--clr-lightBlue);
    border-bottom: 3px solid var(--clr-skyBlue);
}

.about-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.about-tab-content.active {
    display: block;
}

/* Consultant Profile Extras */
.consultant-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--clr-skyBlue);
    display: block;
    margin-bottom: 4px;
}

.consultant-credentials {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.credential-item i {
    color: var(--clr-skyBlue);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .about-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-title {
        text-align: left;
        font-size: 2rem;
    }

    .about-split-office,
    .about-split-consultant {
        grid-template-columns: 1fr;
    }

    .about-photo-card img {
        height: 450px;
    }

    .about-tabs {
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .about-tab-btn {
        white-space: nowrap;
        padding: 15px 20px;
    }
}

/* CARDS */
.card {
    background: var(--clr-softDarkBlue);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: var(--card-border);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.1), transparent);
    z-index: -1;
    transition: var(--transition);
    opacity: 0.5;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(64, 121, 140, 0.1);
}

.card:hover::before {
    height: 100%;
}

.card h3 {
    font-size: 1.5rem;
    color: var(--clr-white);
    margin-bottom: 15px;
}

.card p {
    color: var(--clr-white);
    line-height: 1.6;
}

/* MODERN SERVICES */
.services-modern {
    background-color: var(--clr-mediumDarkBlue);
    color: var(--clr-white);
    padding: 100px 0;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.modern-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--clr-white);
}

.modern-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.services-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0;
}

.service-student-buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-top: 10px;
}

.tab-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 20px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border-radius: 15px 15px 0 0;
}

.tab-btn i {
    font-size: 1.2rem;
}

.tab-btn:hover {
    color: var(--clr-white);
    background: rgba(255, 255, 255, 0.05);
}

.tab-btn.active {
    color: var(--clr-white);
    background: var(--clr-lightBlue);
    border-bottom: 3px solid var(--clr-skyBlue);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.service-detail {
    background: var(--clr-hardDarkBlue);
    border-radius: 30px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr auto 1.2fr;
    gap: 60px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-left {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.detail-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--clr-skyBlue);
}

.detail-left h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--clr-white);
}

.detail-left p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    text-transform: none;
}

.btn-chat {
    background-color: var(--clr-lightBlue);
    color: var(--clr-white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    transition: var(--transition);
}

.btn-chat:hover {
    background-color: var(--clr-skyBlue);
    transform: translateY(-3px);
}

.detail-divider {
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.detail-right {
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.fade-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: block;
}

.fade-img.active {
    opacity: 1;
}

.image-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(58, 133, 239, 0.1), transparent 40%),
        linear-gradient(to bottom, transparent 60%, rgba(16, 26, 38, 0.6));
    pointer-events: none;
    z-index: 2;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .service-detail {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .detail-divider {
        display: none;
    }

    .modern-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .services-tabs {
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .tab-btn {
        white-space: nowrap;
        padding: 15px 20px;
    }
}

.btn-outline {
    display: inline-block;
    padding: 10px 25px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--clr-white);
    border: 2px solid var(--clr-skyBlue);
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    align-self: center;
}

.btn-outline:hover {
    background: var(--clr-skyBlue);
    color: var(--clr-white);
}

/* PROCESS ACCORDION */
.process-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 20px;
}

.process-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 450px;
}

.process-steps {
    display: flex;
    flex-direction: column;
}

.process-step {
    border-top: 1px solid rgba(128, 128, 128, 0.2);
}

.process-step:last-of-type {
    border-bottom: 1px solid rgba(128, 128, 128, 0.2);
}

.process-step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    cursor: pointer;
    transition: var(--transition);
    gap: 15px;
}

.process-step-header:hover .step-title {
    color: var(--clr-skyBlue);
}

.step-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--clr-white);
    transition: var(--transition);
}

.step-icon {
    color: var(--clr-gray);
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.process-step-body {
    display: none;
    padding-bottom: 20px;
}

.process-step.active .process-step-body {
    display: block;
}

.process-step.active .step-title {
    color: var(--clr-skyBlue);
}

.process-step.active .step-icon {
    color: var(--clr-skyBlue);
}

.process-step-body p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--clr-gray);
}

.process-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.process-time {
    font-size: 0.9rem;
    color: var(--clr-gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 768px) {
    .process-split {
        grid-template-columns: 1fr;
    }

    .process-image {
        max-height: 280px;
    }

    .process-image img {
        min-height: 280px;
    }
}

/* REVIEWS GRID */
.testimonials-section {
    background: url('https://images.unsplash.com/photo-1688235142578-c4e1523c6347?q=80&w=1632&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.65);
    padding: 100px 0;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.5); */
    z-index: 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 20px 0;
}

.review-card {
    /* background: var(--clr-softDarkBlue); */
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    border: var(--card-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 20px;
}

.review-stars {
    font-size: 1.2rem;
    color: #f5a623;
    letter-spacing: 2px;
}

.google-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--clr-white);
    flex-grow: 1;
}

.review-author {
    padding-top: 10px;
    border-top: 1px solid rgba(128, 128, 128, 0.15);
}

.review-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--clr-white);
}

@media (max-width: 991px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA */
.cta {
    background: linear-gradient(135deg, var(--clr-softDarkBlue), var(--clr-mediumDarkBlue));
    padding: 80px 0;
    text-align: center;
    color: var(--clr-white);
    border-radius: 40px;
    margin: 40px 5%;
    position: relative;
    overflow: hidden;
    border: var(--card-border);
}

.cta .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.cta .btn-primary {
    background: var(--clr-hardDarkBlue);
    color: var(--clr-skyBlue);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta .btn-primary:hover {
    background: var(--clr-softDarkBlue);
    color: var(--clr-white);
}

/* CONTACT FORM */
/* CONTACT SPLIT */
.contact-split-section {
    padding: 80px 5%;
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: var(--card-border);
    max-width: 1200px;
    margin: 0 auto;
    min-height: 680px;
}

.contact-image {
    position: relative;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

}

.contact-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    color: var(--clr-white);
}

.contact-image-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-image-overlay p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.contact-form-side {
    background: var(--clr-softDarkBlue);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--clr-gray);
    margin-bottom: 8px;
}

.contact-form-side h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr-white);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--clr-hardDarkBlue);
    color: var(--clr-white);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    box-sizing: border-box;
}

.form-group input.invalid,
.form-group textarea.invalid {
    border-color: #f87171;
    box-shadow: 0 0 0 2px rgba(248, 113, 113, 0.1);
}

.error-msg {
    color: #f87171;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 2px;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.error-msg.visible {
    height: 16px;
    opacity: 1;
    margin-bottom: 4px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--clr-gray);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-skyBlue);
    box-shadow: 0 0 0 3px rgba(58, 133, 239, 0.15);
}

.form-submit {
    margin-top: 5px;
    width: 100%;
    justify-content: center;
    letter-spacing: 1.5px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .contact-split {
        grid-template-columns: 1fr;
    }

    .contact-image {
        max-height: 250px;
    }

    .contact-form-side {
        padding: 35px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* FOOTER */
.footer {
    background: var(--clr-hardDarkBlue);
    color: var(--clr-white);
    padding: 60px 0 20px;
    margin-top: 20px;
    border-top: var(--footer-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    max-width: 200px;
    max-height: 150px;
    width: auto;
    height: auto;
    margin-bottom: 15px;
}

.footer-info p {
    color: var(--clr-white);
    line-height: 1.6;
    max-width: 450px;
}

.footer-social {
    margin-top: 25px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--clr-white);
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 200px;
    height: 3px;
    background: var(--clr-skyBlue);
    border-radius: 2px;
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact li i {
    color: var(--clr-skyBlue);
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--clr-lightBlue);
    color: var(--clr-white);
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--clr-skyBlue);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ALT BACKGROUND */
.alt-bg {
    background: var(--clr-hardDarkBlue);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--clr-white);
    transition: var(--transition);
    border-radius: 3px;
}

/* Toggle animation */
.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: none;
        height: 100vh;
        background-color: var(--clr-hardDarkBlue);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        box-shadow: none;
        z-index: 999;
        margin: 0;
        padding: 0;
    }

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

    /* Mobile dropdown - Accordion Style */
    .nav-dropdown {
        width: 100%;
        text-align: center;
    }

    .dropdown-toggle {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 15px 0;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        background: transparent;
        box-shadow: none;
        border: none;
        border-radius: 0;
        min-width: unset;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        padding: 0;
        margin: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
        backdrop-filter: none;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .nav-dropdown.open .dropdown-menu {
        max-height: 500px;
        opacity: 1;
        visibility: visible;
        padding: 10px 0 20px;
    }

    .nav-dropdown.open .dropdown-arrow {
        transform: rotate(180deg);
    }

    .dropdown-menu li {
        width: 100%;
    }

    .dropdown-menu li a {
        padding: 12px 0;
        font-size: 1.1rem;
        /* Slightly smaller than main links but still readable */
        color: rgba(255, 255, 255, 0.7);
        text-align: center;
        width: 100%;
        display: block;
        transition: color 0.2s ease;
    }

    .dropdown-menu li a:hover {
        color: var(--clr-skyBlue);
        background: transparent;
        padding-left: 0;
        /* Reset desktop padding */
    }

    /* Add a subtle indicator that these are sub-items
    .dropdown-menu li a::before {
        content: '-';
        margin-right: 8px;
        color: var(--clr-skyBlue);
        opacity: 0.6;
    } */

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-actions {
        width: 100%;
        justify-content: center;
        gap: 10px;
    }

    .hero-actions .btn {
        padding: 10px 22px;
        font-size: 0.95rem;
    }

    .section {
        padding: 60px 0;
    }

    .cta {
        border-radius: 0;
        margin: 0;
        padding: 60px 0;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact li {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }
}