/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #1a2744;
    --navy-light: #243352;
    --blue: #2c6fbb;
    --blue-light: #3a8fd4;
    --gold: #c8a55a;
    --gold-light: #d4b76e;
    --gray-50: #f8f9fa;
    --gray-100: #f0f2f5;
    --gray-200: #e2e6eb;
    --gray-400: #9ca3af;
    --gray-600: #6b7280;
    --gray-800: #374151;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(26, 39, 68, 0.08);
    --shadow-lg: 0 12px 40px rgba(26, 39, 68, 0.12);
    --radius: 8px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    line-height: 1.2;
    color: var(--navy);
}

h1 { font-size: 3rem; font-weight: 700; }
h2 { font-size: 2.25rem; font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }

.section-subtitle {
    color: var(--gray-600);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0.75rem auto 0;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 165, 90, 0.3);
}

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

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

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

.btn-blue:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(44, 111, 187, 0.3);
}

/* ===== Header / Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 39, 68, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    max-width: 1400px;
    margin-left: max(12px, calc((100vw - 1400px) / 4));
    margin-right: auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
}

.logo-img {
    height: 110px;
    width: auto;
    border-radius: 0;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo-img {
    height: 130px;
}

.header-location {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

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

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

.nav-cta {
    padding: 10px 24px !important;
    font-size: 0.9rem !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--navy);
    overflow: hidden;
}

/* Brightened background image layer */
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(1.15) saturate(1.1);
    z-index: 0;
}

/* Dark overlay on top of the banner image for text readability */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(26, 39, 68, 0.85) 0%, rgba(26, 39, 68, 0.7) 35%, rgba(36, 51, 82, 0.35) 60%, rgba(44, 111, 187, 0.1) 85%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(200, 165, 90, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 90px;
    max-width: 800px;
    margin-left: max(24px, calc((100vw - 1400px) / 4 + 24px));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 165, 90, 0.15);
    border: 1px solid rgba(200, 165, 90, 0.3);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 span {
    color: var(--gold);
}

.hero-text {
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat h4 {
    color: var(--gold);
    font-size: 2rem;
    font-weight: 700;
}

.hero-stat p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-top: 4px;
}

.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-image-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to top, transparent, black 100px), linear-gradient(to bottom, transparent, black 100px), linear-gradient(to left, transparent, black 100px), linear-gradient(to right, transparent, black 200px);
    mask-image: linear-gradient(to top, transparent, black 100px), linear-gradient(to bottom, transparent, black 100px), linear-gradient(to left, transparent, black 100px), linear-gradient(to right, transparent, black 200px);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
}

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

/* ===== Services Section ===== */
.services {
    padding: 0 0 120px;
    background: var(--gray-50);
    position: relative;
}

.services-banner {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    margin-bottom: 80px;
}

.services-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
}

.services-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--gray-50) 0%, transparent 15%, transparent 70%, var(--gray-50) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    color: var(--blue);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px 32px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1px solid var(--gray-200);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.5rem;
}

.service-card h3 {
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--blue);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 20px;
    transition: gap var(--transition);
}

.service-link:hover {
    gap: 10px;
}

/* ===== About / Why Us Section ===== */
.about {
    padding: 120px 0;
}

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

.about-image-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-image {
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.about-photo {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.about-overlay {
    display: none;
}

.about-stats-float {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.about-image-stat {
    background: var(--navy);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
}

.about-image-stat h4 {
    color: var(--gold);
    font-size: 1.4rem;
}

.about-image-stat p {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    margin-top: 4px;
}

.about-content .section-label {
    text-align: left;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content > p {
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--gray-100);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.about-feature h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.about-feature p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* ===== Testimonials ===== */
.testimonials {
    padding: 120px 0;
    background: var(--navy);
}

.testimonials .section-label {
    color: var(--gold);
}

.testimonials h2 {
    color: var(--white);
}

.testimonials .section-subtitle {
    color: rgba(255,255,255,0.6);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 36px;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card blockquote {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-author h4 {
    color: var(--white);
    font-size: 0.95rem;
}

.testimonial-author p {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
}

/* ===== CTA Section ===== */
.cta {
    padding: 100px 0;
    background-color: var(--blue);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 39, 68, 0.65) 0%, rgba(44, 111, 187, 0.6) 100%);
    pointer-events: none;
}

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

.cta h2 {
    color: var(--white);
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.3);
}

.cta p {
    color: #ffffff;
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 36px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.5);
}

.cta .btn {
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Contact Section ===== */
.contact {
    padding: 120px 0;
}

.contact .container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--gray-600);
    margin-bottom: 36px;
    line-height: 1.7;
}

.contact-accent-image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: var(--shadow-lg);
}

.contact-accent-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

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

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--gray-100);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-item h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.contact-form {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--gray-200);
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--gray-800);
    background: var(--white);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(44, 111, 187, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== Footer ===== */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer ul li a:hover {
    color: var(--white);
}

.footer-newsletter p {
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.05);
    color: var(--white);
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--gold);
    border: none;
    border-radius: var(--radius);
    color: var(--navy);
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition);
}

.newsletter-form button:hover {
    background: var(--gold-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.85rem;
}

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

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    .hero h1 { font-size: 2.75rem; }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    .hero h1 { font-size: 2.25rem; }

    .header .container {
        height: 70px;
        margin-left: auto;
    }

    .logo-img {
        height: 60px;
    }

    .services {
        padding-bottom: 64px;
    }

    .services-banner {
        height: 240px;
        margin-bottom: 48px;
    }

    .about {
        padding: 64px 0;
    }

    .about-stats-float {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials {
        padding: 64px 0;
    }

    .cta {
        padding: 64px 0;
    }

    .contact {
        padding: 64px 0;
    }

    .contact-form {
        padding: 24px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--navy);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .header-location {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero::before {
        background: rgba(26, 39, 68, 0.82);
    }

    .hero .container {
        text-align: center;
        margin-left: auto;
        max-width: 100%;
        padding-top: 0;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
        font-size: 1.05rem;
        color: rgba(255,255,255,0.95);
    }

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

    .hero-stats {
        justify-content: center;
        gap: 24px;
        flex-wrap: wrap;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .about .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-content .section-label {
        text-align: center;
    }

    .about-content h2,
    .about-content > p {
        text-align: center;
    }

    .contact .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .footer {
        padding-top: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ===== Small phones ===== */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    h2 { font-size: 1.5rem; }
    .hero h1 { font-size: 1.75rem; }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

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

    .hero-stats {
        gap: 16px;
    }

    .hero-stat h4 {
        font-size: 1.5rem;
    }

    .hero-stat p {
        font-size: 0.8rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 28px 24px;
    }

    .about-stats-float {
        gap: 10px;
    }

    .about-image-stat {
        padding: 14px 10px;
    }

    .about-image-stat h4 {
        font-size: 1.15rem;
    }

    .about-image-stat p {
        font-size: 0.75rem;
    }

    .testimonial-card {
        padding: 24px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
        text-align: center;
    }
}
