/*
Theme Name: DPM Beauty Pageant 2026
Theme URI: https://dpmbeauty.com
Author: DPM Entertainment
Author URI: https://dpmbeauty.com
Description: Official WordPress theme for Mr, Miss, Mrs & Miss Teen India 2026 – a premier national beauty pageant by DPM Entertainment. Elegant, responsive, and conversion-optimized.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dpm-beauty-2026
Tags: one-page, beauty, pageant, entertainment, responsive, custom-colors, custom-logo, featured-images
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
    --color-gold:       #C9A84C;
    --color-gold-light: #E8C96A;
    --color-gold-dark:  #A07830;
    --color-black:      #0A0A0A;
    --color-dark:       #111111;
    --color-darker:     #0D0D0D;
    --color-white:      #FFFFFF;
    --color-offwhite:   #F9F5EE;
    --color-text:       #E8E0D0;
    --color-muted:      #9A8F82;
    --color-rose:       #C04F6E;
    --color-rose-light: #E06080;

    --font-display:  'Playfair Display', Georgia, serif;
    --font-heading:  'Cormorant Garamond', Georgia, serif;
    --font-body:     'Jost', 'Helvetica Neue', sans-serif;
    --font-accent:   'Cinzel Decorative', serif;

    --section-pad:   100px 0;
    --container-w:   1200px;
    --radius:        4px;
    --transition:    0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-gold:   0 0 40px rgba(201,168,76,0.25);
    --shadow-card:   0 8px 40px rgba(0,0,0,0.45);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-dark);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-gold-light); }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-white);
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; font-family: var(--font-body); font-weight: 600; }

p { margin-bottom: 1.2em; }
p:last-child { margin-bottom: 0; }

.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-muted);
    max-width: 640px;
    margin-bottom: 3rem;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow { max-width: 820px; }

.section { padding: var(--section-pad); position: relative; }

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    text-decoration: none;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.08);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}
.btn:hover::before { transform: translateX(0); }

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-black);
    box-shadow: 0 4px 24px rgba(201,168,76,0.35);
}
.btn-primary:hover {
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201,168,76,0.5);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--color-gold);
    color: var(--color-gold);
}
.btn-outline:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.btn-large { padding: 18px 48px; font-size: 0.9rem; }

/* ============================================================
   DIVIDERS & DECORATORS
   ============================================================ */
.gold-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    margin: 1.5rem 0;
}
.gold-line--center { margin-left: auto; margin-right: auto; }

.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.3;
    margin: 0;
}

/* ============================================================
   STICKY HEADER
   ============================================================ */
#masthead {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

#masthead.scrolled {
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 40px rgba(0,0,0,0.6);
    border-bottom: 1px solid rgba(201,168,76,0.15);
}

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

.site-branding {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.site-logo img { height: 52px; width: auto; }

.site-title-text {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-decoration: none;
    display: block;
}
.site-title-text:hover { color: var(--color-gold-light); }

.site-tagline {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-muted);
}

/* Primary Nav */
.primary-navigation { display: flex; align-items: center; gap: 2rem; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-menu li a {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text);
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: all var(--transition);
    display: block;
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
    color: var(--color-gold);
    background: rgba(201,168,76,0.08);
}

.header-cta { flex-shrink: 0; }

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-gold);
    transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--color-black);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: var(--hero-bg-url, linear-gradient(135deg, #0a0a0a 0%, #1a0a00 50%, #0a0a0a 100%));
    background-size: cover;
    background-position: center;
    opacity: 0.45;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10,10,10,0.92) 0%,
        rgba(10,10,10,0.6) 50%,
        rgba(10,10,10,0.85) 100%
    );
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0;
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0%   { transform: translateY(100vh) scale(0); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 0.6; }
    100% { transform: translateY(-20px) scale(1); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.hero-text .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--color-gold);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.hero-text .eyebrow::before,
.hero-text .eyebrow::after {
    content: '';
    height: 1px;
    width: 40px;
    background: var(--color-gold);
    opacity: 0.5;
}

.hero-title {
    font-family: var(--font-accent);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-title .year {
    font-family: var(--font-body);
    font-size: 0.9em;
    font-weight: 300;
    color: var(--color-muted);
    letter-spacing: 0.2em;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--color-muted);
    margin: 2rem 0 2.5rem;
    max-width: 480px;
    line-height: 1.8;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201,168,76,0.15);
}
.stat-item .num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}
.stat-item .label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-top: 4px;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-crown-frame {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 3/4;
    position: relative;
    margin: 0 auto;
}

.hero-crown-frame::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--color-gold), transparent, var(--color-gold));
    border-radius: 6px;
    z-index: 0;
}

.hero-crown-frame::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--color-dark);
    border-radius: 4px;
    z-index: 1;
}

.hero-image {
    position: absolute;
    inset: 2px;
    z-index: 2;
    object-fit: cover;
    border-radius: 4px;
    width: 100%;
    height: 100%;
}

.crown-icon {
    font-size: 5rem;
    text-align: center;
    padding: 40px;
    color: var(--color-gold);
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.floating-badge {
    position: absolute;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-black);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}

.badge-top { top: -16px; right: 20px; }
.badge-bottom { bottom: -16px; left: 20px; }

/* ============================================================
   SCROLL INDICATOR
   ============================================================ */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 5;
    opacity: 0.6;
}
.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
}
.scroll-mouse {
    width: 22px;
    height: 34px;
    border: 2px solid var(--color-gold);
    border-radius: 12px;
    position: relative;
}
.scroll-mouse::before {
    content: '';
    width: 3px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDown 1.8s ease infinite;
}
@keyframes scrollDown {
    0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ============================================================
   CATEGORIES SECTION
   ============================================================ */
#categories {
    background: var(--color-darker);
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.category-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    group: true;
    transition: transform var(--transition);
}
.category-card:hover { transform: translateY(-8px); }

.category-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}
.category-card:hover .category-card-bg { transform: scale(1.08); }

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10,10,10,0.95) 0%,
        rgba(10,10,10,0.4) 50%,
        rgba(10,10,10,0.1) 100%
    );
}

.category-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

.category-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 0.3rem;
}

.category-age {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.category-border {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201,168,76,0);
    border-radius: 6px;
    transition: border-color var(--transition);
}
.category-card:hover .category-border {
    border-color: rgba(201,168,76,0.5);
}

/* ============================================================
   ABOUT / BENEFITS SECTION
   ============================================================ */
#about {
    background: var(--color-dark);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-wrap {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
}

.about-image-wrap img {
    width: 100%;
    border-radius: 6px;
}

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.05));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(201,168,76,0.3);
    border: 1px solid rgba(201,168,76,0.15);
}

.about-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(201,168,76,0.2);
    border-radius: 4px;
    z-index: -1;
}

.about-accent-2 {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 4px;
    z-index: -1;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: rgba(201,168,76,0.04);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: var(--radius);
    transition: all var(--transition);
}
.benefit-item:hover {
    background: rgba(201,168,76,0.08);
    border-color: rgba(201,168,76,0.25);
    transform: translateX(6px);
}

.benefit-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    color: var(--color-white);
    margin-bottom: 0.25rem;
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
}
.benefit-text p {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin: 0;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
#features {
    background: linear-gradient(180deg, var(--color-darker) 0%, var(--color-black) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    padding: 2.5rem 2rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 6px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
    background: rgba(201,168,76,0.05);
    border-color: rgba(201,168,76,0.25);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    display: block;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.feature-desc {
    font-size: 0.92rem;
    color: var(--color-muted);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
#gallery {
    background: var(--color-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 12px;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
}
.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    min-height: 220px;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-placeholder {
    width: 100%;
    min-height: 220px;
    background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.03));
    border: 1px solid rgba(201,168,76,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(201,168,76,0.2);
}

.gallery-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
    background: var(--color-darker);
    overflow: hidden;
}

.testimonials-wrapper {
    margin-top: 3rem;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 1rem;
}
.testimonials-track::-webkit-scrollbar { display: none; }

.testimonial-card {
    min-width: 380px;
    padding: 2.5rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 8px;
    scroll-snap-align: start;
    flex-shrink: 0;
    transition: border-color var(--transition);
}
.testimonial-card:hover { border-color: rgba(201,168,76,0.3); }

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: var(--color-gold);
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.testimonial-text {
    font-size: 0.98rem;
    color: var(--color-text);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--color-gold);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
    line-height: 1;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-black);
    font-weight: 700;
    overflow: hidden;
    flex-shrink: 0;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }

.author-info .name {
    font-weight: 600;
    color: var(--color-white);
    font-size: 0.95rem;
}
.author-info .title {
    font-size: 0.8rem;
    color: var(--color-gold);
    margin-top: 2px;
}

.testimonials-nav {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
    justify-content: center;
}

.t-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(201,168,76,0.3);
    background: transparent;
    color: var(--color-gold);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.t-btn:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
#faq {
    background: var(--color-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.faq-intro .section-subtitle { margin-bottom: 2rem; }

.faq-contact-card {
    padding: 2rem;
    background: rgba(201,168,76,0.06);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 8px;
    margin-top: 2rem;
}
.faq-contact-card h4 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}
.faq-contact-card p { font-size: 0.9rem; color: var(--color-muted); margin-bottom: 1rem; }

.faq-list { display: flex; flex-direction: column; gap: 1rem; }

.faq-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--transition);
}
.faq-question:hover { color: var(--color-gold); }
.faq-question .icon {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-gold);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}
.faq-item.active .faq-question .icon { transform: rotate(45deg); background: var(--color-gold); color: var(--color-black); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }

.faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.92rem;
    color: var(--color-muted);
    line-height: 1.8;
}

/* ============================================================
   REGISTRATION / CTA SECTION
   ============================================================ */
#register {
    background: linear-gradient(135deg, var(--color-black) 0%, rgba(201,168,76,0.05) 50%, var(--color-black) 100%);
    position: relative;
    overflow: hidden;
}

#register::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.register-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.register-content .section-title { margin-bottom: 1.5rem; }
.register-content .section-subtitle { margin-bottom: 2.5rem; }

.register-form-wrap {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 12px;
    padding: 3rem;
    margin-top: 3rem;
    text-align: left;
}

.wpcf7 .wpcf7-form,
.register-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group--full { grid-column: 1 / -1; }

.form-group label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.form-group input,
.form-group select,
.form-group textarea,
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: var(--radius);
    padding: 12px 16px;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition);
    outline: none;
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    border-color: var(--color-gold);
    background: rgba(255,255,255,0.07);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group select option { background: var(--color-dark); }
.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit { grid-column: 1 / -1; text-align: center; margin-top: 0.5rem; }

/* WPForms overrides */
.wpforms-container .wpforms-form .wpforms-field-container { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.wpforms-container .wpforms-field { margin-bottom: 0; }
.wpforms-container .wpforms-submit-container { text-align: center; margin-top: 1rem; }
.wpforms-container input[type="submit"] {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: var(--color-black);
    border: none;
    padding: 14px 40px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
}
.wpforms-container input[type="submit"]:hover { opacity: 0.88; transform: translateY(-2px); }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
#contact {
    background: var(--color-darker);
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
    align-items: start;
}

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

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.contact-item-icon {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--color-gold);
    flex-shrink: 0;
}
.contact-item-text .label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-muted); margin-bottom: 4px; }
.contact-item-text .value { color: var(--color-white); font-size: 0.95rem; }
.contact-item-text a.value:hover { color: var(--color-gold); }

.social-links { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-muted);
    font-size: 0.9rem;
    transition: all var(--transition);
    text-decoration: none;
}
.social-link:hover { border-color: var(--color-gold); color: var(--color-gold); background: rgba(201,168,76,0.08); }

/* ============================================================
   FOOTER
   ============================================================ */
#colophon {
    background: var(--color-black);
    border-top: 1px solid rgba(201,168,76,0.1);
}

.footer-main {
    padding: 60px 0 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand .site-title-text { font-size: 1.3rem; margin-bottom: 0.5rem; display: inline-block; }
.footer-tagline { font-size: 0.85rem; color: var(--color-muted); margin-top: 0.5rem; line-height: 1.7; }

.footer-col h5 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
}

.footer-menu { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-menu a {
    font-size: 0.88rem;
    color: var(--color-muted);
    transition: color var(--transition);
}
.footer-menu a:hover { color: var(--color-gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p { font-size: 0.82rem; color: var(--color-muted); margin: 0; }

.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.82rem; color: var(--color-muted); }
.footer-bottom-links a:hover { color: var(--color-gold); }

/* ============================================================
   WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(37,211,102,0.4);
    z-index: 999;
    transition: all var(--transition);
    animation: pulse-wa 2.5s ease infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}
@keyframes pulse-wa {
    0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,0.4); }
    50%      { box-shadow: 0 4px 36px rgba(37,211,102,0.7); }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 96px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1rem;
    cursor: pointer;
    z-index: 998;
    transition: all var(--transition);
    opacity: 0;
    pointer-events: none;
    text-decoration: none;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--color-gold); color: var(--color-black); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    :root { --section-pad: 80px 0; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root { --section-pad: 60px 0; }

    .nav-toggle { display: flex; }
    .primary-navigation {
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(10,10,10,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 999;
    }
    .primary-navigation.open { transform: translateX(0); }
    .nav-menu { flex-direction: column; gap: 0.5rem; }
    .nav-menu li a { font-size: 1.1rem; padding: 12px 24px; }
    .header-cta { display: none; }

    .hero-content { grid-template-columns: 1fr; gap: 2rem; padding: 120px 0 60px; }
    .hero-visual { order: -1; }
    .hero-crown-frame { max-width: 280px; aspect-ratio: 1/1; }
    .hero-stats { gap: 1.5rem; }

    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .faq-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .register-form-wrap { padding: 2rem 1.5rem; }
    .wpcf7 .wpcf7-form,
    .register-form { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: 1fr 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item--wide, .gallery-item--tall { grid-column: span 1; grid-row: span 1; }
    .testimonial-card { min-width: 300px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
    .categories-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 1rem; }
    .register-form-wrap { padding: 1.5rem 1rem; }
}

/* ============================================================
   WP CORE CLASSES
   ============================================================ */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { display: block; margin: 0 auto; }
.wp-caption { max-width: 100%; }
.sticky { /* WordPress sticky post */ }
.bypostauthor { /* Author highlight */ }

/* Gutenberg compatibility */
.wp-block-image img { border-radius: var(--radius); }
