/* European Custom Tailor Porto - v4 Styles */
/* Dark Almost-Black Green + Gold + Clean Lines (No Roman Numerals) */

:root {
    /* Colors - Almost-Black Bottle Green + Gold */
    --green-darkest: #050A07;
    --green-primary: #071410;
    --green-mid: #0D2018;
    --green-accent: #091A0F;
    --gold-primary: #C4A35A;
    --gold-light: #D4B976;
    --ivory: #F2EDE4;
    --white: #FAFAF8;
    --leather: #3D2314;
    
    /* Typography - The 21st Century Gentleman Fonts */
    --font-display: 'Playfair Display', serif;
    --font-nav: 'Lato', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-serif: 'Noto Serif', serif;
    --font-sans: 'Noto Sans', sans-serif;
}

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

img, video {
    max-width: 100%;
    height: auto;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--ivory);
    background: var(--green-darkest);
    overflow-x: hidden;
    max-width: 100%;
}

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

/* Language Toggle */
.language-toggle {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(7, 20, 16, 0.95);
    padding: 10px 18px;
    border-radius: 6px;
    border: 1px solid var(--gold-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--ivory);
    font-family: var(--font-nav);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: color 0.3s;
}

.lang-btn:hover,
.lang-btn.active {
    color: var(--gold-primary);
}

.lang-divider {
    color: var(--gold-primary);
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(7, 20, 16, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(196, 163, 90, 0.2);
}

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

.nav-logo {
    display: flex !important;
    align-items: flex-start !important;
}

.nav-logo a {
    font-family: var(--font-nav);
    text-decoration: none;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 2px;
    line-height: 1.2;
}

.nav-logo .logo-main {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold-primary);
    display: block !important;
    white-space: nowrap;
}

.nav-logo .logo-sub {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: var(--ivory);
    opacity: 0.85;
    display: block !important;
    text-transform: none;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    font-family: var(--font-nav);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--ivory);
    text-decoration: none;
    transition: color 0.3s;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gold-primary);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://www.genspark.ai/api/files/s/Kp3pNqS4');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7, 20, 16, 0.75) 0%, rgba(5, 10, 7, 0.70) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grain" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><rect width="100" height="100" fill="%23071410"/><filter id="noise"><feTurbulence baseFrequency="0.9" numOctaves="4"/></filter><rect width="100" height="100" filter="url(%23noise)" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--ivory);
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.8;
    color: var(--ivory);
    opacity: 0.9;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.btn-primary,
.btn-secondary {
    font-family: var(--font-nav);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 16px 36px;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--gold-primary);
    color: var(--green-darkest);
    border-color: var(--gold-primary);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: rgba(242, 237, 228, 0.1);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.scroll-indicator span {
    font-family: var(--font-nav);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gold-primary);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold-primary), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

@keyframes fadeInDown {
    0% { 
        opacity: 0;
        transform: translateY(-30px);
    }
    100% { 
        opacity: 0.95;
        transform: translateY(0);
    }
}

/* Section Styling */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.gold-line {
    width: 60px;
    height: 1px;
    background: var(--gold-primary);
    margin: 0 auto 30px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--ivory);
    margin-bottom: 20px;
    word-wrap: break-word;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.8;
    color: var(--ivory);
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Gold Dot Accent */
.gold-dot {
    width: 8px;
    height: 8px;
    background: var(--gold-primary);
    border-radius: 50%;
    margin-bottom: 16px;
}

/* Card Accent Line */
.card-accent {
    width: 40px;
    height: 2px;
    background: var(--gold-primary);
    margin-bottom: 20px;
}

/* About Section */
.about {
    position: relative;
    background-image: url('https://www.genspark.ai/api/files/s/vUASYbnw');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 10, 7, 0.96);
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

.about-image {
    position: relative;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    font-size: 17px;
    line-height: 1.9;
}

.about-text p {
    margin-bottom: 24px;
}

.about-text .philosophy {
    font-family: var(--font-display);
    font-size: 24px;
    font-style: italic;
    color: var(--gold-primary);
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(196, 163, 90, 0.2);
}

.about-stats-wrapper {
    margin-top: 80px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--gold-primary);
    margin: 12px 0 8px;
}

.stat-label {
    font-family: var(--font-nav);
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--ivory);
    opacity: 0.8;
}

/* Weddings Section */
.weddings {
    position: relative;
    background-image: url('https://www.genspark.ai/api/files/s/Kp3pNqS4');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.weddings::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 10, 7, 0.95);
    z-index: 0;
}

.weddings .container {
    position: relative;
    z-index: 1;
}

.wedding-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.wedding-card {
    background: var(--green-primary);
    padding: 40px 30px;
    border: 1px solid rgba(196, 163, 90, 0.2);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.wedding-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.wedding-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--gold-primary);
    margin-bottom: 16px;
}

.wedding-card p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 20px;
    flex: 1;
}

.wedding-card-cta {
    display: inline-block;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    text-decoration: none;
    font-family: var(--font-nav);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-align: center;
    margin-top: auto;
}

.wedding-card-cta:hover {
    background: var(--gold-primary);
    color: var(--green-darkest);
}
}

.wedding-cta {
    text-align: center;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.wedding-cta .btn-primary,
.wedding-cta .btn-secondary {
    min-width: 250px;
    margin: 0;
}

.wedding-note {
    font-family: var(--font-display);
    font-size: 20px;
    font-style: italic;
    color: var(--gold-primary);
    margin-bottom: 30px;
}

/* Services Section */
.services {
    background: var(--green-primary);
}

.services-video {
    max-width: 450px;
    margin: 0 auto 60px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    display: block;
}

.services-video video {
    width: 100%;
    height: auto;
    display: block;
    background: var(--green-darkest);
}

.services-video:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-item h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--ivory);
    margin-bottom: 12px;
}

.service-item.featured {
    border: 2px solid var(--gold-primary);
    padding: 30px;
    background: rgba(196, 163, 90, 0.08);
    position: relative;
}

.service-item.featured h3 {
    color: var(--gold-primary);
    font-size: 26px;
}

.service-item.featured p {
    opacity: 1;
    font-size: 16px;
    line-height: 1.8;
}

.service-item p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.85;
}

/* Pricing Section */
.pricing {
    background: var(--green-darkest);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.pricing-card {
    background: var(--green-primary);
    padding: 40px;
    border: 1px solid rgba(196, 163, 90, 0.2);
    transition: all 0.3s;
    text-align: center;
}

.pricing-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.pricing-card .card-accent {
    margin: 0 auto 24px;
}

.pricing-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--ivory);
    margin-bottom: 24px;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 12px;
}

.price .currency {
    font-family: var(--font-nav);
    font-size: 20px;
    color: var(--gold-primary);
    margin-right: 4px;
    margin-top: 8px;
}

.price .amount {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    color: var(--gold-primary);
    line-height: 1;
}

.price-note {
    font-family: var(--font-nav);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ivory);
    opacity: 0.6;
}

.pricing-note {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    background: var(--green-primary);
    border-left: 2px solid var(--gold-primary);
}

.pricing-note p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.85;
    font-style: italic;
}

/* Process Section */
.process {
    background: var(--green-darkest);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    position: relative;
    padding-left: 60px;
    margin-bottom: 60px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--gold-primary);
    border-radius: 50%;
}

.process-step:not(:last-child) .step-marker::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 5px;
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, var(--gold-primary), transparent);
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--gold-primary);
    margin-bottom: 12px;
}

.step-content p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.9;
}

/* Fabrics Section */
.fabrics {
    position: relative;
    background-image: url('https://www.genspark.ai/api/files/s/vUASYbnw');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.fabrics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 10, 7, 0.97);
    z-index: 0;
}

.fabrics .container {
    position: relative;
    z-index: 1;
}

/* Fabric Education Section */
.fabric-education {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0 80px;
    padding: 60px 40px;
    background: rgba(196, 163, 90, 0.05);
    border: 1px solid rgba(196, 163, 90, 0.2);
    border-radius: 2px;
}

.education-card {
    padding: 30px;
    background: var(--green-darkest);
    border-left: 3px solid var(--gold-primary);
}

.education-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--gold-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.education-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--ivory);
    opacity: 0.95;
}

.education-card strong {
    color: var(--gold-primary);
    font-weight: 600;
}

.fabrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.fabric-mill {
    text-align: center;
    padding: 30px 20px;
    background: rgba(13, 32, 24, 0.3);
    border: 1px solid rgba(196, 163, 90, 0.15);
    transition: all 0.3s ease;
}

.fabric-mill:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    background: rgba(13, 32, 24, 0.5);
}

.fabric-mill .gold-dot {
    margin: 0 auto 20px;
}

.fabric-mill h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--gold-primary);
    margin-bottom: 12px;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
}

.fabric-mill p {
    font-size: 13px;
    line-height: 1.8;
    opacity: 0.7;
    color: var(--ivory);
    font-family: var(--font-body);
}

/* Reviews Section */
.reviews {
    background: var(--green-primary);
    padding: 100px 0;
}

.reviews-rating {
    text-align: center;
    margin: 40px 0 60px;
}

.rating-score {
    display: inline-block;
}

.rating-score .score {
    font-family: var(--font-display);
    font-size: 72px;
    color: var(--gold-primary);
    font-weight: 700;
    display: block;
    line-height: 1;
}

.rating-score .stars {
    color: var(--gold-primary);
    font-size: 32px;
    letter-spacing: 4px;
    margin: 10px 0;
}

.rating-score .rating-text {
    font-size: 14px;
    color: var(--ivory);
    opacity: 0.7;
    margin-top: 8px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    background: rgba(13, 32, 24, 0.6);
    border: 1px solid rgba(196, 163, 90, 0.2);
    padding: 30px;
    transition: all 0.3s;
}

.review-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.review-stars {
    color: var(--gold-primary);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.review-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--ivory);
    margin-bottom: 25px;
    min-height: 140px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(196, 163, 90, 0.2);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gold-primary);
    color: var(--green-darkest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-family: var(--font-nav);
    font-size: 16px;
    font-weight: 600;
    color: var(--ivory);
    margin-bottom: 4px;
}

.author-location {
    font-size: 13px;
    color: var(--ivory);
    opacity: 0.6;
}

.reviews-cta {
    text-align: center;
    margin-top: 50px;
}

/* Instagram Section */
.instagram {
    background: var(--green-darkest);
    padding: 100px 0;
}

/* Instagram Grid */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.instagram-post {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 4px;
    display: block;
    border: 1px solid rgba(196, 163, 90, 0.2);
    transition: all 0.3s ease;
}

.instagram-post:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(196, 163, 90, 0.3);
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-post:hover img {
    transform: scale(1.05);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 20, 16, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay span {
    font-size: 48px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.instagram-post:hover .instagram-overlay span {
    transform: scale(1);
}

.instagram-feed {
    max-width: 1200px;
    margin: 50px auto;
    border: 2px solid rgba(196, 163, 90, 0.2);
    background: var(--green-primary);
    overflow: hidden;
}

.instagram-feed iframe {
    border: none;
    width: 100%;
    min-height: 600px;
}

.snapwidget-widget {
    border: none !important;
}

.instagram-embed {
    max-width: 1200px;
    margin: 50px auto;
    border: 2px solid rgba(196, 163, 90, 0.2);
    padding: 20px;
    background: var(--green-primary);
}

.lightwidget-widget {
    min-height: 600px;
}

.instagram-cta {
    text-align: center;
    margin-top: 50px;
}

/* Universe Section */
.universe {
    background: var(--green-darkest);
}

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

.universe-card {
    background: var(--green-primary);
    padding: 40px;
    text-decoration: none;
    border: 1px solid rgba(196, 163, 90, 0.2);
    transition: all 0.3s;
    display: block;
}

.universe-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.universe-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--gold-primary);
    margin-bottom: 12px;
}

.universe-card p {
    font-size: 15px;
    color: var(--ivory);
    opacity: 0.85;
}

/* Contact Section */
.contact {
    background: var(--green-primary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.locations {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.location-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--gold-primary);
    margin-bottom: 16px;
}

.location-card p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 8px;
}

.location-phone {
    font-family: var(--font-nav);
    font-weight: 600;
    color: var(--ivory);
    margin-top: 12px;
}

/* Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px;
    background: var(--green-darkest);
    border: 1px solid rgba(196, 163, 90, 0.3);
    color: var(--ivory);
    font-family: var(--font-body);
    font-size: 15px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold-primary);
}

.form-group label {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 15px;
    color: var(--ivory);
    opacity: 0.6;
    pointer-events: none;
    transition: all 0.3s;
    font-family: var(--font-body);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]) + label {
    top: -8px;
    left: 12px;
    font-size: 12px;
    background: var(--green-primary);
    padding: 0 6px;
    color: var(--gold-primary);
}

/* Footer */
.footer {
    background: var(--green-darkest);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(196, 163, 90, 0.2);
}

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

.footer-brand h3 {
    font-family: var(--font-nav);
    font-size: 16px;
    letter-spacing: 2px;
    color: var(--gold-primary);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.footer-location {
    font-family: var(--font-nav);
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--gold-primary);
    margin-top: 20px;
}

.footer-links h4,
.footer-universe h4 {
    font-family: var(--font-nav);
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.footer-links ul,
.footer-universe ul {
    list-style: none;
}

.footer-links li,
.footer-universe li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-universe a {
    font-size: 14px;
    color: var(--ivory);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s;
}

.footer-links a:hover,
.footer-universe a:hover {
    color: var(--gold-primary);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(196, 163, 90, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-video {
        max-width: 380px;
    }
}

@media (max-width: 768px) {
    .nav-logo .logo-main {
        font-size: 12px;
        letter-spacing: 1.5px;
    }
    
    .nav-logo .logo-sub {
        font-size: 9px;
        letter-spacing: 1.2px;
    }
    
    * {
        max-width: 100% !important;
    }
    
    img, video {
        max-width: 100% !important;
        height: auto !important;
        width: auto !important;
    }
    
    .about-image {
        order: -1;
        max-width: 100% !important;
        margin: 0 !important;
        width: 100% !important;
        overflow: hidden !important;
    }
    
    .about-image img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        object-fit: contain !important;
    }
    
    .services-video {
        max-width: 85% !important;
        width: 85% !important;
        margin: 0 auto 50px !important;
    }
    
    .services-video video {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .nav-links {
        display: none !important;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(7, 20, 16, 0.98);
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex !important;
    }
    
    .nav-links li {
        margin: 0;
        padding: 0;
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 15px 30px;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(196, 163, 90, 0.1);
    }
    
    .nav-links a:hover {
        background: rgba(196, 163, 90, 0.1);
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        position: relative;
        z-index: 1000;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 32px;
        font-weight: 500;
        line-height: 1.4;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .wedding-services,
    .services-grid,
    .fabric-education,
    .fabrics-grid,
    .reviews-grid,
    .universe-grid {
        grid-template-columns: 1fr !important;
    }
    
    .services-video {
        max-width: 240px;
        margin: 0 auto 50px;
        border-radius: 4px;
    }
    
    .services-video:hover {
        transform: none;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .rating-score .score {
        font-size: 56px;
    }
    
    .rating-score .stars {
        font-size: 24px;
    }
    
    .review-text {
        min-height: auto;
    }
    
    .language-toggle {
        top: 70px;
        right: 15px;
        padding: 8px 14px;
    }
    
    /* Wedding CTA buttons mobile fix */
    .wedding-cta {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        padding: 0 20px !important;
        width: 100% !important;
    }
    
    .wedding-cta .btn-primary,
    .wedding-cta .btn-secondary {
        display: block !important;
        width: 100% !important;
        max-width: 320px !important;
        padding: 14px 30px !important;
        font-size: 13px !important;
        white-space: normal !important;
        line-height: 1.3 !important;
        text-align: center !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
        float: none !important;
        position: static !important;
    }
    
    .wedding-note {
        font-size: 18px;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    /* About section mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .about-image {
        order: -1;
        max-width: 100%;
        margin: 0;
        width: 100%;
        overflow: hidden;
    }
    
    .about-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    .about-stats-wrapper {
        margin-top: 60px;
    }
    
    .container {
        padding: 0 20px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .services-video {
        max-width: 200px;
        width: 200px;
        margin: 0 auto 50px;
    }
    
    .services-video video {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    
    /* Fix background images on mobile */
    .hero,
    .about,
    .weddings,
    .fabrics {
        background-attachment: scroll !important;
    }
}

@media (max-width: 480px) {
    * {
        max-width: 100vw !important;
    }
    
    body {
        overflow-x: hidden !important;
        width: 100vw !important;
        max-width: 100vw !important;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 26px;
        font-weight: 500;
        line-height: 1.4;
    }
    
    section {
        padding: 80px 0;
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    .container {
        padding: 0 15px !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    .about-image {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .about-image img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
    }
    
    .services-video {
        max-width: 80% !important;
        width: 80% !important;
        margin: 0 auto 40px !important;
    }
    
    .services-video video {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .services-video {
        max-width: 220px;
        margin: 0 auto 40px;
    }
    
    .fabric-education {
        padding: 40px 20px;
        gap: 30px;
    }
    
    .education-card {
        padding: 20px;
    }
    
    .education-card h3 {
        font-size: 19px;
    }
    
    .education-card p {
        font-size: 14px;
    }
    
    /* Wedding CTA buttons for small mobile */
    .wedding-cta {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
        padding: 0 15px !important;
        width: 100% !important;
    }
    
    .wedding-cta .btn-primary,
    .wedding-cta .btn-secondary {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 16px 20px !important;
        font-size: 14px !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
        float: none !important;
        position: static !important;
    }
    
    .wedding-note {
        font-size: 16px !important;
        line-height: 1.4 !important;
    }
}

/* Booking Modal */
.booking-modal {
    display: none;
    position: fixed;
    z-index: 999999 !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 20, 16, 0.95);
    /* Backdrop blur with vendor prefixes */
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    /* Animation with vendor prefixes */
    -webkit-animation: fadeIn 0.3s ease;
    animation: fadeIn 0.3s ease;
    /* Stacking context isolation */
    isolation: isolate;
    /* GPU acceleration with vendor prefixes */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    /* Prevent scrolling on mobile */
    -webkit-overflow-scrolling: touch;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Webkit prefix for Safari */
@-webkit-keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Firefox prefix */
@-moz-keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.booking-modal.active {
    display: -webkit-flex !important;
    display: -moz-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 999999 !important;
}

.booking-modal-content {
    position: relative;
    z-index: 999999 !important;
    width: 95%;
    max-width: 1200px;
    height: 90vh;
    background: var(--green-darkest);
    border: 2px solid var(--gold-primary);
    border-radius: 8px;
    /* Box shadow with vendor prefixes */
    -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    /* Animation with vendor prefixes */
    -webkit-animation: slideUp 0.4s ease;
    animation: slideUp 0.4s ease;
    /* Stacking context isolation */
    isolation: isolate;
    /* GPU acceleration with vendor prefixes */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    /* Performance optimization */
    -webkit-will-change: transform;
    will-change: transform;
    /* Prevent overflow on mobile */
    overflow: hidden;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Webkit prefix for Safari */
@-webkit-keyframes slideUp {
    from {
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

/* Firefox prefix */
@-moz-keyframes slideUp {
    from {
        -moz-transform: translateY(50px);
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        -moz-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

.booking-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: var(--gold-primary);
    color: var(--green-darkest);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
    /* Transition with vendor prefixes */
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    line-height: 1;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 1000000 !important;
    /* Tap highlight for mobile */
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.booking-modal-close:hover {
    background: var(--ivory);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.booking-modal-content iframe {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    position: relative;
    z-index: 999998 !important;
    border: none;
    /* Performance optimization for iframe */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    /* Smooth scrolling on iOS */
    -webkit-overflow-scrolling: touch;
    /* Prevent tap highlight on mobile */
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 768px) {
    .booking-modal-content {
        width: 100%;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile browsers */
        border-radius: 0;
        max-width: none;
        border: none;
    }
    
    .booking-modal-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 24px;
        z-index: 10002;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .booking-modal {
        padding: 0;
    }
    
    .booking-modal-content iframe {
        border-radius: 0;
    }
}

/* Extra small devices (phones in portrait, less than 576px) */
@media (max-width: 576px) {
    .booking-modal-close {
        width: 32px;
        height: 32px;
        font-size: 20px;
        top: 8px;
        right: 8px;
    }
}
