/* CSS Variables */
:root {
    /* Colors - Modern Dark Theme */
    --bg: #0f0f0f;
    --bg-elev: #1a1a1a;
    --bg-muted: #2a2a2a;
    --text: #f8f9fa;
    --text-muted: #a0a0a0;
    
    /* Gold Accent Palette */
    --gold-primary: #d4b56a;
    --gold-light: #e6d4a3;
    --gold-dark: #b09858;
    --gold-1: #f4e4bc;
    --gold-2: #e6d4a3;
    --gold-3: #d4b56a;
    --gold-4: #c2ac71;
    --gold-5: #b09858;
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --font-size-base: 1.125rem;
    --line-height-base: 1.7;
    
    /* Spacing Units */
    --sp-1: 0.25rem;
    --sp-2: 0.5rem;
    --sp-3: 0.75rem;
    --sp-4: 1rem;
    --sp-5: 1.25rem;
    --sp-6: 1.5rem;
    --sp-8: 2rem;
    --sp-10: 2.5rem;
    --sp-12: 3rem;
    --sp-16: 4rem;
    --sp-20: 5rem;
    
    /* Layout */
    --section-padding: var(--sp-16) 0;
    --container-padding: 0 var(--sp-4);
    --max-width: 1200px;
    
    /* Border Radius */
    --radius: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Utility Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease-in-out forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out forwards;
}

.scale-on-hover {
    transition: transform var(--transition);
}

.scale-on-hover:hover {
    transform: scale(1.05);
}

.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: var(--sp-1); }
.mb-2 { margin-bottom: var(--sp-2); }
.mb-3 { margin-bottom: var(--sp-3); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }
.mb-8 { margin-bottom: var(--sp-8); }
.mb-12 { margin-bottom: var(--sp-12); }

.mt-1 { margin-top: var(--sp-1); }
.mt-2 { margin-top: var(--sp-2); }
.mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); }
.mt-12 { margin-top: var(--sp-12); }

.p-1 { padding: var(--sp-1); }
.p-2 { padding: var(--sp-2); }
.p-3 { padding: var(--sp-3); }
.p-4 { padding: var(--sp-4); }
.p-6 { padding: var(--sp-6); }
.p-8 { padding: var(--sp-8); }

/* Keyframe Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

.metallic-heading {
    background: linear-gradient(180deg, var(--gold-1), var(--gold-2) 20%, var(--gold-3) 45%, var(--gold-4) 70%, var(--gold-5) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 1px 0 #2B2115, 0 2px 6px rgba(0,0,0,.45), inset 0 0 0 #000;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.nav-brand .brand-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-3);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-3);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold-3);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hamburger animation */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

.hero-fallback {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-elev) 50%, var(--bg-muted) 100%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        rgba(15, 15, 15, 0.7) 0%,
        rgba(15, 15, 15, 0.5) 50%,
        rgba(15, 15, 15, 0.7) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--sp-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-2);
    color: var(--gold-primary);
    font-size: 0.875rem;
    font-weight: 500;
    animation: bounce 2s infinite;
}

.scroll-indicator-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, var(--gold-primary));
    margin-bottom: var(--sp-2);
}

.scroll-indicator-text {
    font-family: var(--font-sans);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.scroll-indicator-arrow {
    width: 20px;
    height: 20px;
    animation: bounceArrow 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-2px);
    }
}

/* Buttons */
.gold-button,
.gold-outline-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--gold-3);
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-sans);
}

.gold-button {
    background: var(--gold-3);
    color: var(--bg);
}

.gold-button:hover {
    background: var(--gold-2);
    border-color: var(--gold-2);
    transform: translateY(-2px);
}

.gold-outline-button {
    background: transparent;
    color: var(--gold-3);
}

.gold-outline-button:hover {
    background: var(--gold-3);
    color: var(--bg);
    transform: translateY(-2px);
}

.gold-button.large,
.gold-outline-button.large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.icon {
    width: 20px;
    height: 20px;
}

/* Trust Strip */
.trust-strip {
    background: var(--bg-elev);
    padding: var(--sp-16) 0;
    border-top: 1px solid rgba(212, 180, 106, 0.1);
    border-bottom: 1px solid rgba(212, 180, 106, 0.1);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--sp-8);
}

.trust-card {
    background: var(--bg);
    padding: var(--sp-8);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 180, 106, 0.1);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.trust-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.trust-card:hover::before {
    transform: scaleX(1);
}

.trust-card .trust-icon {
    width: 64px;
    height: 64px;
    background: rgba(212, 180, 106, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--sp-6);
    color: var(--gold-primary);
    transition: var(--transition);
}

.trust-card:hover .trust-icon {
    background: rgba(212, 180, 106, 0.2);
    transform: scale(1.1);
}

.trust-card .trust-icon svg {
    width: 32px;
    height: 32px;
}

.trust-card h3 {
    color: var(--gold-primary);
    font-size: 1.25rem;
    margin-bottom: var(--sp-3);
    font-family: var(--font-display);
}

.trust-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Sections */
.services-overview,
.stats-section,
.cta-section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--bg-elev);
    padding: var(--sp-8);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 180, 106, 0.1);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    border-color: var(--gold-3);
    transform: translateY(-4px);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(212, 192, 138, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--gold-3);
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-card h3 {
    color: var(--gold-3);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: var(--sp-4);
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    margin-top: auto;
}

.service-link:hover {
    color: var(--gold-light);
    transform: translateX(4px);
}

.service-link::after {
    content: '→';
    transition: var(--transition);
}

.service-link:hover::after {
    transform: translateX(4px);
}

/* Portfolio Preview Section */
.portfolio-preview {
    padding: var(--section-padding);
    background: var(--bg);
}

.portfolio-coming-soon {
    display: flex;
    justify-content: center;
    margin-bottom: var(--sp-12);
}

.portfolio-placeholder {
    text-align: center;
    padding: var(--sp-16);
    background: var(--bg-elev);
    border-radius: var(--radius-lg);
    border: 2px dashed rgba(212, 180, 106, 0.3);
    max-width: 600px;
    width: 100%;
}

.portfolio-placeholder svg {
    width: 80px;
    height: 80px;
    color: var(--gold-primary);
    margin-bottom: var(--sp-6);
}

.portfolio-placeholder h3 {
    color: var(--gold-primary);
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: var(--sp-4);
}

.portfolio-placeholder p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: var(--sp-6);
    font-size: 1.05rem;
}

/* Portfolio Signup */
.portfolio-signup {
    text-align: center;
    background: var(--bg-elev);
    padding: var(--sp-8);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 180, 106, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.portfolio-signup h3 {
    color: var(--gold-primary);
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--sp-3);
}

.portfolio-signup p {
    color: var(--text-muted);
    margin-bottom: var(--sp-6);
}

.inline-signup-form {
    margin: 0;
}

.signup-input-group {
    display: flex;
    gap: var(--sp-4);
    align-items: stretch;
}

.signup-input-group input {
    flex: 1;
    padding: var(--sp-4);
    border: 1px solid rgba(212, 180, 106, 0.2);
    border-radius: var(--radius);
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    transition: var(--transition);
}

.signup-input-group input:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 180, 106, 0.1);
}

.signup-input-group button {
    flex-shrink: 0;
    white-space: nowrap;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--sp-8);
    margin-bottom: var(--sp-12);
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 15, 15, 0.1) 0%,
        rgba(15, 15, 15, 0.7) 70%,
        rgba(15, 15, 15, 0.9) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: var(--sp-8);
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-info h3 {
    color: var(--gold-primary);
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--sp-2);
}

.portfolio-info p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Placeholder for missing images */
.portfolio-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--bg-elev) 0%, var(--bg-muted) 100%);
    z-index: -1;
}

.portfolio-image::after {
    content: 'Portfolio Image';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold-primary);
    font-weight: 500;
    z-index: -1;
}

/* Stats Section */
.stats-section {
    background: var(--bg-elev);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-3);
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--section-padding);
    background: var(--bg-elev);
}

.testimonials-carousel {
    margin-top: var(--sp-12);
    position: relative;
}

.testimonials-swiper {
    padding-bottom: var(--sp-16);
}

.testimonials-swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.testimonial-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 180, 106, 0.1);
    padding: var(--sp-8);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    max-width: 500px;
    width: 100%;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-3), var(--gold-4));
}

.testimonial-card:hover {
    border-color: var(--gold-3);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(212, 192, 138, 0.1);
}

.testimonial-content {
    position: relative;
}

/* Client Photo */
.client-photo {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto var(--sp-6);
    overflow: hidden;
    border: 3px solid var(--gold-primary);
    background: var(--bg-elev);
}

.client-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--bg);
    font-weight: 600;
    font-size: 1.5rem;
    font-family: var(--font-display);
}

.quote-icon {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 40px;
    height: 40px;
    background: rgba(212, 192, 138, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-3);
}

.quote-icon svg {
    width: 20px;
    height: 20px;
}

.testimonial-text {
    color: var(--text);
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    padding-top: 1rem;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 192, 138, 0.1);
}

.author-info h4 {
    color: var(--gold-3);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    font-family: var(--font-display);
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.rating {
    display: flex;
    gap: 0.25rem;
}

.rating svg {
    width: 16px;
    height: 16px;
    color: var(--gold-primary);
}

/* Swiper Navigation */
.testimonial-nav-next,
.testimonial-nav-prev {
    color: var(--gold-primary) !important;
    background: rgba(212, 180, 106, 0.1) !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    transition: var(--transition) !important;
}

.testimonial-nav-next:hover,
.testimonial-nav-prev:hover {
    background: rgba(212, 180, 106, 0.2) !important;
    transform: scale(1.1);
}

.testimonial-nav-next::after,
.testimonial-nav-prev::after {
    font-size: 18px !important;
    font-weight: 600 !important;
}

.testimonial-pagination {
    bottom: 0 !important;
}

.testimonial-pagination .swiper-pagination-bullet {
    background: var(--text-muted) !important;
    opacity: 0.5 !important;
    width: 12px !important;
    height: 12px !important;
    margin: 0 6px !important;
    transition: var(--transition) !important;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--gold-primary) !important;
    opacity: 1 !important;
    transform: scale(1.2);
}

/* CTA Section */
.cta-section {
    background: var(--bg-elev);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Detail Pages */
.service-detail {
    padding: var(--section-padding);
}

/* Service Header with Icon */
.service-header {
    display: flex;
    align-items: center;
    gap: var(--sp-6);
    margin-bottom: var(--sp-6);
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(212, 180, 106, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.service-icon-large svg {
    width: 40px;
    height: 40px;
}

/* Service Features List */
.service-features {
    list-style: none;
    padding: 0;
    margin: var(--sp-6) 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    padding: var(--sp-3) 0;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(212, 180, 106, 0.1);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li svg {
    width: 20px;
    height: 20px;
    color: var(--gold-primary);
    flex-shrink: 0;
}

/* Service CTA */
.service-cta {
    margin-top: var(--sp-8);
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-content.reverse {
    direction: rtl;
}

.service-content.reverse > * {
    direction: ltr;
}

.service-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-text p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-text ul {
    list-style: none;
    padding: 0;
}

.service-text li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    position: relative;
    padding-left: 1.5rem;
}

.service-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-3);
    font-weight: bold;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* Process Section */
.process-section {
    padding: var(--section-padding);
    background: var(--bg-elev);
}

/* Interactive Timeline */
.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: var(--sp-12) 0;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--gold-primary) 25%,
        var(--gold-primary) 75%,
        transparent 100%
    );
    transform: translateY(-50%);
    z-index: 1;
}

.process-timeline .process-step {
    display: flex;
    align-items: center;
    margin-bottom: var(--sp-16);
    position: relative;
}

.process-timeline .process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-timeline .process-step:nth-child(even) .step-content {
    text-align: right;
}

.step-marker {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    margin: 0 var(--sp-8);
}

.process-timeline .step-number {
    width: 60px;
    height: 60px;
    background: var(--gold-primary);
    color: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    margin-bottom: var(--sp-4);
}

.process-timeline .step-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 180, 106, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    margin: 0 auto;
    border: 2px solid rgba(212, 180, 106, 0.2);
    transition: var(--transition);
}

.process-timeline .step-icon:hover {
    background: rgba(212, 180, 106, 0.2);
    border-color: var(--gold-primary);
}

.process-timeline .step-icon svg {
    width: 24px;
    height: 24px;
}

.step-content {
    flex: 1;
    max-width: 400px;
}

.step-content h3 {
    color: var(--gold-primary);
    font-size: 1.5rem;
    margin-bottom: var(--sp-3);
    font-family: var(--font-display);
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Legacy process step styles removed - using timeline styles instead */

/* Contact Form */
.contact-form-section {
    padding: var(--section-padding);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-elev);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 192, 138, 0.1);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--gold-3);
    transform: translateY(-2px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 192, 138, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-3);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-details h3 {
    color: var(--gold-3);
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--text-muted);
    margin: 0;
}

.contact-note {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: var(--sp-2);
    font-style: italic;
}

.contact-intro {
    color: var(--text-muted);
    margin-bottom: var(--sp-8);
    font-size: 1.1rem;
    line-height: 1.6;
}

.form-intro {
    color: var(--text-muted);
    margin-bottom: var(--sp-8);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Enhanced Form Styles */
.form-success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: var(--sp-8);
    border-radius: var(--radius-lg);
    text-align: center;
    margin-bottom: var(--sp-8);
}

.success-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--sp-4);
}

.success-icon svg {
    width: 30px;
    height: 30px;
}

.form-success h3 {
    margin-bottom: var(--sp-3);
    font-size: 1.5rem;
}

.form-success p {
    margin: 0;
    opacity: 0.9;
}

.form-error {
    display: block;
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: var(--sp-2);
    opacity: 0;
    transition: var(--transition);
}

.form-error.visible {
    opacity: 1;
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group.success input,
.form-group.success textarea,
.form-group.success select {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Custom Select Styling */
.custom-select {
    position: relative;
}

.custom-select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: var(--bg-elev);
    padding-right: var(--sp-12);
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    right: var(--sp-4);
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--gold-primary);
    transition: var(--transition);
}

.custom-select:hover .select-arrow {
    color: var(--gold-light);
}

.select-arrow svg {
    width: 20px;
    height: 20px;
}

/* Social Links */
.social-links {
    margin-top: var(--sp-12);
    padding-top: var(--sp-8);
    border-top: 1px solid rgba(212, 180, 106, 0.1);
}

.social-links h3 {
    color: var(--gold-primary);
    margin-bottom: var(--sp-6);
    font-family: var(--font-display);
}

.social-icons {
    display: flex;
    gap: var(--sp-4);
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    padding: var(--sp-3) var(--sp-4);
    background: rgba(212, 180, 106, 0.1);
    border: 1px solid rgba(212, 180, 106, 0.2);
    border-radius: var(--radius);
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.social-link:hover {
    background: rgba(212, 180, 106, 0.2);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Map Section */
.map-section {
    padding: var(--section-padding);
    background: var(--bg-elev);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212, 180, 106, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.contact-form h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid rgba(212, 192, 138, 0.2);
    border-radius: var(--radius);
    background: var(--bg-elev);
    color: var(--text);
    font-family: var(--font-sans);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-3);
    box-shadow: 0 0 0 3px rgba(199, 154, 60, 0.1);
}

/* About Page Styles */
.founder-section {
    padding: var(--section-padding);
}

/* Founder Bio Styling */
.founder-bio {
    margin: var(--sp-8) 0;
}

.founder-bio p {
    margin-bottom: var(--sp-6);
}

/* Founder's Message */
.founders-message {
    background: var(--bg-elev);
    padding: var(--sp-8);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--gold-primary);
    margin-top: var(--sp-12);
    position: relative;
}

.message-quote {
    position: absolute;
    top: -10px;
    left: var(--sp-6);
    width: 40px;
    height: 40px;
    background: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg);
}

.message-quote svg {
    width: 20px;
    height: 20px;
}

.founders-message blockquote {
    font-size: 1.25rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--text);
    margin: var(--sp-6) 0;
    font-family: var(--font-display);
}

.founders-message cite {
    display: block;
    text-align: right;
    color: var(--gold-primary);
    font-weight: 600;
    margin-top: var(--sp-4);
}

/* Founder Photo */
.founder-photo {
    position: relative;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto var(--sp-6);
    border: 4px solid var(--gold-primary);
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-caption {
    text-align: center;
}

.founder-caption h4 {
    color: var(--gold-primary);
    font-size: 1.25rem;
    margin-bottom: var(--sp-2);
    font-family: var(--font-display);
}

.founder-caption span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Team Section */
.team-section {
    padding: var(--section-padding);
    background: var(--bg-elev);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--sp-8);
    margin-top: var(--sp-12);
}

.team-member {
    background: var(--bg);
    padding: var(--sp-8);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(212, 180, 106, 0.1);
    transition: var(--transition);
}

.team-member:hover {
    border-color: var(--gold-primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.member-photo {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto var(--sp-6);
    overflow: hidden;
    border: 3px solid var(--gold-primary);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-photo .photo-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--bg);
    font-weight: 600;
    font-size: 1.5rem;
    font-family: var(--font-display);
}

.member-info h3 {
    color: var(--gold-primary);
    font-size: 1.25rem;
    margin-bottom: var(--sp-2);
    font-family: var(--font-display);
}

.member-role {
    display: block;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: var(--sp-4);
    font-size: 0.95rem;
}

.member-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Team Placeholder */
.team-placeholder {
    text-align: center;
    padding: var(--sp-16);
    background: var(--bg);
    border-radius: var(--radius-lg);
    border: 2px dashed rgba(212, 180, 106, 0.3);
    max-width: 500px;
    margin: 0 auto;
}

.team-placeholder svg {
    width: 80px;
    height: 80px;
    color: var(--gold-primary);
    margin-bottom: var(--sp-6);
}

.team-placeholder h3 {
    color: var(--gold-primary);
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--sp-4);
}

.team-placeholder p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Gallery Page Styles */
.gallery-filters {
    padding: var(--sp-8) 0;
    background: var(--bg-elev);
    border-bottom: 1px solid rgba(212, 180, 106, 0.1);
}

.filter-controls {
    display: flex;
    justify-content: center;
    gap: var(--sp-4);
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid rgba(212, 180, 106, 0.3);
    color: var(--text-muted);
    padding: var(--sp-3) var(--sp-6);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--gold-primary);
    background: var(--gold-primary);
    color: var(--bg);
    transform: translateY(-2px);
}

.gallery-section {
    padding: var(--section-padding);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--sp-6);
    margin-bottom: var(--sp-12);
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    background: var(--bg-elev);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 15, 15, 0.1) 0%,
        rgba(15, 15, 15, 0.7) 70%,
        rgba(15, 15, 15, 0.9) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--sp-6);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    align-self: flex-end;
    width: 50px;
    height: 50px;
    background: rgba(212, 180, 106, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    backdrop-filter: blur(10px);
}

.gallery-icon svg {
    width: 24px;
    height: 24px;
}

.gallery-info {
    align-self: flex-start;
}

.gallery-info h3 {
    color: var(--text);
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--sp-2);
}

.gallery-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.gallery-actions {
    text-align: center;
    margin-top: var(--sp-8);
}

/* Gallery item placeholders */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--bg-elev) 0%, var(--bg-muted) 100%);
    z-index: -1;
}

.gallery-item::after {
    content: 'Gallery Image';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--gold-primary);
    font-weight: 500;
    z-index: -1;
    font-size: 0.9rem;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.founder-text h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.founder-subtitle {
    color: var(--gold-3);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-family: var(--font-sans);
}

.founder-text p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.founder-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-placeholder {
    width: 350px;
    height: 350px;
    background: var(--bg-elev);
    border: 3px solid rgba(212, 180, 106, 0.3);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    transition: var(--transition);
    margin: 0 auto;
}

.founder-placeholder:hover {
    border-color: var(--gold-primary);
    transform: scale(1.05);
}

.founder-placeholder svg {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.founder-placeholder p {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold-primary);
    margin: 0;
}

.founder-placeholder span {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: var(--sp-2);
}

/* Journey Section */
.journey-section {
    padding: var(--section-padding);
    background: var(--bg-elev);
}

.journey-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold-3);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--gold-primary);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg);
    box-shadow: var(--shadow-lg);
}

.timeline-marker svg {
    width: 24px;
    height: 24px;
}

.timeline-year {
    display: inline-block;
    background: var(--gold-primary);
    color: var(--bg);
    padding: var(--sp-2) var(--sp-4);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--sp-3);
}

.timeline-content {
    width: 45%;
    padding: 2rem;
    background: var(--bg);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 192, 138, 0.1);
    transition: var(--transition);
}

.timeline-content:hover {
    border-color: var(--gold-3);
    transform: translateY(-4px);
}

.timeline-content h3 {
    color: var(--gold-3);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.timeline-content p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: var(--section-padding);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--bg-elev);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 192, 138, 0.1);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--gold-3);
    transform: translateY(-4px);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 192, 138, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--gold-3);
}

.value-icon svg {
    width: 24px;
    height: 24px;
}

.value-card h3 {
    color: var(--gold-3);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.value-card p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Coming Soon Badge */
.coming-soon-badge {
    display: inline-block;
    background: var(--gold-3);
    color: var(--bg);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    margin-top: 1rem;
    font-family: var(--font-sans);
}

/* Coming Soon Section */
.coming-soon-section {
    padding: var(--section-padding);
}

.coming-soon-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.coming-soon-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.coming-soon-text p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Gallery Preview */
.gallery-preview {
    margin-top: 2rem;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.preview-item {
    aspect-ratio: 1;
}

.preview-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-elev);
    border: 2px solid rgba(212, 192, 138, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gold-3);
    transition: var(--transition);
}

.preview-placeholder:hover {
    border-color: var(--gold-3);
    transform: scale(1.02);
}

.preview-placeholder svg {
    width: 24px;
    height: 24px;
    margin-bottom: 0.75rem;
}

.preview-placeholder span {
    font-family: var(--font-sans);
    font-weight: 500;
    text-align: center;
    font-size: 0.875rem;
}

/* Notification Signup */
.notification-signup {
    background: var(--bg-elev);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 192, 138, 0.1);
}

.notification-signup h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.notification-signup p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.signup-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.signup-form .form-group {
    flex: 1;
    margin-bottom: 0;
}

.signup-form input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(212, 192, 138, 0.2);
    border-radius: var(--radius);
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
}

.signup-form input:focus {
    outline: none;
    border-color: var(--gold-3);
    box-shadow: 0 0 0 3px rgba(199, 154, 60, 0.1);
}

.signup-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.benefit-item svg {
    width: 16px;
    height: 16px;
    color: var(--gold-3);
    flex-shrink: 0;
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
    background: var(--bg);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-elev);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 180, 106, 0.1);
    margin-bottom: var(--sp-4);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--sp-6);
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(212, 180, 106, 0.05);
}

.faq-question h3 {
    color: var(--gold-primary);
    font-size: 1.125rem;
    margin: 0;
    font-family: var(--font-display);
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background: rgba(212, 180, 106, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: var(--gold-primary);
    color: var(--bg);
    transform: rotate(180deg);
}

.faq-toggle svg {
    width: 16px;
    height: 16px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 var(--sp-6) var(--sp-6);
}

.faq-answer p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Social Icons */
.social-icon {
    width: 16px;
    height: 16px;
    margin-right: 6px;
    vertical-align: middle;
}

/* Footer */
.footer {
    background: var(--bg-elev);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(212, 192, 138, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand .brand-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-3);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-muted);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: var(--gold-3);
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--gold-3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 192, 138, 0.1);
    color: var(--text-muted);
}

/* Sticky Get Quote Button */
.sticky-quote-btn {
    position: fixed;
    bottom: var(--sp-8);
    right: var(--sp-8);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
}

.sticky-quote-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sticky-quote-btn .gold-button {
    box-shadow: var(--shadow-xl);
    border-radius: 50px;
    padding: var(--sp-4) var(--sp-6);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--sp-2);
}

.sticky-quote-btn .gold-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px -12px rgba(212, 180, 106, 0.25);
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: var(--sp-8);
    left: var(--sp-8);
    width: 50px;
    height: 50px;
    background: var(--gold-primary);
    border: none;
    border-radius: 50%;
    color: var(--bg);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.scroll-top:hover {
    background: var(--gold-2);
    transform: translateY(-2px);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--bg);
        border-top: 1px solid rgba(212, 192, 138, 0.1);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        transition: var(--transition);
        z-index: 1000;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        opacity: 0;
        visibility: hidden;
        display: flex;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-toggle {
        display: flex !important;
        z-index: 1001;
    }

    .nav-link {
        padding: 1.25rem 0;
        border-bottom: 1px solid rgba(212, 192, 138, 0.1);
        font-size: 1.1rem;
        text-align: center;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--gold-3);
        background: rgba(212, 192, 138, 0.05);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .trust-items {
        flex-direction: column;
        text-align: center;
    }

    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .founder-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .founder-placeholder {
        width: 250px;
        height: 250px;
    }

    .journey-timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: row !important;
    }

    .timeline-marker {
        left: 20px;
        transform: none;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px;
    }

    .coming-soon-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .signup-form {
        flex-direction: column;
    }

    .preview-grid {
        grid-template-columns: 1fr;
    }

    /* Service page mobile styles */
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: var(--sp-4);
    }

    .service-icon-large {
        width: 60px;
        height: 60px;
    }

    .service-icon-large svg {
        width: 30px;
        height: 30px;
    }

    /* Timeline mobile styles */
    .process-timeline {
        padding: var(--sp-8) 0;
    }

    .timeline-line {
        display: none;
    }

    .process-timeline .process-step {
        flex-direction: column !important;
        text-align: center !important;
        margin-bottom: var(--sp-12);
    }

    .process-timeline .process-step:nth-child(even) .step-content {
        text-align: center;
    }

    .step-marker {
        margin: 0 0 var(--sp-6) 0;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .step-content {
        max-width: 100%;
    }

    /* About page mobile styles */
    .founder-placeholder {
        width: 250px;
        height: 250px;
    }

    .founders-message {
        padding: var(--sp-6);
        margin-top: var(--sp-8);
    }

    .founders-message blockquote {
        font-size: 1.1rem;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: var(--sp-6);
    }

    .member-photo {
        width: 100px;
        height: 100px;
    }

    .timeline-marker {
        width: 50px;
        height: 50px;
    }

    .timeline-marker svg {
        width: 20px;
        height: 20px;
    }

    /* Gallery page mobile styles */
    .filter-controls {
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--sp-3);
    }

    .filter-btn {
        font-size: 0.9rem;
        padding: var(--sp-3) var(--sp-4);
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
        gap: var(--sp-4);
    }

    .gallery-item {
        height: 250px;
    }

    /* Portfolio signup mobile */
    .signup-input-group {
        flex-direction: column;
        gap: var(--sp-3);
    }

    .portfolio-signup {
        padding: var(--sp-6);
    }
}

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

/* Enhanced Chatbot Styles */
.chatbot-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 10000;
    font-family: var(--font-sans);
}

.chatbot-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--gold-3), var(--gold-4));
    color: var(--bg);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(212, 192, 138, 0.3);
    transition: var(--transition);
    font-weight: 600;
}

.chatbot-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 192, 138, 0.4);
}

.chatbot-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.chatbot-window {
    position: absolute;
    bottom: calc(100% + 1rem);
    right: 0;
    width: 400px;
    max-width: 90vw;
    height: 500px;
    background: var(--bg-elev);
    border: 1px solid rgba(212, 192, 138, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chatbot-window.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chatbot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(212, 192, 138, 0.2);
    background: rgba(212, 192, 138, 0.05);
}

.chatbot-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--gold-3);
}

.chatbot-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.chatbot-close:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.1);
}

.chatbot-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chatbot-message {
    display: flex;
    margin-bottom: 0.5rem;
}

.chatbot-message.bot-message {
    justify-content: flex-start;
}

.chatbot-message.user-message {
    justify-content: flex-end;
}

.message-content {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    max-width: 80%;
}

.user-message .message-content {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-3), var(--gold-4));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.user-message .message-avatar {
    background: var(--text-muted);
}

.message-text {
    background: rgba(212, 192, 138, 0.1);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 192, 138, 0.2);
    line-height: 1.4;
    white-space: pre-wrap;
}

.user-message .message-text {
    background: linear-gradient(135deg, var(--gold-3), var(--gold-4));
    color: var(--bg);
    border: none;
}

.chatbot-input {
    padding: 1rem;
    border-top: 1px solid rgba(212, 192, 138, 0.2);
    background: rgba(212, 192, 138, 0.02);
}

.chatbot-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.chatbot-option {
    background: rgba(212, 192, 138, 0.1);
    border: 1px solid rgba(212, 192, 138, 0.3);
    color: var(--text);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.875rem;
}

.chatbot-option:hover {
    background: rgba(212, 192, 138, 0.2);
    border-color: var(--gold-3);
}

.chatbot-input-container {
    display: flex;
    gap: 0.5rem;
}

.chatbot-text-input {
    flex: 1;
    background: var(--bg);
    border: 1px solid rgba(212, 192, 138, 0.3);
    color: var(--text);
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    transition: var(--transition);
}

.chatbot-text-input:focus {
    outline: none;
    border-color: var(--gold-3);
    box-shadow: 0 0 0 2px rgba(212, 192, 138, 0.2);
}

.chatbot-text-input::placeholder {
    color: var(--text-muted);
}

.chatbot-send {
    background: linear-gradient(135deg, var(--gold-3), var(--gold-4));
    border: none;
    color: var(--bg);
    padding: 0.75rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-send:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 192, 138, 0.3);
}

.chatbot-send svg {
    width: 1rem;
    height: 1rem;
}

/* Mobile responsiveness for chatbot */
@media (max-width: 768px) {
    .chatbot-container {
        bottom: 1rem;
        right: 1rem;
    }
    
    .chatbot-window {
        width: calc(100vw - 2rem);
        height: 60vh;
        right: 0;
    }
    
    .chatbot-toggle {
        padding: 0.75rem 1rem;
    }
    
    .chatbot-label {
        display: none;
    }
    
    .message-content {
        max-width: 90%;
    }
}

/* Typing indicator */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    background: rgba(212, 192, 138, 0.1);
    border-radius: 18px;
    width: fit-content;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-3);
    animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-indicator span:nth-child(2) {
    animation-delay: -0.16s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0s;
}

@keyframes typing {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Disable input when typing */
.chatbot-text-input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.chatbot-send:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
