:root {
    --primary: #051422;
    --primary-light: #0d2a45;
    --accent: #3fc1c9;
    --accent-dark: #364f6b;
    --highlight: #f5f5f5;
    --gold: #c5a059;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --bg-dark: #051422;
    --bg-card: rgba(255, 255, 255, 0.03);
    --glass: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.7;
    color: var(--text-main);
    background-color: var(--bg-dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(5, 20, 34, 0.85);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.02);
}

.logo svg {
    filter: drop-shadow(0 0 8px var(--accent));
}

.logo-text {
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
}

.logo-text span {
    color: var(--accent);
    font-weight: 400;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
    opacity: 0.8;
}

.nav-links li a:hover {
    opacity: 1;
    color: var(--accent);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links li a:hover::after {
    width: 100%;
}

.cta-button-small {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent) !important;
    padding: 12px 28px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: var(--transition);
}

.cta-button-small:hover {
    background: var(--accent);
    color: var(--primary) !important;
    box-shadow: 0 0 20px rgba(63, 193, 201, 0.4);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('hero-bg.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(5, 20, 34, 0.1), rgba(5, 20, 34, 0.8));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 30px;
    color: #fff;
}

.hero-content h1 span {
    color: var(--accent);
    display: block;
    margin-top: 10px;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 650px;
}

.hero-btns {
    display: flex;
    gap: 25px;
}

.cta-button {
    text-decoration: none;
    padding: 20px 45px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.main-cta {
    background: var(--accent);
    color: var(--primary);
}

.main-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(63, 193, 201, 0.3);
}

.secondary-cta {
    background: transparent;
    border: 1px solid var(--border);
    color: #fff;
}

.secondary-cta:hover {
    background: var(--glass);
    border-color: var(--accent);
}

/* Services */
.services-section {
    padding: 150px 0;
    position: relative;
}

.section-title {
    font-size: 4rem;
    margin-bottom: 100px;
    color: #fff;
    text-align: left;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    background: var(--glass);
    transform: translateY(-10px);
    border-color: var(--accent);
}

.service-img-wrapper {
    height: 300px;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) grayscale(0.2);
    transition: var(--transition);
}

.service-card:hover .service-img-wrapper img {
    filter: brightness(1) grayscale(0);
    transform: scale(1.05);
}

.service-card h3 {
    padding: 40px 40px 10px;
    font-size: 1.8rem;
    color: #fff;
}

.service-card p {
    padding: 0 40px 45px;
    color: var(--text-muted);
}

/* Trust Section */
.trust-section {
    padding-bottom: 150px;
}

.trust-banner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 80px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.trust-item {
    padding: 20px;
    border-right: 1px solid var(--border);
}

.trust-item:last-child {
    border-right: none;
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.trust-item h4 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.trust-item p {
    color: var(--text-muted);
}

/* About Section */
.about-section {
    padding: 150px 0;
    background: var(--primary-light);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(63, 193, 201, 0.05), transparent);
    transform: translate(-50%, -50%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
}

.about-content h2 {
    font-size: 3.5rem;
    margin-bottom: 40px;
    color: #fff;
}

.about-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.about-stats {
    display: flex;
    gap: 60px;
    margin-top: 60px;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
    filter: brightness(0.9);
}

/* Contact Banner */
.contact-banner {
    padding: 150px 0;
    background: linear-gradient(to bottom, rgba(5, 20, 34, 0.95), rgba(5, 20, 34, 0.8)), url('https://images.unsplash.com/photo-1518005020951-ecc8a96a4a1c?auto=format&fit=crop&w=1920&q=80') center/cover;
    text-align: center;
}

.contact-banner h2 {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 30px;
}

.contact-banner p {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 60px;
}

.phone-link {
    display: block;
    font-size: 5rem;
    font-weight: 800;
    color: var(--accent);
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    transition: var(--transition);
}

.phone-link:hover {
    color: #fff;
    transform: scale(1.05);
    text-shadow: 0 0 30px rgba(63, 193, 201, 0.5);
}

.address {
    margin-top: 40px;
    font-size: 1.2rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

/* Footer */
footer {
    padding: 80px 0;
    border-top: 1px solid var(--border);
    background: var(--bg-dark);
}

.footer-logo {
    margin-bottom: 30px;
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition);
}

.scroll-reveal.reveal {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 4rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .container {
        padding: 0 30px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .trust-banner {
        grid-template-columns: 1fr;
    }

    .trust-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .trust-item:last-child {
        border-bottom: none;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .phone-link {
        font-size: 3.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}