/* CSS Reset & Variables */
:root {
    --primary-color: #0f172a;
    /* Deep Navy */
    --accent-color: #c9a227;
    /* Muted Gold */
    --accent-hover: #b08d1f;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-serif);
    font-weight: 700;
}

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography & Utilities */
h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

p.section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.line {
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 1.5rem auto;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
}

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

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    margin-left: 1rem;
}

.btn-secondary:hover {
    background-color: #fff;
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    transition: var(--transition);
}

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

.logo img {
    height: 50px;
    /* Adjust based on actual logo ratio */
    width: auto;
}

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

.nav-links li a {
    font-weight: 500;
    color: var(--primary-color);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: var(--accent-color);
}

.nav-links li a.btn {
    padding: 0.8rem 2rem;
    /* Ensure padding is preserved */
    color: #fff;
    /* Force white text */
}

.nav-links li a.btn:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

/* Hero Section */
#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('hero-bg.png') no-repeat center center/cover;
    text-align: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    /* Deep Navy overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.subtitle {
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

#hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    color: #fff;
    /* White text on dark bg */
    margin-bottom: 1.5rem;
}

#hero p {
    font-size: 1.2rem;
    color: #cbd5e1;
    /* Light grey text */
    margin-bottom: 2.5rem;
}

#hero .btn-primary:hover {
    background-color: #fff;
    color: var(--primary-color);
    border-color: #fff;
}

/* About Section */
#about {
    padding: 6rem 0;
    background-color: var(--bg-white);
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Services Section */
#services {
    padding: 6rem 0;
    background-color: var(--bg-light);
    text-align: center;
}

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

.service-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: left;
    border-top: 4px solid transparent;
}

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

.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Clients / Who We Work With */
#clients {
    padding: 6rem 0;
    background: var(--bg-white);
    text-align: center;
}

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

.client-card {
    background: #fff;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.client-card:hover {
    border-color: var(--accent-color);
}

.client-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
}

.client-info h3 {
    align-items: center;
}

/* Why Us Section */
#why-us {
    padding: 6rem 0;
    background: var(--primary-color);
    color: #fff;
    overflow: hidden;
}

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

.content-side h2 {
    color: #fff;
    text-align: left;
}

.intro-p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.features-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.check {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 2px;
}

.features-list strong {
    display: block;
    margin-bottom: 0.3rem;
    color: #fff;
    font-family: var(--font-serif);
    font-size: 1.1rem;
}

.features-list p {
    color: #94a3b8;
    font-size: 0.95rem;
}

.image-side {
    position: relative;
    height: 100%;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.abstract-shape {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.2) 0%, rgba(15, 23, 42, 0) 70%);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-large img {
    max-width: 250px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

/* Contact Section */
#contact {
    padding: 6rem 0;
    background: #f1f5f9;
    text-align: center;
}

.contact-box {
    background: #fff;
    padding: 4rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.contact-box h2 {
    margin-bottom: 1rem;
}

.contact-box p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.2rem;
}

.small-contact {
    margin-top: 1.5rem !important;
    font-size: 0.9rem !important;
}

/* Footer */
footer {
    padding: 3rem 0;
    background: var(--bg-white);
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-legal {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.footer-legal a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Responsive */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 2.5rem;
    }

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

    .nav-links {
        display: none;
        /* Add JS toggle for mobile */
    }

    .hamburger {
        display: block;
    }

    .image-side {
        display: none;
    }
}

/* Image Styles */
.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-wrapper:hover .feature-image {
    transform: scale(1.05);
}

/* Adjust Shadow */
:root {
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}