/* CSS Variables */
:root {
    --navy: #001640;
    --navy-dark: #141d32;
    --navy-light: #243454;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gold: #c9a962;
    --red-hover: #b72b35;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: Georgia, 'Playfair Display', serif;
    --font-heading: 'League Spartan', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-serif);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    font-weight: 400;
}

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

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 500;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--gray-100);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-family: var(--font-serif);
    font-weight: 400;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: var(--navy-light);
    border-color: var(--navy-light);
}

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

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--navy);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #FFFFFF;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 40px;
    width: auto;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list a {
    color: var(--navy);
    font-size: 14px;
    font-family: var(--font-serif);
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: var(--red-hover);
}

.nav-highlight {
    background: rgba(0, 22, 64, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background-color: var(--navy);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    padding-top: 60px;
}

.hero-content {
    background-color: #001640;
    display: flex;
    align-items: center;
    padding: 4rem;
}

.hero-text {
    max-width: 500px;
}

.hero-text h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-size: 51px;
    font-weight: 500;
    line-height: 1.1;
}

.hero-text p {
    color: var(--gray-300);
    font-size: 22px;
    font-family: var(--font-serif);
    margin-bottom: 2rem;
    line-height: 1.5;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
    font-size: 17px;
    font-family: var(--font-serif);
    font-weight: 400;
    padding: 9px 12px 11px 26px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-hero:hover {
    background-color: var(--red-hover);
}

.btn-hero .arrow-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #b72b35;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.btn-hero .arrow-circle svg {
    width: 14px;
    height: 14px;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

.btn-hero:hover .arrow-circle svg {
    transform: rotate(0deg);
}

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

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

/* Portfolio Section */
.portfolio {
    padding: 6rem 0;
    background-color: #FAFAFA;
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.portfolio-intro h2 {
    color: var(--navy);
}

.portfolio-intro p {
    max-width: 400px;
    color: var(--gray-600);
}

/* Trust Badges Section */
.trust-badges-section {
    margin-bottom: 3rem;
}

.trust-badges-section p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.badges-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 52px;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.badges-track {
    display: flex;
    gap: 2rem;
    align-items: center;
    height: 52px;
    animation: marquee 20s linear infinite;
    width: max-content;
}

.badges-track .badge {
    flex-shrink: 0;
    height: 52px;
    display: flex;
    align-items: center;
}

.badges-track .badge img {
    height: 100%;
    max-height: 52px;
    width: auto;
    object-fit: contain;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.portfolio-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--white);
}

.portfolio-caption h3 {
    font-size: 1rem;
    font-family: var(--font-heading);
    font-weight: 500;
}


/* Features Section */
.features {
    padding: 5rem 0;
    background-color: #FFFFFF;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-item {
    text-align: left;
    padding: 1rem;
}

.feature-icon {
    margin-bottom: 1rem;
}

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

.feature-item h3 {
    font-size: 20px;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.75rem;
    text-align: left;
}

.feature-item p {
    font-size: 14px;
    font-family: var(--font-serif);
    color: var(--gray-600);
    line-height: 1.6;
    text-align: left;
}

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

.about h2 {
    color: var(--navy);
    text-align: center;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    color: var(--gray-600);
    line-height: 1.8;
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

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

.services .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

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

.services-intro {
    max-width: 700px;
    color: var(--gray-300);
    margin-bottom: 3rem;
}

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

.service-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.service-item h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.service-item p {
    font-family: var(--font-serif);
    color: var(--gray-400);
    font-size: 0.9375rem;
}

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

.testimonials .section-tag {
    display: block;
    text-align: center;
}

.testimonials h2 {
    text-align: center;
    color: var(--navy);
}

.testimonials-intro {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-family: var(--font-serif);
    color: var(--gray-700);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author strong {
    font-family: var(--font-heading);
    color: var(--navy);
    font-size: 0.9375rem;
    font-weight: 500;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background-color: var(--gray-50);
}

.faq-header {
    margin-bottom: 3rem;
}

.faq-header h2 {
    color: var(--navy);
}

.faq-header p {
    color: var(--gray-600);
}

.faq-list {
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--navy);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gray-400);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.25rem;
}

.faq-answer p {
    font-family: var(--font-serif);
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: var(--navy);
    color: var(--white);
}

.contact .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

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

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

.contact-info p {
    color: var(--gray-300);
    margin-bottom: 1rem;
}

.contact-details {
    margin: 2rem 0;
}

.contact-details p {
    color: var(--white);
}

.follow-label {
    font-weight: 500;
    color: var(--white) !important;
    margin-bottom: 0.75rem !important;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--white);
    color: var(--navy);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.875rem;
    font-family: var(--font-serif);
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: var(--gray-300);
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-serif);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

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

.contact-form .btn {
    margin-top: 1rem;
}

/* Footer */
.footer {
    background-color: var(--navy-dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.footer-emblem img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    font-size: 0.875rem;
    font-family: var(--font-serif);
    color: var(--gray-400);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    font-family: var(--font-serif);
    color: var(--gray-400);
}

.credit {
    color: var(--gray-500);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 6rem 2rem 4rem;
    }

    .hero-image {
        height: 400px;
    }

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

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

@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #FFFFFF;
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

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

    .nav-list li {
        width: 100%;
    }

    .nav-list a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(0, 22, 64, 0.1);
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

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

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

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

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

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .portfolio-header {
        flex-direction: column;
    }

    .about-gallery {
        grid-template-columns: 1fr;
    }
}
