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

:root {
    --primary-blue: #102358;
    --dark-blue: #0e1e55;
    --light-blue: #102d5c;
    --accent-blue: #122b62;
    --white: #ffffff;
    --light-grey: #f9fafb;
    --lighter-grey: #f3f4f6;
    --medium-grey: #6b7280;
    --dark-grey: #374151;
    --text-grey: #4b5563;
    --border-grey: #d1d5db;
    --border-light: #e5e7eb;
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    --navy-blue: #1e3a8a;
    --light-navy: #1e40af;
}

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--text-grey);
    overflow-x: hidden;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-grey);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo h2 {
    color: var(--navy-blue);
    font-family: var(--font-primary);
    font-weight: 600;
    margin: 0;
}

.logo-img {
    height: 100px;
    width: auto;
    max-width: 350px;
    object-fit: contain;
    display: block;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--navy-blue);
}

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

.nav-menu a {
    color: var(--dark-grey);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
}

.nav-menu a:hover {
    color: var(--navy-blue);
    background: var(--light-grey);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--navy-blue);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background: var(--navy-blue);
    padding: 120px 0 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.03) 0%, transparent 50%);
    opacity: 1;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-content {
    max-width: 1000px;
    padding: 0 32px;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.025em;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.hero-subtitle {
    font-size: 1.375rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #d1d5db;
    line-height: 1.4;
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s forwards;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 3.5rem;
    color: #9ca3af;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--white);
    color: var(--navy-blue);
    box-shadow: 0 4px 14px rgba(30, 64, 175, 0.25);
}

.btn-primary:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 140px 0;
    background: var(--light-grey);
}

.section-title {
    text-align: center;
    font-family: var(--font-primary);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 5rem;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    text-align: left;
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
    border-color: var(--navy-blue);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--medium-grey) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.15);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
    stroke-width: 2;
}

.service-card h3 {
    font-family: var(--font-primary);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1.25rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--medium-grey);
    margin-bottom: 2rem;
    line-height: 1.65;
    font-size: 15px;
    font-weight: 400;
}

.learn-more {
    color: var(--navy-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.learn-more:hover {
    color: var(--light-navy);
    transform: translateX(4px);
}

/* Clients Section */
/* Infinite Client Slider */
.clients {
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}

.client-slider {
    margin-top: 4rem;
    height: 180px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Create a mask to fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.slider-track {
    display: flex;
    align-items: center;
    width: max-content;
    /* Auto-width based on content */
    animation: scroll 40s linear infinite;
    gap: 4rem;
    /* Space between logos */
    padding-left: 3rem;
    /* Adjust for gap loop */
}

/* Pause animation on hover for better UX */
.client-slider:hover .slider-track {
    animation-play-state: paused;
}

.slide {
    width: 220px;
    /* Fixed width for consistent scroll calc if needed, or just let flexible */
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Optional: Card style for each logo */
    background: var(--white);
    transition: all 0.3s ease;
}

.slide img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    /* Full color by default */
    filter: grayscale(0%);
    opacity: 1;
    transition: all 0.4s ease;
}

.slide:hover img {
    transform: scale(1.1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move exactly half the total width (since we duplicated the set) */
        /* To make this seamless with 'gap', we need to be careful.
           If using 'gap', 'translateX(-50%)' might be slightly off if not careful.
           
           Better approach for CSS-only seamless loop with gap: 
           Just ensure the duplicate set matches exactly.
        */
        transform: translateX(-50%);
    }
}

/* About Section */
.about {
    padding: 140px 0;
    background: var(--light-grey);
}

.about-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-logo-img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
}

.about h2 {
    font-family: var(--font-primary);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 2.5rem;
    text-align: left;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.about-vision {
    font-size: 1.25rem;
    color: var(--medium-grey);
    margin-bottom: 3rem;
    line-height: 1.7;
    text-align: left;
    font-weight: 400;
}

.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 5rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.value-item {
    text-align: center;
    background: var(--light-grey);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
}

.value-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
    background: var(--white);
}

.value-item h4 {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.value-item p {
    color: var(--medium-grey);
    line-height: 1.65;
    font-size: 15px;
    font-weight: 400;
}

/* Contact Page Enhancements */
.contact-page {
    padding: 120px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.contact-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--navy-blue) 0%, #1e40af 100%);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0% 100%);
    z-index: 0;
}

.contact-page .container {
    position: relative;
    z-index: 1;
}

.contact-header {
    text-align: center;
    color: var(--white);
    margin-bottom: 80px;
}

.contact-header h1,
.contact-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.contact-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.contact-glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

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

.form-group-custom {
    margin-bottom: 24px;
}

.form-group-custom label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.form-group-custom input,
.form-group-custom select,
.form-group-custom textarea {
    width: 100%;
    padding: 14px 18px;
    background: #f1f5f9;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 15px;
    color: #1e293b;
    transition: all 0.3s ease;
}

.form-group-custom input:focus,
.form-group-custom select:focus,
.form-group-custom textarea:focus {
    background: #ffffff;
    border-color: var(--navy-blue);
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
    outline: none;
}

.form-message {
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 15px;
    font-weight: 500;
}

.form-message.success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-message.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.btn-contact-submit {
    width: 100%;
    padding: 16px;
    background: var(--navy-blue);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-contact-submit:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.2);
}

.contact-cards-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--navy-blue);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: #eff6ff;
    color: var(--navy-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 28px;
    height: 28px;
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.info-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

.info-content a {
    color: var(--navy-blue);
    text-decoration: none;
    font-weight: 600;
}

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

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

    .contact-glass-card {
        padding: 30px 20px;
    }
}

/* Premium Footer Styles */
.footer {
    background: #0f172a;
    color: var(--white);
    padding: 100px 0 0;
    font-family: 'Inter', sans-serif;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
    gap: 60px;
    padding-bottom: 80px;
}

.footer-brand h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 12px;
    font-size: 15px;
}

.footer-contact-info {
    margin-top: 32px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #cbd5e1;
    font-size: 14px;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--accent-blue);
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: #f8fafc;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--navy-blue);
    border-radius: 2px;
}

.footer-branches-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.branch-mini-card h5 {
    color: #f1f5f9;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.branch-mini-card p {
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.5;
}

.footer-services-list {
    list-style: none;
}

.footer-services-list li {
    margin-bottom: 14px;
}

.footer-services-list a,
.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-services-list a:hover,
.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-services-list a::before {
    content: '→';
    font-size: 12px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-services-list a:hover::before {
    opacity: 1;
}

.footer-bottom {
    background: #020617;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #64748b;
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Updated Admin Button in Footer */
.admin-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.05);
    color: #f1f5f9;
    text-decoration: none;
    border-radius: 99px;
    margin-top: 40px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.admin-login-btn:hover {
    background: white;
    color: #0f172a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom-grid {
        flex-direction: column;
        text-align: center;
    }
}

/* Page Header */
.page-header {
    padding: 120px 0 80px;
    background: var(--navy-blue);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Detailed */
.about-detailed {
    padding: 100px 0;
    background: var(--white);
}

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

.about-text h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--medium-grey);
    margin-bottom: 2rem;
}

.values-detailed h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 2rem;
    text-align: center;
}

.value-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--light-grey);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--navy-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
    stroke-width: 2;
}

.value-card h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--medium-grey);
    line-height: 1.6;
}

/* Services Detail */
.services-detail {
    padding: 100px 0;
    background: var(--light-grey);
}

.service-detail {
    margin-bottom: 6rem;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    align-items: center;
    gap: 3rem;
    padding: 3rem;
}

.service-detail.reverse .service-content {
    grid-template-columns: 1fr 200px;
}

.service-detail.reverse .service-text {
    order: -1;
}

.service-icon-large {
    width: 120px;
    height: 120px;
    background: var(--navy-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.service-icon-large svg {
    width: 60px;
    height: 60px;
    color: var(--white);
    stroke-width: 2;
}

.service-text h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.service-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--medium-grey);
    margin-bottom: 1.5rem;
}

.service-text ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-text li {
    padding: 0.5rem 0;
    color: var(--medium-grey);
    position: relative;
    padding-left: 1.5rem;
}

.service-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--navy-blue);
    font-weight: bold;
}

/* Contact Page */
.contact-page {
    padding: 100px 0;
    background: var(--light-grey);
}

.contact-page .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-page .contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-page .contact-form h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 2rem;
}

/* Form Message Styles */
.form-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

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

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

.contact-page .contact-info {
    padding: 2rem 0;
}

.contact-page .contact-info h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 2rem;
}

.contact-page .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--navy-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
    stroke-width: 2;
}

.contact-page .contact-item h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
}

.contact-page .contact-item p {
    color: var(--medium-grey);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--light-grey);
}

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

.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-photo {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 2rem;
    text-align: center;
}

.team-info h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--navy-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-desc {
    color: var(--medium-grey);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

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

.team-social a:hover {
    background: var(--light-navy);
}

.team-social svg {
    width: 20px;
    height: 20px;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: var(--white);
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 10px 20px;
    border: 2px solid var(--navy-blue);
    background: transparent;
    color: var(--navy-blue);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--navy-blue);
    color: var(--white);
}

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

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: var(--white);
    font-size: 40px;
    cursor: pointer;
}

.lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    text-align: center;
}

/* Packages Section */
.packages {
    padding: 100px 0;
    background: var(--white);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: var(--light-grey);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-card.featured {
    background: var(--navy-blue);
    color: var(--white);
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    color: var(--navy-blue);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
}

.package-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
}

.package-card.featured .package-price {
    color: var(--white);
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.package-card.featured .package-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

/* Branch Timeline Section */
.branches-timeline {
    padding: 100px 0;
    background: var(--light-grey);
}

.branches-timeline .timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.branches-timeline .timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: var(--navy-blue);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.branches-timeline .timeline-item {
    padding: 20px 50px;
    position: relative;
    background: inherit;
    width: 50%;
    margin-bottom: 2rem;
}

.branches-timeline .timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -12px;
    background: var(--white);
    border: 4px solid var(--navy-blue);
    border-radius: 50%;
    top: 20px;
    z-index: 1;
}

.branches-timeline .timeline-item:nth-child(even) {
    left: 50%;
}

.branches-timeline .timeline-item:nth-child(even)::after {
    left: -12px;
}

.branches-timeline .timeline-content {
    padding: 25px 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    position: relative;
}

.branches-timeline .timeline-date {
    position: absolute;
    top: 20px;
    right: -120px;
    background: var(--navy-blue);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.branches-timeline .timeline-item:nth-child(even) .timeline-date {
    left: -120px;
    right: auto;
}

.branches-timeline .timeline-content h3 {
    font-family: var(--font-primary);
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.branch-subtitle {
    color: var(--light-navy);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.branches-timeline .timeline-content p {
    line-height: 1.7;
    color: var(--medium-grey);
}

/* Timeline Section */
.branches-achievements {
    padding: 100px 0;
    background: var(--light-grey);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: var(--navy-blue);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background: var(--white);
    border: 3px solid var(--navy-blue);
    border-radius: 50%;
    top: 15px;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

.timeline-content {
    padding: 20px 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-date {
    position: absolute;
    top: 15px;
    right: -80px;
    background: var(--navy-blue);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 15px;
    font-weight: 600;
}

.timeline-item:nth-child(even) .timeline-date {
    left: -80px;
}

.timeline-content h3 {
    font-family: var(--font-primary);
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
}

/* Floating Contact Buttons */
.floating-contacts {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.whatsapp-btn,
.call-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn {
    background: var(--navy-blue);
    color: var(--white);
}

.call-btn {
    background: var(--medium-grey);
    color: var(--white);
}

.whatsapp-btn:hover,
.call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.floating-contacts svg {
    width: 28px;
    height: 28px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.call-btn {
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(15, 23, 42, 0.7);
    }

    70% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 0 10px rgba(15, 23, 42, 0);
    }

    100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(15, 23, 42, 0);
    }
}

/* Goals Section */
.goals {
    padding: 140px 0;
    background: var(--light-grey);
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 5rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.goal-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 0.4s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.goal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--navy-blue);
}

.goal-number {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.goal-card h3 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.goal-card p {
    color: var(--medium-grey);
    line-height: 1.65;
    font-size: 15px;
    font-weight: 400;
}

/* Resources Section */
.resources-section {
    padding: 100px 0;
    background: var(--light-grey);
}

.resources-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.resource-category h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 2rem;
    text-align: center;
}

.resource-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.resource-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.resource-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--navy-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resource-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
    stroke-width: 2;
}

.resource-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.resource-card p {
    color: var(--medium-grey);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.resource-meta {
    margin-bottom: 1.5rem;
}

.resource-meta span {
    background: var(--light-grey);
    color: var(--medium-grey);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--navy-blue);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: var(--light-navy);
    transform: scale(1.05);
}

.download-btn svg {
    width: 18px;
    height: 18px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

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

    /* Hero Section Mobile */
    .hero {
        padding: 0 1rem;
        min-height: 100vh;
    }

    .hero-content {
        padding: 0 10px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 200px;
        text-align: center;
    }

    /* Services Section Mobile */
    .services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

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

    /* About Section Mobile */
    .about {
        padding: 60px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about h2 {
        font-size: 2rem;
        text-align: center;
    }

    .about-vision {
        font-size: 1.1rem;
        text-align: center;
    }

    .about-logo-img {
        max-height: 150px;
    }

    .values {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-item h4 {
        font-size: 1.2rem;
    }

    /* Goals Section Mobile */
    .goals {
        padding: 60px 0;
    }

    .goals-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .goal-card {
        padding: 1.5rem;
    }

    .goal-number {
        font-size: 2.5rem;
    }

    .goal-card h3 {
        font-size: 1.2rem;
    }

    /* Branch Timeline Mobile */
    .branches-timeline {
        padding: 60px 0;
    }

    .branches-timeline .timeline::after {
        left: 31px;
    }

    .branches-timeline .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
        margin-bottom: 1.5rem;
    }

    .branches-timeline .timeline-item::after {
        left: 21px;
    }

    .branches-timeline .timeline-item:nth-child(even) {
        left: 0;
    }

    .branches-timeline .timeline-item:nth-child(even)::after {
        left: 21px;
    }

    .branches-timeline .timeline-date {
        left: -80px !important;
        right: auto !important;
        font-size: 0.8rem;
        padding: 6px 12px;
        top: 15px;
    }

    .branches-timeline .timeline-content {
        padding: 20px;
    }

    .branches-timeline .timeline-content h3 {
        font-size: 1.2rem;
    }

    .branch-subtitle {
        font-size: 0.9rem;
    }

    /* Contact Section Mobile */
    .contact {
        padding: 60px 0;
    }

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

    .contact-form {
        padding: 1.5rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 3rem 0 1rem;
    }

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

    .footer-links {
        align-items: center;
    }

    .branch-info {
        margin-bottom: 1rem;
    }

    .footer-brand h3 {
        font-size: 1.3rem;
    }

    .footer-contact p {
        font-size: 0.85rem;
    }

    /* Section Titles Mobile */
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    /* Container Mobile */
    .container {
        padding: 0 15px;
    }

    /* Logo Mobile */
    .logo-img {
        height: 80px;
        max-width: 280px;
    }

    /* Floating Contacts Mobile */
    .floating-contacts {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-btn,
    .call-btn {
        width: 50px;
        height: 50px;
    }

    .floating-contacts svg {
        width: 24px;
        height: 24px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .service-card {
        padding: 1rem;
    }

    .goal-number {
        font-size: 2rem;
    }

    .branches-timeline .timeline-date {
        font-size: 0.7rem;
        padding: 4px 8px;
        left: -70px !important;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* =========================================
   MODERN REDESIGN STYLES (v2.0)
   ========================================= */

/* Font setup for modern headers */
.hero-title-modern,
.section-header-modern h2,
.why-text h2,
.goals-header h2 {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    letter-spacing: -0.03em;
}

/* --- Hero Section Modern --- */
.hero-modern {
    position: relative;
    padding-top: 160px;
    /* Navbar height + spacing */
    padding-bottom: 120px;
    background: radial-gradient(circle at 10% 20%, #1e3a8a 0%, #0f172a 90%);
    color: white;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(#ffffff 1px, transparent 1px), linear-gradient(90deg, #ffffff 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
    opacity: 0.03;
    pointer-events: none;
}

.hero-modern-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #93c5fd;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    animation: fadeInDown 0.8s ease-out;
}

.hero-title-modern {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-title-modern .text-gradient {
    background: linear-gradient(135deg, #60a5fa 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc-modern {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.btn-primary-modern {
    background: #3b82f6;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.5);
}

.btn-primary-modern:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(59, 130, 246, 0.6);
}

.btn-secondary-modern {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Trust Indicators */
.trust-indicators {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    background: rgba(15, 23, 42, 0.6);
    padding: 24px 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 4px;
}

.trust-label {
    font-size: 0.85rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* --- Services Modern --- */
.services-modern {
    padding: 100px 0;
    background: #f8fafc;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    color: #2563eb;
    background: #eff6ff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    display: inline-block;
}

.section-header-modern h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 16px;
    font-weight: 800;
}

.section-header-modern p {
    color: #64748b;
    font-size: 1.1rem;
}

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

.service-card-modern {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Accent top border */
.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #3b82f6;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.service-card-modern:hover::before {
    transform: scaleX(1);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #eff6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #2563eb;
}

.icon-box svg {
    width: 24px;
    height: 24px;
}

.service-card-modern h3 {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card-modern p {
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.6;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}

.link-arrow svg {
    width: 18px;
    height: 18px;
    margin-left: 6px;
    transition: transform 0.2s ease;
}

.service-card-modern:hover .link-arrow svg {
    transform: translateX(4px);
}

/* --- Why Us Modern --- */
.why-us-modern {
    padding: 100px 0;
    background: white;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-text h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 24px;
    font-weight: 800;
}

.feature-list {
    list-style: none;
    margin: 30px 0;
}

.feature-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: #dbeafe;
    color: #2563eb;
    border-radius: 50%;
    display: flex;
    /* Fix icon centering */
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check-icon svg {
    width: 14px;
    height: 14px;
    stroke-width: 3;
}

.why-visual {
    position: relative;
    background: #f8fafc;
    border-radius: 24px;
    padding: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-visual-img {
    max-width: 100%;
    opacity: 0.9;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.stat-card {
    position: absolute;
    background: white;
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.stat-1 {
    top: 40px;
    left: -20px;
}

.stat-2 {
    bottom: 40px;
    right: -20px;
    animation-delay: 2s;
}

.stat-card h3 {
    font-size: 1.5rem;
    color: #2563eb;
    font-weight: 800;
    margin: 0;
}

.stat-card p {
    margin: 0;
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 600;
}


/* --- Goals Section Modern --- */
.goals-modern {
    padding: 100px 0;
    background: #0f172a;
    color: white;
}

.goals-header {
    text-align: center;
    margin-bottom: 60px;
}

.goals-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.goals-header p {
    color: #94a3b8;
    font-size: 1.2rem;
}

.goals-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.goal-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.goal-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.goal-year {
    display: inline-block;
    color: #60a5fa;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.goal-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.goal-item p {
    color: #cbd5e1;
    line-height: 1.5;
}

/* --- Contact Section Modern --- */
.contact-section-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #172554 100%);
    color: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    background: rgba(255, 255, 255, 0.05);
    /* Outer container */
    border-radius: 32px;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-badge-light {
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    display: inline-block;
}

.contact-info-modern h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-info-modern p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-row .icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-row strong {
    display: block;
    font-size: 1.1rem;
}

.info-row small {
    display: block;
    color: #94a3b8;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 24px;
    color: #0f172a;
    /* Reset text color for white bg */
}

.modern-form h3 {
    margin-bottom: 24px;
    font-size: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #475569;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.2s;
    background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.btn-submit-modern {
    width: 100%;
    padding: 16px;
    background: #1e40af;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-submit-modern:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
}

.clients-section-modern {
    padding: 60px 0;
    background: #fff;
    border-bottom: 1px solid #f1f5f9;
}

.clients-label {
    text-align: center;
    margin-bottom: 30px;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}


/* --- Timeline Modern (Expansion Journey) - VERTICAL --- */
.timeline-modern {
    padding: 120px 0;
    background: #f8fafc;
}

.timeline-track {
    position: relative;
    max-width: 900px;
    margin: 80px auto 0;
    padding: 0 40px 0 80px;
}

/* Vertical line on the left */
.timeline-track::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 3px;
    background: #3b82f6;
    z-index: 0;
}

.timeline-card {
    position: relative;
    margin-bottom: 60px;
    padding-left: 60px;
}

.timeline-card:last-child {
    margin-bottom: 0;
}

/* Timeline dot on the left line */
.timeline-card::before {
    content: '';
    position: absolute;
    top: 24px;
    left: -28px;
    width: 24px;
    height: 24px;
    background: white;
    border: 5px solid #3b82f6;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-card:hover::before {
    background: #3b82f6;
    transform: scale(1.15);
    box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.2);
}

.timeline-year {
    display: inline-block;
    color: #475569;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.timeline-content {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.timeline-card:hover .timeline-content {
    transform: translateX(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: #3b82f6;
}

.timeline-content h3 {
    font-size: 1.25rem;
    color: #1e3a8a;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.3;
}

.timeline-subtitle {
    display: block;
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.4;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}


/* --- Form Validation Styles --- */
.form-group input.invalid,
.form-group textarea.invalid,
.form-group select.invalid {
    border-color: #ef4444 !important;
    background-color: #fef2f2 !important;
}

.form-group input.valid,
.form-group textarea.valid,
.form-group select.valid {
    border-color: #10b981 !important;
}

.error-message {
    display: none;
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 6px;
    font-weight: 500;
}

.required {
    color: #ef4444;
    margin-left: 2px;
}

.form-message.error {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
    color: #991b1b;
}

.form-message.success {
    background: #f0fdf4;
    border-left: 4px solid #10b981;
    color: #065f46;
}

.form-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}


/* Mobile Responsive Updates for Modern Design */
@media (max-width: 768px) {
    .hero-title-modern {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        width: 100%;
    }

    .trust-divider {
        width: 100%;
        height: 1px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .why-visual {
        order: -1;
        margin-bottom: 40px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .contact-form-container {
        padding: 24px;
    }

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

    .stat-card h3 {
        font-size: 1.2rem;
    }

    .stat-card {
        padding: 15px;
    }
}