/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.7;
    color: #2d3748;
    background: #ffffff;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Animated background particles - Nature theme */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #2d6a4f;
    border-radius: 0 100% 0 100%;
    animation: leafFloat 25s infinite linear;
    opacity: 0.6;
    transform-origin: center;
}

.particle:nth-child(even) {
    background: #40916c;
    border-radius: 100% 0 100% 0;
    animation-duration: 30s;
}

.particle:nth-child(3n) {
    background: #d4a574;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation-duration: 35s;
}

@keyframes leafFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) rotate(360deg);
        opacity: 0;
    }
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

/* Typography - Clean and minimal */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a202c;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 500;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
    color: #2d3748;
    line-height: 1.6;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(45, 106, 79, 0.1);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(45, 106, 79, 0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(45, 106, 79, 0.15);
}

.nav {
    padding: 1rem 0;
}

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

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

.logo img {
    width: 180px;  /* Increased from default size */
    height: auto;
    transition: all 0.3s ease;
}

/* Adjust logo size on scroll for better proportion */
.header.scrolled .logo img {
    width: 150px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2d3748;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #2d6a4f, #40916c);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: #2d6a4f;
    background: rgba(45, 106, 79, 0.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(45, 106, 79, 0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2d6a4f;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Clean, modern buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #2d6a4f, #40916c);
    color: white;
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #52b788, #2d6a4f);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 106, 79, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #2d6a4f;
    border: 2px solid #2d6a4f;
}

.btn-secondary:hover {
    background: #2d6a4f;
    color: white;
    transform: translateY(-2px);
}

/* Hero Section - Nature Inspired with Rich Background */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 20px 50px;
    background: 
        linear-gradient(135deg, rgba(45, 106, 79, 0.359) 0%, rgba(64, 145, 109, 0.282) 50%, rgba(82, 183, 136, 0.219) 100%),
        url('/assets/hero-back.svg') center/cover ;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,20 Q30,10 40,20 T60,20 Q70,10 80,20 T100,20 L100,100 L0,100 Z" fill="%23ffffff" opacity="0.03"/></svg>') repeat-x bottom;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    color: white;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: titleReveal 0.8s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.highlight {
    background: linear-gradient(135deg, #d5c081, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

@keyframes leafSway {
    0%, 100% {
        transform: rotate(-5deg) translateY(0px);
    }
    50% {
        transform: rotate(5deg) translateY(-10px);
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
    color:wheat;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 1s forwards;
    opacity: 0;
}

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

/* Simple Camera Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.camera-simple {
    position: relative;
    width: 200px;
    height: 140px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: cameraFloat 6s ease-in-out infinite;
}

.camera-lens {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a1a1a, #333);
    border-radius: 50%;
    border: 4px solid #444;
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 255, 255, 0.1);
}

.lens-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: #111;
    border-radius: 50%;
    overflow: hidden;
}

.lens-reflection {
    position: absolute;
    top: 15%;
    left: 15%;
    width: 70%;
    height: 70%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    animation: lensGlow 4s ease-in-out infinite;
}

@keyframes lensGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.camera-grip {
    position: absolute;
    top: 20%;
    right: 20%;
    width: 40px;
    height: 20px;
    background: linear-gradient(135deg, #444, #555);
    border-radius: 8px;
}

.shutter-button {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    border: 2px solid #fff;
    animation: shutterPulse 3s ease-in-out infinite;
}

@keyframes shutterPulse {
    0%, 90% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(231, 76, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(231, 76, 60, 0); }
}

@keyframes cameraFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* Page Hero */
.page-hero {
    background: 
        linear-gradient(135deg, rgba(45, 106, 79, 0.9) 0%, rgba(26, 26, 46, 0.85) 50%, rgba(22, 33, 62, 0.9) 100%),
        url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2560&q=80') center/cover;
    color: white;
    text-align: center;
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><g opacity="0.1"><path d="M10,50 Q20,30 30,50 T50,50 Q60,30 70,50 T90,50" stroke="%23ffffff" stroke-width="1" fill="none"/><circle cx="25" cy="25" r="2" fill="%23d4af37"/><circle cx="75" cy="75" r="1.5" fill="%23ffffff"/></g></svg>') repeat;
    z-index: 1;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    color: #ecf0f1;
    position: relative;
    z-index: 2;
}

/* Sections */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: wheat;
    font-weight: 600;
}
#trusted-title{
    color:black
}

/* Services Section - Enhanced with nature backgrounds */
.services {
    padding: 80px 0;
    background: 
        linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%),
        url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2560&q=80') center/cover;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%2340916c" opacity="0.1"/><circle cx="80" cy="40" r="2" fill="%23d4af37" opacity="0.1"/><circle cx="60" cy="80" r="2.5" fill="%232d6a4f" opacity="0.1"/></svg>') repeat;
    z-index: 1;
}

.services .container {
    position: relative;
    z-index: 2;
}

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

.service-card {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle, rgba(45, 106, 79, 0.05) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
    z-index: 1;
}

.service-card:hover::before {
    transform: scale(2);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 50px rgba(45, 106, 79, 0.2);
    border-color: #40916c;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2d6a4f, #40916c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #52b788, #40916c);
    transform: scale(1.1);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #1a202c;
    font-size: 1.25rem;
}

.service-card p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

/* About Preview Section */
.about-preview {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, rgba(45, 106, 79, 0.95) 0%, rgba(26, 26, 46, 0.9) 50%, rgba(22, 33, 62, 0.95) 100%),
        url('https://images.unsplash.com/photo-1518837695005-2083093ee35b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2560&q=80') center/cover;
    position: relative;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M10,30 Q20,10 30,30 T50,30 Q60,20 70,30 T90,30" stroke="%23ffffff" stroke-width="0.5" fill="none" opacity="0.1"/></svg>') repeat;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text h2 {
    margin-bottom: 1.5rem;
    color:wheat;
}
.about-text p {
    margin-bottom: 2rem;
    color: #f7fafc;
    line-height: 1.6;
}

.about-points {
    margin: 2rem 0;
}

.point {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.point:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateX(10px);
}

.point h4 {
    color: #d4af37;
    margin-bottom: 0.5rem;
}
.point p {
    color:wheat;
  
}
.studio-icon {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #d4af37, #f1c40f, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 4rem;
    color: #0f0f23;
    box-shadow: 
        0 20px 60px rgba(212, 175, 55, 0.4),
        inset 0 0 50px rgba(255, 255, 255, 0.1);
    animation: studioFloat 8s ease-in-out infinite;
}

@keyframes studioFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

/* Clients Section */
.clients {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, rgba(248, 249, 250, 0.98) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(241, 242, 246, 0.98) 100%),
        url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2560&q=80') center/cover;
    position: relative;
}

.clients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><g fill="%2340916c" opacity="0.05"><circle cx="50" cy="50" r="3"/><circle cx="150" cy="80" r="2"/><circle cx="100" cy="150" r="2.5"/><path d="M20,180 Q30,170 40,180 T60,180" stroke="%23d4af37" stroke-width="1" fill="none"/></g></svg>') repeat;
    z-index: 1;
}

.clients .container {
    position: relative;
    z-index: 2;
}

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

.client-card {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    color: #0f0f23;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent, rgba(45, 106, 79, 0.1), rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.8s ease;
}

.client-card::after {
    content: '🌿';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.client-card:hover::before {
    left: 100%;
}

.client-card:hover::after {
    opacity: 0.3;
    transform: rotate(15deg);
}

.client-card:hover {
    border-color: #d4af37;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(45, 106, 79, 0.02) 100%);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
    transform: translateY(-15px) scale(1.05);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, rgba(45, 106, 79, 0.95) 0%, rgba(26, 26, 46, 0.9) 50%, rgba(22, 33, 62, 0.95) 100%),
        url('https://images.unsplash.com/photo-1518837695005-2083093ee35b?ixlib=rb-4.0.3&auto=format&fit=crop&w=2560&q=80') center/cover;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><g opacity="0.1"><circle cx="20" cy="20" r="2" fill="%23d4af37"/><circle cx="80" cy="60" r="1.5" fill="%23ffffff"/><path d="M10,80 Q20,70 30,80 T50,80" stroke="%23ffffff" stroke-width="0.5" fill="none"/></g></svg>') repeat;
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

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

.contact-info h3,
.contact-form h3 {
    margin-bottom: 2rem;
    color: #d4af37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.contact-item i {
    font-size: 1.8rem;
    color: #d4af37;
    margin-top: 0.2rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.contact-item strong {
    color: #d4af37;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: #bdc3c7;
    margin: 0;
}

.contact-form {
    background: rgba(212, 175, 55, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1.2rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #bdc3c7;
}

.contact-form button {
    margin-top: 1rem;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f0f23 0%, #000000 100%);
    color: white;
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-section ul li:hover {
    color: #d4af37;
    transform: translateX(10px);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;
}

/* Loading Animation */
body:not(.loaded) {
    overflow: hidden;
}

body:not(.loaded)::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

body:not(.loaded)::after {
    content: '✨';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    z-index: 10000;
    animation: loadingPulse 1.5s ease-in-out infinite;
}

@keyframes loadingPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

body.loaded::before,
body.loaded::after {
    display: none;
}

/* Menu open state */
body.menu-open {
    overflow: hidden;
}

body.menu-open .nav-menu {
    background: rgba(15, 15, 35, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* About Page Specific Styles */
.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-story {
    padding: 100px 0;
    background: white;
}

.photographer-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 15px 45px rgba(231, 76, 60, 0.3);
}

.mission-vision {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.mv-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.expansion-plans {
    padding: 100px 0;
    background: white;
}

.expansion-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.services-list {
    list-style: none;
    margin-top: 2rem;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #555;
}

.services-list i {
    color: #e74c3c;
    font-size: 1.2rem;
}

.expansion-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #27ae60, #229954);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 15px 45px rgba(39, 174, 96, 0.3);
}

.keys-success {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.success-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.success-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.studio-location {
    padding: 100px 0;
    background: white;
}

.location-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-details {
    margin-top: 2rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.location-item i {
    font-size: 1.5rem;
    color: #e74c3c;
    margin-top: 0.2rem;
}

.location-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

/* Gallery Page Specific Styles */
.gallery-filters {
    padding: 50px 0;
    background: white;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid #e74c3c;
    background: transparent;
    color: #e74c3c;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: #e74c3c;
    color: white;
}

.gallery-grid {
    padding: 50px 0 100px;
    background: #f8f9fa;
}

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

.gallery-item {
    transition: all 0.3s ease;
}

.gallery-image {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: translateY(-5px);
}

.gallery-image i {
    font-size: 3rem;
    color: #e74c3c;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-image:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    margin-bottom: 0.5rem;
    color: white;
}

.gallery-overlay p {
    margin: 0;
    color: #ecf0f1;
    font-size: 0.9rem;
}

.gallery-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #bdc3c7;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Nature Elements for Hero Section */
.nature-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.leaf {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: leafDance 8s ease-in-out infinite;
}

.leaf-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.leaf-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.leaf-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 12s;
}

.flower {
    position: absolute;
    top: 40%;
    right: 25%;
    font-size: 1.8rem;
    opacity: 0.5;
    animation: flowerBlossom 6s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes leafDance {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-15px) rotate(10deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) rotate(-5deg);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-20px) rotate(15deg);
        opacity: 0.9;
    }
}

@keyframes flowerBlossom {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.8;
    }
}

/* Additional dynamic elements for the photography hero */
.hero-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-visual::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, transparent 40%, rgba(255, 255, 255, 0.05) 70%);
    transform: translate(-50%, -50%);
    animation: depthPulse 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes depthPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.2; }
}

/* Enhanced button styles for hero */
.hero .btn {
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero .btn-primary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero .btn-primary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.hero .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Particle enhancement for hero */
.hero .particle {
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

/* Professional touch - viewfinder overlay */
.hero-visual .viewfinder {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 320px;
    height: 240px;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    pointer-events: none;
    opacity: 0;
    animation: viewfinderFocus 8s ease-in-out infinite;
}

.hero-visual .viewfinder::before,
.hero-visual .viewfinder::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero-visual .viewfinder::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

.hero-visual .viewfinder::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

@keyframes viewfinderFocus {
    0%, 70% { opacity: 0; transform: translate(-50%, -50%) scale(1.2); }
    75%, 85% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    90%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
}

/* Page Hero Nature Elements */
.hero-nature {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nature-accent {
    font-size: 2rem;
    opacity: 0.4;
    animation: gentleSway 6s ease-in-out infinite;
}

.nature-accent:nth-child(1) {
    animation-delay: 0s;
}

.nature-accent:nth-child(2) {
    animation-delay: 3s;
}

@keyframes gentleSway {
    0%, 100% {
        transform: rotate(-10deg) translateY(0px);
        opacity: 0.4;
    }
    50% {
        transform: rotate(10deg) translateY(-5px);
        opacity: 0.7;
    }
}

/* Floating Nature Overlay Elements */
.floating-nature {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.floating-leaf {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.3;
    animation: floatAcross 15s linear infinite;
}

.floating-leaf:nth-child(1) {
    top: 10%;
    animation-delay: 0s;
    font-size: 1.2rem;
}

.floating-leaf:nth-child(2) {
    top: 30%;
    animation-delay: 5s;
    font-size: 1.8rem;
}

.floating-leaf:nth-child(3) {
    top: 60%;
    animation-delay: 10s;
    font-size: 1.4rem;
}

.floating-leaf:nth-child(4) {
    top: 80%;
    animation-delay: 3s;
    font-size: 1.6rem;
}

@keyframes floatAcross {
    0% {
        transform: translateX(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateX(calc(100vw + 100px)) rotate(360deg);
        opacity: 0;
    }
}

/* Map Container */
.map-container {
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    margin: 20px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content,
    .contact-content,
    .story-content,
    .expansion-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid,
    .clients-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-grid,
    .success-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .hero-buttons,
    .cta-buttons {
        justify-content: center;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .camera-icon,
    .studio-icon {
        width: 120px;
        height: 120px;
        font-size: 2.5rem;
    }
}

/* White logo state - transparent header with white nav links (takes priority) */
.header.white-logo {
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
}

.header.white-logo .nav-link {
    color: white !important;
}

.header.white-logo .nav-link:hover,
.header.white-logo .nav-link.active {
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
}

.header.white-logo .nav-link::before {
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
}

.header.white-logo .hamburger span {
    background: white;
}