/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Build Tag: 20260318-1115 */
:root {
    /* Warm, cozy color palette inspired by Blublu Studios */
    --primary-warm: #d4a574;
    --primary-dark: #b8935f;
    --secondary-warm: #e8d5b7;
    --accent-pink: #f4b5a0;
    --accent-peach: #f7d794;
    --text-dark: #3c3c3c;
    --text-medium: #666666;
    --text-light: #999999;
    --background-cream: #fefcf8;
    --background-warm: #f9f6f2;
    --white: #ffffff;
    --shadow-soft: 0 8px 25px rgba(60, 60, 60, 0.12);
    --shadow-hover: 0 15px 40px rgba(60, 60, 60, 0.18);
    --border-radius: 12px;
    --border-radius-large: 20px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    /* Prevent horizontal scroll */
    overflow-x: hidden;
}

/* Smooth scrolling enhancement */
* {
    scroll-margin-top: 80px; /* Account for fixed navbar */
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-cream);
    overflow-x: hidden;
    /* Prevent text cutoff */
    word-wrap: break-word;
    overflow-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    text-shadow: 0 0 10px var(--primary-warm);
}

h4, h5, h6 {
    text-shadow: 0 0 10px var(--primary-warm);
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    will-change: transform, opacity;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-warm) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-warm);
}

.btn-secondary:hover {
    background: var(--primary-warm);
    color: var(--white);
    transform: translateY(-3px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(254, 252, 248, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-logo h1 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-dark);
    font-family: 'Playfair Display', serif;
}

.nav-tagline {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 400;
}

.nav-logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-flex;
    flex-direction: column;
    gap: 0.15rem;
}

.nav-logo-link:focus-visible {
    outline: 3px solid rgba(212, 165, 116, 0.45);
    outline-offset: 6px;
    border-radius: 12px;
}

.nav-logo a {
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--primary-warm);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.commission-btn {
    background: linear-gradient(135deg, var(--primary-warm) 0%, var(--primary-dark) 100%);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
}

.commission-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.commission-btn::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(254, 252, 248, 0.85) 0%,
        rgba(249, 246, 242, 0.75) 50%,
        rgba(212, 165, 116, 0.25) 100%
    );
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.6s both;
    text-shadow: 0 0 10px var(--primary-warm);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 0.9rem;
    color: white;
    margin-bottom: 8px;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border: 2px solid var(--primary-warm);
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    margin: 0 auto;
}

.scroll-indicator-link {
    text-decoration: none;
    color: inherit;
}

/* Highlights Section */
.highlights {
    padding: 110px 0;
    background: var(--background-cream);
    position: relative;
    overflow: hidden;
}

.highlights::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.12) 0%, transparent 55%),
                radial-gradient(circle at 80% 70%, rgba(232, 213, 183, 0.10) 0%, transparent 60%);
    z-index: 1;
    opacity: 0.7;
}

.highlights .container {
    position: relative;
    z-index: 2;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(212, 165, 116, 0.12);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.highlight-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: -40%;
    width: 70%;
    height: 100%;
    background: linear-gradient(180deg, rgba(212, 165, 116, 0.15) 0%, rgba(232, 213, 183, 0.05) 100%);
    transform: skewX(-20deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.highlight-card:hover::after {
    opacity: 1;
}

/* Modal base styles (used by payment and invoice modals) */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal {
    background: var(--white);
    width: 100%;
    max-width: 900px;
    border-radius: 14px;
    box-shadow: var(--shadow-hover);
    padding: 20px;
    border: 1px solid rgba(60,60,60,0.06);
    max-height: 90vh;
    overflow: auto;
}

.modal .modal-header {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
}

.modal .modal-title {
    font-size:1.25rem;
    margin:0;
    color:var(--primary-dark);
}

.modal .modal-close {
    background: transparent;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--text-medium);
}

/* Responsive tweaks */
@media (max-width: 640px) {
    .modal {
        padding: 14px;
        border-radius: 10px;
    }
    .btn {
        padding: 10px 16px;
        font-size: 0.95rem;
    }
    .hero-title { font-size: 2.25rem; }
}

/* Minor invoice table responsiveness */
.modal table { width: 100%; border-collapse: collapse; }
.modal table th, .modal table td { padding: 8px; border: 1px solid #eee; }


.highlight-value {
    font-size: 2.8rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    display: block;
}

.highlight-label {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.highlight-meta {
    color: var(--text-light);
    font-size: 0.85rem;
    display: block;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--background-warm);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at top left, rgba(212, 165, 116, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse at bottom right, rgba(232, 213, 183, 0.08) 0%, transparent 70%),
        linear-gradient(45deg, rgba(184, 147, 95, 0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(212, 165, 116, 0.01) 25%, transparent 25%);
    background-size: 100% 100%, 100% 100%, 80px 80px, 80px 80px;
    pointer-events: none;
    z-index: 1;
    animation: breathe 15s ease-in-out infinite;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-description p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

.about-description p:last-child {
    color: var(--primary-dark);
    font-weight: 500;
}

.about-visual {
    position: relative;
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-soft);
}

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--background-cream);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 165, 116, 0.20) 0%, rgba(212, 165, 116, 0.05) 40%, transparent 70%),
        radial-gradient(circle at 80% 80%, rgba(184, 147, 95, 0.15) 0%, rgba(184, 147, 95, 0.03) 30%, transparent 60%),
        radial-gradient(circle at 40% 60%, rgba(232, 213, 183, 0.25) 0%, rgba(232, 213, 183, 0.08) 35%, transparent 65%),
        linear-gradient(45deg, transparent 30%, rgba(212, 165, 116, 0.03) 32%, transparent 34%),
        linear-gradient(-45deg, transparent 30%, rgba(232, 213, 183, 0.04) 32%, transparent 34%);
    background-size: 100% 100%, 100% 100%, 100% 100%, 40px 40px, 40px 40px;
    pointer-events: none;
    z-index: 1;
    animation: servicesAnimation 25s ease-in-out infinite;
}

.services::after {
    content: '🎨 ✨ 🖌️ 🎭 📐 🎪';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 2rem;
    opacity: 0.03;
    animation: floatingIcons 30s linear infinite;
    pointer-events: none;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

.services .container {
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    position: relative;
    perspective: 1600px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--border-radius-large);
}

.service-card:hover,
.service-card:focus-within {
    transform: translateY(-12px);
}

.service-card-inner {
    position: relative;
    width: 100%;
    min-height: 620px;
    transform-style: preserve-3d;
    transition: transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: var(--border-radius-large);
}

.service-card:hover .service-card-inner,
.service-card:focus-within .service-card-inner {
    transform: rotateY(180deg);
}

.service-card-face {
    position: absolute;
    inset: 0;
    padding: 2.5rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(212, 165, 116, 0.1);
    background: var(--white);
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-height: 100%;
}

.service-card-front {
    justify-content: flex-start;
    gap: 1.75rem;
}

.service-card-back {
    background: linear-gradient(135deg, #fceabb 0%, #f8b500 100%);
    color: var(--white);
    transform: rotateY(180deg);
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.service-back-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 260px;
}

.service-back-content h3 {
    font-size: 1.6rem;
    color: var(--white);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.service-back-content p {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    margin: 0;
}

.service-back-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-warm) 0%, var(--primary-dark) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

.service-examples {
    margin-top: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: rgba(212, 165, 116, 0.08);
    flex: 1 1 auto;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0;
    width: 100%;
}

.service-examples img,
.service-examples video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-examples img,
.service-card:hover .service-examples video {
    transform: scale(1.05);
}

/* Process Section */
.process {
    padding: 120px 0;
    background: var(--background-warm);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(232, 213, 183, 0.25) 0%, rgba(232, 213, 183, 0) 55%),
                radial-gradient(circle at 90% 10%, rgba(212, 165, 116, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.process .container {
    position: relative;
    z-index: 2;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.process-step {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(212, 165, 116, 0.12);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.process-step::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.08) 0%, rgba(232, 213, 183, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.process-step:hover::after {
    opacity: 1;
}

.step-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(212, 165, 116, 0.35) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.process-step .step-number {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-dark);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.process-step p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 2;
}

.step-note {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    background: rgba(212, 165, 116, 0.12);
    padding: 0.4rem 0.8rem;
    border-radius: 30px;
    position: relative;
    z-index: 2;
}

.step-note::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    color: var(--primary-dark);
}

/* Portfolio Section */
.portfolio {
    padding: 120px 0;
    background: var(--background-warm);
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 47%, rgba(212, 165, 116, 0.06) 48%, rgba(212, 165, 116, 0.06) 52%, transparent 53%),
        linear-gradient(-45deg, transparent 47%, rgba(232, 213, 183, 0.08) 48%, rgba(232, 213, 183, 0.08) 52%, transparent 53%);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 1;
    animation: subtleMove 20s ease-in-out infinite;
}

.portfolio .container {
    position: relative;
    z-index: 2;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary-warm);
    color: var(--primary-dark);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-warm);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.portfolio-masonry {
    columns: 3;
    column-gap: 2rem;
    margin-top: 2rem;
}

.portfolio-item {
    break-inside: avoid;
    margin-bottom: 2rem;
    background: var(--white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 165, 116, 0.1);
    will-change: transform;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.portfolio-media {
    position: relative;
    overflow: hidden;
}

.portfolio-media img,
.portfolio-media video {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.portfolio-media video {
    object-fit: cover;
    min-height: 250px;
}

.portfolio-item:hover .portfolio-media img,
.portfolio-item:hover .portfolio-media video {
    transform: scale(1.08);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(212, 165, 116, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .play-button {
    opacity: 1;
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.portfolio-info p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.portfolio-category {
    display: inline-block;
    background: var(--secondary-warm);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Team Section */
.team {
    padding: 120px 0;
    background: var(--background-cream);
    position: relative;
    overflow: hidden;
}

.team::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(212, 165, 116, 0.18) 0%, rgba(212, 165, 116, 0.08) 20%, transparent 40%),
        radial-gradient(circle at 75% 75%, rgba(184, 147, 95, 0.15) 0%, rgba(184, 147, 95, 0.06) 18%, transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(232, 213, 183, 0.12) 0%, rgba(232, 213, 183, 0.04) 25%, transparent 45%),
        conic-gradient(from 0deg at 30% 30%, transparent 0deg, rgba(212, 165, 116, 0.04) 90deg, transparent 180deg),
        conic-gradient(from 180deg at 70% 70%, transparent 0deg, rgba(232, 213, 183, 0.05) 90deg, transparent 180deg);
    pointer-events: none;
    z-index: 1;
    animation: teamAnimation 45s linear infinite;
}

.team::before {
    content: '👨‍🎨 👩‍💻 🎬 💡 ⚡ 🌟 🎯 🚀';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 1.5rem;
    opacity: 0.04;
    animation: teamIcons 35s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 2rem;
}

.team .container {
    position: relative;
    z-index: 2;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--white);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 165, 116, 0.1);
    text-align: center;
    will-change: transform;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.team-card {
    position: relative;
    perspective: 1600px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--border-radius-large);
}

.team-card:hover,
.team-card:focus-within {
    transform: translateY(-12px);
}

.team-card-inner {
    position: relative;
    width: 100%;
    min-height: 620px;
    transform-style: preserve-3d;
    transition: transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: var(--border-radius-large);
}

.team-card:hover .team-card-inner,
.team-card:focus-within .team-card-inner {
    transform: rotateY(180deg);
}

.team-card-face {
    position: absolute;
    inset: 0;
    padding: 2.5rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(212, 165, 116, 0.1);
    background: var(--white);
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-height: 100%;
}

.team-card-front {
    justify-content: flex-start;
    gap: 1.75rem;
}

.team-card-back {
    background: linear-gradient(135deg, #fceabb 0%, #f8b500 100%);
    color: var(--white);
    transform: rotateY(180deg);
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.team-back-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 260px;
}

.team-back-content h3 {
    font-size: 2.5rem;
    color: var(--white);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.team-back-content p {
    font-size: 1.2rem;
    color: var(--white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.team-logo-link {
    text-decoration: none;
}

.member-image {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 165, 116, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.member-image:hover .member-overlay {
    opacity: 1;
}

.member-social {
    display: flex;
    gap: 1rem;
}

.member-social a {
    color: var(--white);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.member-social a:hover {
    transform: scale(1.2);
}

.member-role-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.member-role {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.member-description p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: left;
}

/* CTA Banner */
.cta-banner {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(249, 246, 242, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(212, 165, 116, 0.25) 0%, transparent 55%),
                radial-gradient(circle at 80% 80%, rgba(232, 213, 183, 0.25) 0%, transparent 60%);
    opacity: 0.6;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    border-radius: var(--border-radius-large);
    padding: 3.5rem 3rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(212, 165, 116, 0.12);
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    background: rgba(212, 165, 116, 0.12);
    color: var(--primary-dark);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.cta-content h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}

.cta-content p {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.cta-actions .btn {
    min-width: 190px;
}

.cta-highlights {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    list-style: none;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.cta-highlights li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-highlights i {
    color: var(--primary-warm);
    font-size: 0.85rem;
}

/* Commission Section */
.commission {
    padding: 120px 0;
    background: var(--background-warm);
    position: relative;
    overflow: hidden;
}

/* Pricing Section */
.pricing-section {
    margin: 4rem 0;
    text-align: center;
}

.pricing-title {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(212, 165, 116, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
    border: 2px solid var(--primary-warm);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-warm);
    color: var(--white);
    padding: 5px 40px;
    font-size: 0.85rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.price-badge {
    font-size: 0.85rem;
    color: var(--text-medium);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0.5rem 0;
    font-family: 'Playfair Display', serif;
}

.price-desc {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.pricing-features {
    list-style: none;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--text-medium);
}

.pricing-features i {
    color: var(--primary-warm);
    margin-right: 0.8rem;
    font-size: 0.9rem;
    width: 16px;
}

/* Payment Section */
.payment-section {
    margin: 4rem 0;
    text-align: center;
}

.payment-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.payment-description {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

/* QR Container */
.qr-container {
    max-width: 900px;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* QR Card - Main Feature */
.qr-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--background-cream) 100%);
    padding: 3rem;
    border-radius: var(--border-radius-large);
    box-shadow: 0 10px 40px rgba(212, 165, 116, 0.2);
    border: 2px solid rgba(212, 165, 116, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.qr-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.qr-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(212, 165, 116, 0.3);
    border-color: var(--primary-warm);
}

/* QR Image Wrapper */
.qr-image-wrapper {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.universal-qr-code {
    width: 300px;
    height: 300px;
    display: block;
    border-radius: 8px;
}

/* QR Details */
.qr-details {
    text-align: center;
    position: relative;
    z-index: 1;
}

.qr-icon {
    margin-bottom: 1rem;
}

.qr-icon i {
    font-size: 3rem;
    color: var(--primary-warm);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.qr-details h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.upi-id {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 30px;
    display: inline-block;
}

.upi-id strong {
    color: var(--primary-warm);
    font-weight: 600;
}

/* Payment Apps Badges */
.payment-apps {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 1rem;
}

.app-badge {
    background: var(--white);
    color: var(--primary-warm);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1.5px solid var(--primary-warm);
    transition: all 0.3s ease;
}

.app-badge:hover {
    background: var(--primary-warm);
    color: var(--white);
    transform: scale(1.05);
}

/* Alternative UPI Section */
.alternative-upi-section {
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.upi-divider {
    text-align: center;
    margin: 2rem 0 1.5rem;
    position: relative;
}

.upi-divider::before,
.upi-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 165, 116, 0.3), transparent);
}

.upi-divider::before {
    left: 0;
}

.upi-divider::after {
    right: 0;
}

.upi-divider span {
    background: var(--background-cream);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    color: var(--primary-warm);
    font-size: 0.9rem;
    border: 2px solid rgba(212, 165, 116, 0.3);
    display: inline-block;
}

/* Manual UPI Card */
.manual-upi-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border: 2px solid rgba(212, 165, 116, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.manual-upi-card:hover {
    border-color: var(--primary-warm);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.upi-icon {
    margin-bottom: 1rem;
}

.upi-icon i {
    font-size: 2.5rem;
    color: var(--primary-warm);
}

.manual-upi-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.manual-upi-description {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.upi-id-box {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(232, 213, 183, 0.15) 100%);
    padding: 1.2rem 1.5rem;
    border-radius: var(--border-radius);
    border: 2px dashed var(--primary-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.upi-id-label {
    font-weight: 600;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.upi-id-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-warm);
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

.copy-btn {
    background: var(--primary-warm);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.copy-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.copy-btn:active {
    transform: scale(0.98);
}

.copy-btn i {
    font-size: 0.9rem;
}

.upi-hint {
    color: var(--text-medium);
    font-size: 0.85rem;
    margin: 0;
}

.upi-hint i {
    color: var(--primary-warm);
    margin-right: 0.3rem;
}

/* Payment Instructions */
.payment-instructions {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--primary-warm);
    text-align: left;
}

.payment-instructions h4 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.payment-instructions ol {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
}

.payment-instructions ol li {
    counter-increment: step-counter;
    margin-bottom: 1rem;
    padding-left: 2.5rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
}

.payment-instructions ol li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.8rem;
    height: 1.8rem;
    background: var(--primary-warm);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.payment-method {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(212, 165, 116, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.payment-method i {
    font-size: 2.5rem;
    color: var(--primary-warm);
    margin-bottom: 1rem;
}

.payment-method h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.payment-method p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.payment-terms {
    background: var(--background-cream);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-warm);
    margin-bottom: 1.5rem;
}

.payment-terms p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin: 0;
}

/* Alternative Payment Info */
.alternative-payment {
    background: rgba(212, 165, 116, 0.05);
    padding: 1.2rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
}

.alternative-payment p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin: 0;
}

.alternative-payment i {
    color: var(--primary-warm);
    margin-right: 0.5rem;
}

.alternative-payment strong {
    color: var(--text-dark);
}

/* Enhanced Form Styles */
.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(212, 165, 116, 0.2);
}

.form-header i {
    font-size: 3rem;
    color: var(--primary-warm);
    margin-bottom: 1rem;
    display: block;
}

.form-header h3 {
    font-size: 2rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.form-tagline {
    color: var(--text-medium);
    font-size: 1.05rem;
    font-style: italic;
}

.btn-primary.btn-full {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.btn-primary.btn-full:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

.btn-primary.btn-full i {
    font-size: 1rem;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary-warm);
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.5;
    margin-bottom: 0;
}

.form-note {
    background: rgba(212, 165, 116, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    text-align: center;
}

.form-note p {
    margin: 0;
    color: var(--text-medium);
    font-size: 0.9rem;
}

.form-note i {
    color: var(--primary-warm);
    margin-right: 0.5rem;
}

/* Contact Section within Commission */
.contact-section {
    margin: 5rem 0 0 0;
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.05) 0%, rgba(232, 213, 183, 0.08) 100%);
    border-radius: var(--border-radius-large);
}

.contact-header {
    margin-bottom: 3rem;
}

.contact-header i {
    font-size: 3rem;
    color: var(--primary-warm);
    margin-bottom: 1rem;
}

.contact-header h3 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.contact-tagline {
    font-size: 1.1rem;
    color: var(--text-medium);
    font-style: italic;
}

.contact-section h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: var(--border-radius-large);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-warm), var(--accent-peach));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.25);
    border-color: var(--primary-warm);
}

.whatsapp-card:hover .contact-icon {
    background: #25d366;
}

.email-card:hover .contact-icon {
    background: var(--primary-dark);
}

.hours-card:hover .contact-icon {
    background: var(--accent-peach);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--primary-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-icon i {
    font-size: 2rem;
    color: var(--white);
}

.contact-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.contact-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1rem;
    word-break: break-word;
}

.contact-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(212, 165, 116, 0.1);
    color: var(--primary-warm);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.contact-item {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(212, 165, 116, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-item .fa-whatsapp {
    color: #25d366;
}

.contact-item .fa-envelope {
    color: var(--primary-warm);
}

.contact-item .fa-clock {
    color: var(--accent-peach);
}

.contact-item .fa-map-marker-alt {
    color: var(--primary-dark);
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-item small {
    color: var(--text-medium);
    font-size: 0.85rem;
    line-height: 1.4;
}

.commission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 96px,
            rgba(212, 165, 116, 0.08) 98px,
            rgba(212, 165, 116, 0.08) 102px,
            transparent 104px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 96px,
            rgba(232, 213, 183, 0.10) 98px,
            rgba(232, 213, 183, 0.10) 102px,
            transparent 104px
        );
    pointer-events: none;
    z-index: 1;
}

.commission .container {
    position: relative;
    z-index: 2;
}

.commission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.commission-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.benefits-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-medium);
    font-size: 1.05rem;
}

.benefits-list i {
    color: var(--primary-warm);
    margin-right: 1rem;
    font-size: 1.1rem;
    width: 20px;
}

.pricing-info {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.pricing-info h4 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 1.3rem;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.price-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--background-cream);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.price-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-soft);
}

.service-icon-small {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-warm) 0%, var(--primary-dark) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon-small i {
    color: var(--white);
    font-size: 1rem;
}

.service-details {
    flex: 1;
}

.service {
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.25rem;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-light);
}

.price {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.commission-form-container {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.commission-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(212, 165, 116, 0.1);
    width: 100%;
}

.commission-form h3 {
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
    font-size: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(212, 165, 116, 0.2);
    border-radius: var(--border-radius);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--background-cream);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-warm);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.btn-full {
    width: 100%;
    margin-top: 1rem;
    justify-content: center;
    font-size: 1.05rem;
    padding: 16px 28px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #2a2a2a 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 100px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 0%, rgba(212, 165, 116, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 100%, rgba(232, 213, 183, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.footer-brand h3 {
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--primary-warm) 0%, var(--accent-peach) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-tagline {
    color: var(--primary-warm) !important;
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem !important;
    display: block;
}

.footer-contact h4, .footer-section h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
}

.footer-contact h4::after, .footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-warm);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--primary-warm);
    font-size: 1.1rem;
    width: 20px;
}

.footer-email {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: var(--primary-warm);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a:hover {
    color: var(--primary-warm);
    transform: translateX(5px);
}

.footer-cta {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    background: rgba(212, 165, 116, 0.1);
    color: var(--primary-warm) !important;
    border: 1px solid rgba(212, 165, 116, 0.2);
    margin-bottom: 0.5rem;
    text-align: center;
    width: 100%;
    transition: all 0.3s ease !important;
    font-weight: 500;
}

.footer-cta:hover {
    background: var(--primary-warm) !important;
    color: var(--white) !important;
    transform: translateY(-2px) !important;
    border-color: var(--primary-warm);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--primary-warm);
    color: var(--white);
    transform: translateY(-5px);
    border-color: var(--primary-warm);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

.social-links i {
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .portfolio-masonry {
        columns: 2;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .commission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* QR Code Responsive Styles */
    .qr-card {
        padding: 2rem 1.5rem;
    }
    
    .universal-qr-code {
        width: 250px;
        height: 250px;
    }
    
    .qr-details h4 {
        font-size: 1.5rem;
    }
    
    .payment-apps {
        justify-content: center;
    }
    
    .app-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .payment-instructions {
        padding: 1.5rem;
    }
    
    .payment-instructions h4 {
        font-size: 1.2rem;
    }
    
    /* Contact Section Responsive */
    .contact-header h3 {
        font-size: 1.8rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem 1.2rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon i {
        font-size: 1.8rem;
    }
    
    .portfolio-grid,
    .team-grid,
    .tutorials-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .portfolio-filter {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .portfolio-masonry {
        columns: 1;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .commission-form {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* QR Code Mobile Styles */
    .qr-card {
        padding: 1.5rem 1rem;
    }
    
    .universal-qr-code {
        width: 200px;
        height: 200px;
    }
    
    .qr-image-wrapper {
        padding: 1rem;
    }
    
    .qr-icon i {
        font-size: 2.5rem;
    }
    
    .qr-details h4 {
        font-size: 1.3rem;
    }
    
    .upi-id {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }
    
    .payment-apps {
        gap: 0.5rem;
    }
    
    .app-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.7rem;
    }
    
    .payment-instructions {
        padding: 1.2rem;
    }
    
    .payment-instructions h4 {
        font-size: 1.1rem;
    }
    
    .payment-instructions ol li {
        font-size: 0.9rem;
        padding-left: 2rem;
    }
    
    .payment-instructions ol li::before {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.75rem;
    }
    
    /* Form Header Mobile */
    .form-header i {
        font-size: 2.5rem;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-tagline {
        font-size: 0.95rem;
    }
    
    /* Contact Section Mobile */
    .contact-section {
        padding: 2rem 1rem;
    }
    
    .contact-header i {
        font-size: 2.5rem;
    }
    
    .contact-header h3 {
        font-size: 1.6rem;
    }
    
    .contact-tagline {
        font-size: 0.95rem;
    }
    
    .contact-card h4 {
        font-size: 1.1rem;
    }
    
    .contact-value {
        font-size: 0.9rem;
    }
    
    /* Manual UPI Responsive */
    .manual-upi-card {
        padding: 1.5rem 1rem;
    }
    
    .manual-upi-card h4 {
        font-size: 1.2rem;
    }
    
    .upi-id-box {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .upi-id-value {
        font-size: 1rem;
    }
    
    .copy-btn {
        width: 100%;
        justify-content: center;
    }
}

.footer-brand p {
    line-height: 1.7;
    color: rgba(232, 213, 183, 0.8);
}

.footer-contact h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: rgba(232, 213, 183, 0.8);
}

.footer-contact i {
    margin-right: 0.8rem;
    color: var(--primary-warm);
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--primary-warm);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-warm);
    color: var(--white);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid var(--primary-warm);
    position: relative;
}

.social-links a:hover {
    transform: translateY(-3px);
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: var(--shadow-soft);
}

.social-links a i {
    color: var(--white) !important;
    font-size: 1.1rem;
    font-weight: 600;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(232, 213, 183, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-warm);
}

#back-to-top-btn, .back-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: var(--primary-warm);
    color: white;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 18px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.3s, opacity 0.3s, visibility 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
}

#back-to-top-btn.visible, .back-to-top.visible {
    display: flex;
    opacity: 1;
    visibility: visible;
}

#back-to-top-btn:hover, .back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Sparkle Star Animation */
.sparkle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
}

.star {
    position: absolute;
    color: #FFD700;
    text-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700;
    will-change: transform;
}

.sparkle {
    position: absolute;
    opacity: 0;
    animation: sparkle-fade 1.2s ease-out;
    will-change: transform, opacity;
}

.circle-sparkle {
    border-radius: 50%;
}

.star-sparkle {
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

@keyframes sparkle-fade {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0);
    }
}

/* Page Navigation Section */
.page-navigation {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--background-warm) 0%, var(--background-cream) 100%);
    position: relative;
    overflow: hidden;
}

.nav-section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.page-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.page-nav-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 165, 116, 0.15);
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.page-nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.05) 0%, rgba(249, 246, 242, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.page-nav-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-warm);
}

.page-nav-card:hover::before {
    opacity: 1;
}

.page-nav-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(212, 165, 116, 0.35) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.page-nav-card:hover .page-nav-icon {
    transform: scale(1.1) rotate(5deg);
}

.page-nav-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.page-nav-card p {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.nav-arrow {
    font-size: 1.2rem;
    color: var(--primary-warm);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.nav-arrow::before {
    content: 'Explore';
    font-size: 0.9rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.page-nav-card:hover .nav-arrow {
    transform: translateX(5px);
}

.page-nav-card:hover .nav-arrow::before {
    opacity: 1;
    transform: translateX(0);
}

/* Legal/Policy Pages Styles */
.legal-content {
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 60px;
    background: var(--background-cream);
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.legal-header h1 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.legal-subtitle {
    color: var(--text-medium);
    font-size: 1rem;
    font-style: italic;
}

.legal-body {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-soft);
    /* Prevent content overflow */
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.legal-body h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-warm);
    padding-bottom: 0.5rem;
}

.legal-body h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-body p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.legal-body ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-body li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.contact-info {
    background: var(--background-warm);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-warm);
    text-decoration: underline;
}

.legal-navigation {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 165, 116, 0.2);
}

/* Responsive Policy Pages */
@media (max-width: 768px) {
    .legal-content {
        padding-top: 80px;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-body {
        padding: 2rem 1.5rem;
    }
    
    .legal-body h2 {
        font-size: 1.5rem;
    }
    
    .legal-body h3 {
        font-size: 1.2rem;
    }
    
    .legal-navigation {
        flex-direction: column;
    }
    
    .legal-navigation .btn {
        width: 100%;
        justify-content: center;
    }
}

/* International Section Styles */
.international-section {
    margin: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 2rem;
    border-radius: var(--border-radius-large);
}

.international-section h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.international-section .section-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.international-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.international-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.international-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.international-card .card-icon {
    font-size: 3rem;
    color: var(--primary-warm);
    margin-bottom: 1.5rem;
}

.international-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.payment-methods-list {
    list-style: none;
    padding: 0;
}

.payment-methods-list li {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--background-warm);
    border-radius: 8px;
}

.payment-methods-list li strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.payment-methods-list li p {
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

.currency-info {
    color: var(--text-medium);
}

.currency-info p {
    margin-bottom: 1rem;
}

.currency-converter {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--background-warm);
    border-radius: 8px;
}

.currency-converter h5 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.currency-table {
    width: 100%;
    border-collapse: collapse;
}

.currency-table tr {
    border-bottom: 1px solid rgba(212, 165, 116, 0.2);
}

.currency-table td {
    padding: 0.75rem;
    color: var(--text-medium);
}

.currency-table td:first-child {
    font-weight: 600;
    color: var(--primary-dark);
}

.currency-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.delivery-intro {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

.delivery-list {
    list-style: none;
    padding: 0;
}

.delivery-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(212, 165, 116, 0.1);
    color: var(--text-medium);
}

.delivery-list li:last-child {
    border-bottom: none;
}

.delivery-list li strong {
    color: var(--text-dark);
}

.delivery-bonus {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #d4edda;
    border-left: 4px solid #28a745;
    border-radius: 5px;
}

.delivery-bonus p {
    margin: 0;
    color: #155724;
}

.shipping-intro {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

.shipping-options {
    margin-top: 1.5rem;
}

.shipping-tier {
    margin-bottom: 1.5rem;
}

.shipping-tier h5 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.shipping-tier ul {
    list-style: none;
    padding: 0;
}

.shipping-tier li {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: var(--background-warm);
    border-radius: 5px;
    color: var(--text-medium);
}

.shipping-tier li strong {
    color: var(--text-dark);
}

.shipping-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 5px;
}

.shipping-note p {
    margin: 0;
    color: #856404;
}

.timezone-info h5 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.timezone-info ul {
    list-style: none;
    padding: 0;
}

.timezone-info li {
    padding: 0.5rem 0;
    color: var(--text-medium);
}

.timezone-note {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--background-warm);
    border-radius: 5px;
    color: var(--text-medium);
}

.legal-info h5 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-info ul {
    list-style: none;
    padding: 0;
}

.legal-info li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
}

.legal-info li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-warm);
    font-weight: bold;
}

.legal-note {
    margin-top: 1rem;
    padding: 1rem;
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    border-radius: 5px;
    color: #0d47a1;
}

.international-faq {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
}

.international-faq h4 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.faq-item-int {
    padding: 1.5rem;
    background: var(--background-warm);
    border-radius: 8px;
    border-left: 4px solid var(--primary-warm);
}

.faq-item-int strong {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.faq-item-int p {
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

.international-cta {
    margin-top: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-warm) 0%, var(--primary-dark) 100%);
    border-radius: var(--border-radius);
    text-align: center;
    color: var(--white);
}

.international-cta h4 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.international-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary-dark);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive International Section */
@media (max-width: 768px) {
    .international-section {
        padding: 2rem 1rem;
    }
    
    .international-section h3 {
        font-size: 2rem;
    }
    
    .international-grid {
        grid-template-columns: 1fr;
    }
    
    .international-card {
        padding: 1.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .international-cta {
        padding: 2rem 1rem;
    }
    
    .contact-options {
        flex-direction: column;
    }
    
    .contact-btn {
        width: 100%;
    }
}