@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Cormorant+Garamond:wght@300;400;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
    --primary-color: #0f172a;
    --secondary-color: #d4e4ff;
    --accent-color: #ff6fb5;
    --accent-color-2: #7de2d1;
    --accent-color-3: #ffd166;
    --accent-color-4: #c77dff;
    --text-dark: #e9eef9;
    --text-light: #b8c4e3;
    --bg-light: #0b1021;
    --white: #f8fbff;
    --shadow-soft: 0 12px 34px rgba(15, 23, 42, 0.12);
    --shadow-medium: 0 16px 48px rgba(15, 23, 42, 0.16);
    --shadow-strong: 0 24px 64px rgba(15, 23, 42, 0.2);
    --shadow-artistic: 0 20px 60px rgba(255, 111, 181, 0.25), 0 0 40px rgba(125, 226, 209, 0.15);
    --border-radius: 22px;
    --border-radius-artistic: 30px 8px 30px 8px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-artistic: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    --spacing-xs: 16px;
    --spacing-sm: 32px;
    --spacing-md: 64px;
    --spacing-lg: 96px;
    --spacing-xl: 128px;
}

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

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes artistic-glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 111, 181, 0.3),
                    0 0 40px rgba(125, 226, 209, 0.2),
                    0 0 60px rgba(199, 125, 255, 0.1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 111, 181, 0.5),
                    0 0 60px rgba(125, 226, 209, 0.4),
                    0 0 90px rgba(199, 125, 255, 0.3);
    }
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: 
        radial-gradient(ellipse 120% 80% at 20% 20%, rgba(255, 111, 181, 0.12), transparent 50%),
        radial-gradient(ellipse 100% 60% at 80% 10%, rgba(125, 226, 209, 0.1), transparent 45%),
        radial-gradient(ellipse 90% 70% at 50% 80%, rgba(199, 125, 255, 0.08), transparent 50%),
        radial-gradient(ellipse 80% 50% at 10% 60%, rgba(255, 209, 102, 0.06), transparent 40%),
        linear-gradient(135deg, #0a0f1d 0%, #0f1525 50%, #0a0f1d 100%);
    background-size: 100% 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 111, 181, 0.03) 2px, rgba(255, 111, 181, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(125, 226, 209, 0.02) 2px, rgba(125, 226, 209, 0.02) 4px);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

header {
    background: linear-gradient(135deg, rgba(10, 15, 29, 0.95), rgba(15, 23, 42, 0.92));
    backdrop-filter: blur(16px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 
                0 0 0 1px rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), var(--accent-color-2), transparent);
    opacity: 0.5;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: var(--transition-artistic);
    position: relative;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-color-2), var(--accent-color-4));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 4s ease infinite;
}

.logo:hover {
    transform: translateY(-3px) scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(255, 111, 181, 0.4));
}

nav ul {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--accent-color-2);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: rgba(248, 251, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
    transition: var(--transition);
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background: var(--accent-color-2);
    border-radius: 2px;
    transition: var(--transition);
}

.burger-menu:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 111, 181, 0.6);
    box-shadow: 0 14px 36px rgba(255, 111, 181, 0.24);
}

.burger-menu:hover span {
    background: var(--accent-color);
}

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

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.hero {
    padding: var(--spacing-xl) 0;
    background: 
        radial-gradient(ellipse 120% 100% at 50% 0%, rgba(255, 111, 181, 0.2), transparent 60%),
        radial-gradient(ellipse 100% 80% at 0% 100%, rgba(125, 226, 209, 0.18), transparent 55%),
        radial-gradient(ellipse 80% 60% at 100% 50%, rgba(199, 125, 255, 0.12), transparent 50%),
        linear-gradient(160deg, #0a1024 0%, #111830 60%, #0a1024 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        repeating-conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(255, 111, 181, 0.03) 5deg, transparent 10deg),
        repeating-conic-gradient(from 45deg at 50% 50%, transparent 0deg, rgba(125, 226, 209, 0.02) 5deg, transparent 10deg);
    animation: float 20s linear infinite;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
    letter-spacing: -0.5px;
    text-shadow: 0 4px 20px rgba(255, 111, 181, 0.3),
                 0 8px 40px rgba(125, 226, 209, 0.2);
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), var(--accent-color-2), transparent);
    border-radius: 2px;
    opacity: 0.6;
}

.hero p {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(248, 251, 255, 0.82);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.btn {
    display: inline-block;
    padding: 20px 48px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-color-2), var(--accent-color-4));
    background-size: 200% 200%;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: var(--border-radius-artistic);
    font-weight: 700;
    font-size: 1.0625rem;
    transition: var(--transition-artistic);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-artistic);
    position: relative;
    overflow: hidden;
    animation: gradient-shift 3s ease infinite;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 1px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-6px) scale(1.05) rotate(1deg);
    box-shadow: 0 24px 60px rgba(255, 111, 181, 0.5),
                0 0 40px rgba(125, 226, 209, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(248, 251, 255, 0.6);
    box-shadow: none;
}

.btn-secondary:hover {
    background: rgba(248, 251, 255, 0.08);
    color: var(--white);
    border-color: var(--white);
}

section {
    padding: var(--spacing-lg) 0;
    position: relative;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--white);
    letter-spacing: 0.5px;
    position: relative;
    text-shadow: 0 2px 15px rgba(255, 111, 181, 0.2);
}

.section-title::before,
.section-title::after {
    font-family: 'bootstrap-icons';
    content: '\F4CE';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color-2);
    font-size: 1.2rem;
    opacity: 0.6;
    font-weight: normal;
    font-style: normal;
}

.section-title::before {
    left: -40px;
}

.section-title::after {
    right: -40px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: rgba(248, 251, 255, 0.78);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
}

.section-header .section-title,
.section-header .section-subtitle {
    text-align: left;
    margin: 0 0 var(--spacing-xs) 0;
}

.section-note {
    max-width: 360px;
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    color: rgba(248, 251, 255, 0.74);
    box-shadow: var(--shadow-soft);
}

.eyebrow {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--accent-color-2), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.eyebrow::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color-2), transparent);
}

.highlight-grid,
.value-grid,
.bundle-grid,
.story-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.highlight-card,
.value-card,
.bundle-card,
.story-card,
.contact-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(248, 251, 255, 0.03));
    border-radius: var(--border-radius-artistic);
    padding: var(--spacing-md);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-artistic);
    position: relative;
    overflow: hidden;
}

.highlight-card::before,
.value-card::before,
.bundle-card::before,
.story-card::before,
.contact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 111, 181, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.6s;
}

.highlight-card:hover::before,
.value-card:hover::before,
.bundle-card:hover::before,
.story-card:hover::before,
.contact-card:hover::before {
    opacity: 1;
}

.highlight-card:hover,
.value-card:hover,
.bundle-card:hover,
.story-card:hover,
.contact-card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: var(--shadow-artistic);
    border-color: rgba(255, 111, 181, 0.4);
    animation: artistic-glow 2s ease-in-out infinite;
}

.highlight-card h3,
.value-card h3,
.bundle-card h3,
.story-card h3,
.contact-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--white);
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

.highlight-card p,
.value-card p,
.bundle-card p,
.story-card p,
.contact-card p {
    color: rgba(248, 251, 255, 0.72);
    line-height: 1.75;
}

.highlight-meta,
.bundle-meta,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.tag-pill {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.tag-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.4s;
}

.tag-pill:hover::before {
    left: 100%;
}

.tag-pill:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color-2);
    box-shadow: 0 4px 12px rgba(125, 226, 209, 0.3);
}

.meta-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-color-2), var(--accent-color-4));
    background-size: 200% 200%;
    color: var(--primary-color);
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    animation: gradient-shift 3s ease infinite;
    box-shadow: 0 4px 15px rgba(255, 111, 181, 0.3);
    transition: var(--transition);
}

.meta-badge:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 6px 20px rgba(255, 111, 181, 0.5);
}

.meta-badge.meta-alt {
    background: linear-gradient(135deg, #7de2d1, #ff6fb5, #c77dff);
    background-size: 200% 200%;
}

.feature-list {
    list-style: none;
    margin: var(--spacing-xs) 0 0 0;
    padding: 0;
}

.feature-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: rgba(248, 251, 255, 0.74);
}

.feature-list li::before {
    font-family: 'bootstrap-icons';
    content: '\F4CE';
    position: absolute;
    left: 0;
    color: var(--accent-color-2);
    font-size: 0.9rem;
    animation: float 3s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.2s);
    font-weight: normal;
    font-style: normal;
}

.collections,
.service-tiers,
.stories,
.contact-assurance {
    background: 
        radial-gradient(ellipse 100% 60% at 10% 20%, rgba(125, 226, 209, 0.1), transparent 40%),
        radial-gradient(ellipse 80% 50% at 90% 80%, rgba(255, 111, 181, 0.08), transparent 35%),
        radial-gradient(ellipse 60% 40% at 50% 50%, rgba(199, 125, 255, 0.06), transparent 30%);
    position: relative;
}

.collections::before,
.service-tiers::before,
.stories::before,
.contact-assurance::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(255, 111, 181, 0.02) 50px, rgba(255, 111, 181, 0.02) 52px);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.service-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(248, 251, 255, 0.03));
    border-radius: var(--border-radius-artistic);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-artistic);
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(125, 226, 209, 0.2), transparent 70%);
    border-radius: 0 0 0 100%;
    opacity: 0;
    transition: opacity 0.6s;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px) rotate(-1deg);
    box-shadow: var(--shadow-artistic);
    border-color: rgba(255, 111, 181, 0.4);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-sm);
    filter: saturate(1.1);
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--white);
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: rgba(248, 251, 255, 0.7);
    line-height: 1.8;
}

.features {
    background: radial-gradient(circle at 30% 40%, rgba(125, 226, 209, 0.14), transparent 40%), linear-gradient(120deg, #0a0f1d, #0f172a 55%, #0a0f1d);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.feature-item {
    text-align: center;
    padding: var(--spacing-md);
    color: var(--white);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto var(--spacing-sm);
    background: linear-gradient(135deg, var(--accent-color), var(--accent-color-2), var(--accent-color-4));
    background-size: 200% 200%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-artistic);
    font-size: 2.2rem;
    color: var(--primary-color);
    animation: gradient-shift 4s ease infinite, float 4s ease-in-out infinite;
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.feature-icon i {
    font-size: 2.2rem;
    line-height: 1;
    display: block;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-color-2));
    opacity: 0.3;
    filter: blur(10px);
    z-index: -1;
    animation: artistic-glow 3s ease-in-out infinite;
}

.feature-item h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--white);
}

.feature-item p {
    color: rgba(248, 251, 255, 0.7);
    line-height: 1.8;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.gallery-item {
    border-radius: var(--border-radius-artistic);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-artistic);
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 111, 181, 0.1), rgba(125, 226, 209, 0.1));
    opacity: 0;
    transition: opacity 0.6s;
    z-index: 1;
    pointer-events: none;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: var(--shadow-artistic);
    border-color: rgba(255, 111, 181, 0.5);
    z-index: 2;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.contact-form {
    max-width: 600px;
    margin: var(--spacing-md) auto 0;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(248, 251, 255, 0.04));
    padding: var(--spacing-md);
    border-radius: var(--border-radius-artistic);
    box-shadow: var(--shadow-soft);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(125, 226, 209, 0.1), transparent 70%);
    pointer-events: none;
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(255, 111, 181, 0.2),
                0 0 20px rgba(125, 226, 209, 0.3);
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: var(--spacing-sm);
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-group label {
    margin: 0;
    font-weight: 400;
    font-size: 0.9375rem;
    line-height: 1.6;
}

footer {
    background: linear-gradient(160deg, #0a0f1d, #0f172a 60%, #0a0f1d);
    color: var(--white);
    padding: 18px 0 12px;
    margin-top: var(--spacing-md);
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color-2), var(--accent-color), transparent);
    opacity: 0.6;
}

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

.footer-section h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.6;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.content-page {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-sm);
}

.content-page h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
    letter-spacing: 0.5px;
    overflow-wrap: anywhere;
    hyphens: auto;
    text-shadow: 0 2px 15px rgba(255, 111, 181, 0.2);
    position: relative;
}

.content-page h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-color-2));
    border-radius: 2px;
}

.content-page h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
    color: var(--white);
    letter-spacing: 0.3px;
    position: relative;
    padding-left: 20px;
}

.content-page h2::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-color-2);
    font-size: 1.2rem;
}

.content-page p {
    margin-bottom: var(--spacing-sm);
    color: rgba(248, 251, 255, 0.72);
    line-height: 1.8;
}

.content-page ul,
.content-page ol {
    margin-left: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    color: rgba(248, 251, 255, 0.72);
    line-height: 1.8;
}

.content-page li {
    margin-bottom: 8px;
}

.thankyou-page {
    text-align: center;
    padding: var(--spacing-xl) 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou-content {
    max-width: 600px;
    margin: 0 auto;
}

.thankyou-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.thankyou-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

@media (max-width: 768px) {
    .header-content {
        position: relative;
        gap: var(--spacing-xs);
    }

    nav {
        flex: 0 0 auto;
    }

    nav ul {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 15, 29, 0.96);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-medium);
        transform: translateX(-100%);
        transition: var(--transition);
        z-index: 999;
        display: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    nav ul.active {
        transform: translateX(0);
        display: flex;
    }

    .burger-menu {
        display: flex;
        margin-left: auto;
        flex-shrink: 0;
    }

    .logo {
        font-size: 1.35rem;
        max-width: 60%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .services-grid,
    .features-grid,
    .gallery-grid,
    .highlight-grid,
    .value-grid,
    .bundle-grid,
    .story-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .section-title::before,
    .section-title::after {
        display: none;
    }

    section {
        padding: var(--spacing-md) 0;
    }

    .hero {
        padding: var(--spacing-md) 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-md: 48px;
        --spacing-lg: 64px;
        --spacing-xl: 80px;
    }

    .container {
        padding: 0 var(--spacing-xs);
    }

    .btn {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

