/* ========================================
   SEATTLE WEDDING FILMS - LUXURY STYLES
   Emerald Green Premium Theme
   ======================================== */

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

:root {
    /* Premium Color Palette */
    --black: #000000;
    --white: #FFFFFF;
    --emerald: #10b981;
    --emerald-glow: #34d399;
    --emerald-dark: #059669;
    --emerald-ultra-dark: #064e3b;
    --gray-light: #d1d5db;
    --gray-medium: #6b7280;
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Shadows */
    --shadow-glow: 0 0 20px rgba(16, 185, 129, 0.4);
    --shadow-glow-lg: 0 0 40px rgba(16, 185, 129, 0.6), 0 0 80px rgba(16, 185, 129, 0.3);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.5);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

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

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

/* ========================================
   NAVIGATION
   ======================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 30px 0;
    transition: var(--transition);
    background: transparent;
}

.nav.scrolled {
    background: var(--black);
    backdrop-filter: blur(20px);
    padding: 20px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8), 0 0 40px rgba(16, 185, 129, 0.1);
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

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

.logo-image {
    height: 50px;
    width: auto;
    transition: var(--transition-fast);
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.3));
}

.nav.scrolled .logo-image {
    height: 40px;
}

.nav-menu {
    display: flex;
    gap: 50px;
    list-style: none;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-link {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    color: var(--white);
    opacity: 0.9;
    transition: var(--transition-fast);
    display: block;
    padding: 10px 0;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    color: var(--emerald-glow);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--emerald);
    transition: width 0.4s ease;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle::after {
    content: '▾';
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 4px;
    padding: 15px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.2);
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 20px;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(16, 185, 129, 0.1);
    border-left-color: var(--emerald);
    color: var(--emerald-glow);
    padding-left: 30px;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

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

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

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid rgba(16, 185, 129, 0.2);
        overflow-y: auto;
    }

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

    .nav-menu > li {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        font-size: 20px;
        letter-spacing: 3px;
        padding: 15px 0;
    }

    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: rgba(16, 185, 129, 0.05);
        margin-top: 15px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
        border: none;
    }

    .dropdown.active .dropdown-menu {
        max-height: 300px;
        padding: 15px 0;
        border: 1px solid rgba(16, 185, 129, 0.2);
    }

    .dropdown-toggle {
        justify-content: center;
        font-size: 20px;
    }

    .dropdown-menu a {
        font-size: 16px;
        padding: 15px 25px;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
        background: var(--emerald);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
        background: var(--emerald);
    }
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(16, 185, 129, 0.08), transparent 60%),
                linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 40px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(52px, 8vw, 96px);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
    text-shadow: 0 0 40px rgba(16, 185, 129, 0.15);
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    margin-bottom: 50px;
    opacity: 0.95;
    letter-spacing: 0.5px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 28px;
    height: 50px;
    border: 1.5px solid rgba(16, 185, 129, 0.8);
    border-radius: 25px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: var(--emerald-glow);
    border-radius: 50%;
    animation: scroll 2s infinite;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.8);
}

@keyframes scroll {
    0% {
        top: 12px;
        opacity: 1;
    }
    100% {
        top: 32px;
        opacity: 0;
    }
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-block;
    padding: 18px 45px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-fast);
    border: 2px solid var(--emerald);
    position: relative;
    overflow: hidden;
    font-family: var(--font-body);
    border-radius: 2px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--emerald);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--emerald);
    color: var(--white);
    border-color: var(--emerald);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    box-shadow: var(--shadow-glow-lg);
    color: var(--white);
}

.btn-primary::before {
    background: var(--emerald-dark);
}

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

.btn-secondary:hover {
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--emerald-glow);
    border: 2px solid var(--emerald);
    padding: 14px 35px;
    font-size: 11px;
}

.btn-outline:hover {
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

/* ========================================
   PAGE HERO
   ======================================== */

.page-hero {
    padding: clamp(160px, 20vw, 200px) 0 clamp(80px, 10vw, 100px);
    background: linear-gradient(to bottom, var(--black), rgba(6, 78, 59, 0.05));
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08), transparent 70%);
    pointer-events: none;
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 500;
    margin-bottom: 25px;
    letter-spacing: -1px;
    position: relative;
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.1);
}

.page-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.3px;
    position: relative;
}

/* ========================================
   SECTION TITLES
   ======================================== */

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: var(--white);
}

.section-subtitle {
    text-align: center;
    font-size: clamp(16px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--black);
}

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

.service-card {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.03), transparent);
    border: 1px solid rgba(16, 185, 129, 0.2);
    transition: var(--transition);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--emerald), var(--emerald-glow));
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-card:hover::before {
    opacity: 0.3;
}

.service-card:hover {
    border-color: var(--emerald);
    transform: translateY(-8px);
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.06), rgba(16, 185, 129, 0.02));
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    border-color: var(--emerald);
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
    transform: scale(1.1);
}

.service-icon svg {
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.3));
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 500;
    color: var(--white);
}

.service-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-weight: 400;
}

/* ========================================
   LATEST FILM / PORTFOLIO SECTION
   ======================================== */

.latest-film {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--black);
}

.film-showcase {
    margin-top: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.video-wrapper {
    position: relative;
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.15);
    transition: var(--transition);
}

.video-wrapper:hover {
    border-color: var(--emerald);
    box-shadow: 0 30px 80px rgba(16, 185, 129, 0.25);
    transform: translateY(-4px);
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.cta-section {
    text-align: center;
    margin-top: 60px;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials {
    padding: clamp(80px, 10vw, 140px) 0;
    background: linear-gradient(to bottom, var(--black), rgba(6, 78, 59, 0.03));
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 60px;
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.03), transparent);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 8px;
    position: relative;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 120px;
    color: var(--emerald);
    opacity: 0.2;
    line-height: 0;
    margin-bottom: 30px;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.testimonial-author {
    margin-top: 30px;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--emerald-glow);
}

.author-location {
    font-size: 14px;
    color: var(--gray-light);
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 60px 30px;
    }
    
    .testimonial-text {
        font-size: 17px;
    }
}

/* ========================================
   CTA BANNER
   ======================================== */

.cta-banner {
    padding: clamp(80px, 10vw, 120px) 0;
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.1), transparent),
                var(--black);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1), transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 500;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.cta-text {
    font-size: clamp(16px, 2vw, 18px);
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* ========================================
   PORTFOLIO PAGE
   ======================================== */

.portfolio {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--black);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.portfolio-item {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-video-wrapper {
    position: relative;
    margin-bottom: 30px;
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.portfolio-video-wrapper:hover {
    border-color: var(--emerald);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.2);
    transform: translateY(-4px);
}

.portfolio-details {
    text-align: center;
}

.portfolio-title {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--white);
}

.portfolio-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.7;
}

.watch-film-btn {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--emerald-glow);
    padding: 10px 0;
    position: relative;
    transition: var(--transition-fast);
}

.watch-film-btn::after {
    content: '→';
    margin-left: 10px;
    transition: margin-left 0.3s ease;
}

.watch-film-btn:hover {
    color: var(--emerald);
}

.watch-film-btn:hover::after {
    margin-left: 15px;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

/* ========================================
   INVESTMENT / PACKAGES
   ======================================== */

.packages {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--black);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 80px;
    align-items: start;
}

.package-card {
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.02), transparent);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 8px;
    padding: 60px 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.package-card:hover {
    border-color: var(--emerald);
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(16, 185, 129, 0.2);
}

.package-card.featured {
    transform: scale(1.05);
    border-color: var(--emerald);
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.25);
}

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

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--emerald);
    color: var(--white);
    padding: 8px 24px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 20px;
    box-shadow: var(--shadow-glow);
}

.package-header h3 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--white);
}

.package-price {
    margin-bottom: 50px;
}

.price-amount {
    font-size: 56px;
    font-weight: 400;
    letter-spacing: -2px;
    color: var(--emerald-glow);
}

.package-features {
    list-style: none;
    margin-bottom: 50px;
    text-align: left;
}

.package-features li {
    padding: 18px 0;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    font-size: 14px;
    letter-spacing: 0.3px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.package-features li:first-child {
    border-top: 1px solid rgba(16, 185, 129, 0.1);
}

.packages-note {
    text-align: center;
    margin-top: 80px;
    color: var(--gray-light);
    font-size: 14px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 400;
}

@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: scale(1) translateY(-10px);
    }
}

/* ========================================
   PROCESS SECTION
   ======================================== */

.process-section {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--black);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-top: 80px;
}

.process-step {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.02), transparent);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 4px;
    transition: var(--transition);
}

.process-step:hover {
    border-color: var(--emerald);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.15);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 400;
    color: var(--emerald);
    opacity: 0.3;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 500;
    color: var(--white);
}

.process-step p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-weight: 400;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-content-section {
    padding: clamp(60px, 8vw, 80px) 0 clamp(80px, 10vw, 140px);
    background: var(--black);
}

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

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(16, 185, 129, 0.4);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.15);
    aspect-ratio: 1/1;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.content-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 500;
    margin-bottom: 35px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.about-text p {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 0.2px;
}

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

/* ========================================
   VALUES SECTION
   ======================================== */

.values-section {
    padding: clamp(80px, 10vw, 140px) 0;
    background: linear-gradient(to bottom, rgba(6, 78, 59, 0.03), var(--black));
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-top: 80px;
}

.value-card {
    text-align: center;
    padding: 50px 35px;
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.03), transparent);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 4px;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--emerald);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.15);
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 500;
    color: var(--white);
}

.value-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-weight: 400;
}

/* ========================================
   EXPERIENCE SECTION
   ======================================== */

.experience-section {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--black);
}

.experience-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.experience-text p {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    font-weight: 400;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
    padding: clamp(60px, 8vw, 80px) 0 clamp(80px, 10vw, 140px);
    background: var(--black);
}

.contact-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.contact-form-wrapper {
    max-width: 900px;
    margin: 0 auto 80px;
    background: linear-gradient(145deg, rgba(6, 78, 59, 0.05), transparent);
    padding: 80px;
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.1);
    position: relative;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--emerald), var(--emerald-glow));
    border-radius: 8px;
    opacity: 0.1;
    z-index: -1;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info-card {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.03), transparent);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 4px;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: var(--emerald);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.15);
}

.contact-info-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--white);
}

.contact-info-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-weight: 400;
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 50px 30px;
    }
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
    padding: clamp(80px, 10vw, 140px) 0;
    background: linear-gradient(to bottom, var(--black), rgba(6, 78, 59, 0.03));
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.faq-item {
    padding: 40px 35px;
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.03), transparent);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 4px;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--emerald);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.15);
}

.faq-item h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--white);
}

.faq-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-weight: 400;
}

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

/* ========================================
   FOOTER
   ======================================== */

.footer {
    padding: 80px 0;
    background: var(--black);
    border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    margin-bottom: 40px;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    margin: 0 auto;
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.2));
}

.footer-links {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 12px;
    color: var(--gray-light);
    transition: var(--transition-fast);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--emerald-glow);
}

.footer-social {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.social-link:hover {
    border-color: var(--emerald);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: var(--gray-light);
    transition: var(--transition-fast);
}

.social-link:hover svg {
    fill: var(--emerald-glow);
}

.footer-credit {
    font-size: 13px;
    color: var(--gray-medium);
    letter-spacing: 0.5px;
    font-weight: 400;
}

/* ========================================
   BLOG STYLES
   ======================================== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 50px;
    margin-top: 80px;
}

.blog-card {
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.03), transparent);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--emerald);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.2);
}

.blog-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-content {
    padding: 35px 30px;
}

.blog-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--emerald-glow);
    margin-bottom: 15px;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.3;
    color: var(--white);
}

.blog-card-excerpt {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
}

.blog-date {
    font-size: 13px;
    color: var(--gray-light);
}

.blog-read-more {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--emerald-glow);
    transition: var(--transition-fast);
}

.blog-read-more:hover {
    color: var(--emerald);
}

/* Blog Post Single */
.blog-post-header {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 60px;
}

.blog-post-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.2;
}

.blog-post-meta {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: var(--gray-light);
}

.blog-post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: clamp(60px, 8vw, 80px) 0;
}

.blog-post-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 500;
    margin: 50px 0 25px;
    color: var(--white);
}

.blog-post-content h3 {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 30px);
    font-weight: 500;
    margin: 40px 0 20px;
    color: var(--emerald-glow);
}

.blog-post-content p {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 25px 0;
    padding-left: 30px;
}

.blog-post-content li {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
}

.blog-post-content a {
    color: var(--emerald-glow);
    text-decoration: underline;
    transition: var(--transition-fast);
}

.blog-post-content a:hover {
    color: var(--emerald);
}

.blog-post-content strong {
    color: var(--emerald-glow);
    font-weight: 600;
}

.blog-cta-box {
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.05), transparent);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    padding: 50px 40px;
    text-align: center;
    margin: 60px 0;
}

.blog-cta-box h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--white);
}

.blog-cta-box p {
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blog-post-meta {
        flex-direction: column;
        gap: 15px;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease forwards;
}

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

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

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

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Button Pulse Animation */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(16, 185, 129, 0.8);
    }
}

.btn-primary {
    animation: pulse 2s ease-in-out infinite;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }

    .hero {
        height: 85vh;
    }

    .page-hero {
        padding: 140px 0 60px;
    }
}

@media (max-width: 768px) {
    .services-grid,
    .values-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* Performance Optimizations */
.hero-video,
.service-icon,
.package-card,
.portfolio-video-wrapper {
    will-change: transform;
}

/* Focus States for Accessibility */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
    outline: 2px solid var(--emerald);
    outline-offset: 4px;
}

/* Print Styles */
@media print {
    .nav,
    .scroll-indicator,
    .cta-banner,
    .footer-social {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}
