/* ============================================
   Veislustarfsmenn - Main Stylesheet
   Dark, elegant, event/banquet aesthetic
   ============================================ */

/* --- CSS Variables --- */
:root {
    /* Colors */
    --color-bg: #0a0a0a;
    --color-bg-alt: #111111;
    --color-bg-card: #161616;
    --color-bg-card-hover: #1c1c1c;
    --color-surface: #1a1a1a;
    --color-border: #2a2a2a;
    --color-border-light: #333333;

    --color-text: #e8e8e8;
    --color-text-muted: #999999;
    --color-text-light: #cccccc;

    --color-gold: #c9a96e;
    --color-gold-light: #d4b87a;
    --color-gold-dark: #b8944f;

    --color-white: #ffffff;
    --color-black: #000000;

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;
    --container-padding: 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 20px rgba(201, 169, 110, 0.15);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color-scheme: dark;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    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-fast);
}

a:hover {
    color: var(--color-gold-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.3;
    color: var(--color-white);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
    margin-bottom: 1em;
    color: var(--color-text-light);
}

ul { list-style: none; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-black);
}

.btn-primary:hover {
    background: var(--color-gold-light);
    color: var(--color-black);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
}

.btn-outline:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-black);
}

.btn-white:hover {
    background: var(--color-gold);
    transform: translateY(-2px);
}

/* --- Section Titles --- */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* --- Gold Divider --- */
.divider {
    width: 60px;
    height: 2px;
    background: var(--color-gold);
    margin: 24px 0;
}

.divider-center {
    margin: 24px auto;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-base);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.site-logo img {
    height: 50px;
    width: auto;
    transition: height var(--transition-base);
}

.scrolled .site-logo img {
    height: 40px;
}

/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-menu li a {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-white);
    padding: 8px 0;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width var(--transition-base);
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a,
.nav-menu li.current_page_item a {
    color: var(--color-gold);
}

.nav-menu li a:hover::after,
.nav-menu li.current-menu-item a::after,
.nav-menu li.current_page_item a::after {
    width: 100%;
}

/* Header CTA */
.header-cta {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-gold);
    border: 1px solid var(--color-gold);
    padding: 10px 24px;
    border-radius: 2px;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.header-cta:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

/* Hamburger */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 28px;
}

.hamburger span {
    display: block;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition-base);
    border-radius: 1px;
}

.menu-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.4) 0%,
        rgba(10, 10, 10, 0.2) 50%,
        rgba(10, 10, 10, 0.8) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 var(--container-padding);
}

.hero-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 8px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--color-gold);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--color-text-muted);
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.7s forwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.9s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--color-text-muted);
    animation: bounce 2s infinite;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-gold);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.service-card:hover {
    background: var(--color-bg-card-hover);
    border-color: var(--color-border-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    background: rgba(201, 169, 110, 0.08);
    border-radius: 20px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: rgba(201, 169, 110, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.2);
}

.service-icon svg {
    width: 44px;
    height: 44px;
    stroke: var(--color-gold);
    fill: none;
    stroke-width: 1.5;
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
}

.service-card h4 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* ============================================
   ABOUT / EXPERIENCE SECTION
   ============================================ */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: brightness(0.9);
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 2px solid var(--color-gold);
    opacity: 0.3;
    z-index: -1;
}

.about-content .section-label {
    margin-bottom: 16px;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-gold);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   GLASS RENTAL TEASER
   ============================================ */
.glass-teaser {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
    position: relative;
}

.glass-teaser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.glass-teaser-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.glass-teaser-images img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 20px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border: 1px solid var(--color-gold);
    opacity: 0.05;
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 20px;
}

.cta-content p {
    margin-bottom: 32px;
    font-size: 1.1rem;
}

/* ============================================
   CONTACT SECTION / PAGE
   ============================================ */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    margin-bottom: 24px;
}

.contact-info p {
    margin-bottom: 32px;
    line-height: 1.8;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-light);
}

.contact-details li svg {
    flex-shrink: 0;
    color: var(--color-gold);
}

.contact-details li a {
    color: var(--color-text-light);
}

.contact-details li a:hover {
    color: var(--color-gold);
}

/* Contact Form 7 Styling */
.contact-form-wrapper {
    background: var(--color-bg-card);
    padding: 40px;
    border: 1px solid var(--color-border);
    overflow: hidden;
    box-sizing: border-box;
    max-width: 100%;
}

.contact-form-wrapper .wpcf7,
.contact-form-wrapper .wpcf7-form {
    max-width: 100%;
    overflow: hidden;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="date"],
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: 14px 18px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    border-radius: 2px;
    transition: border-color var(--transition-fast);
    margin-bottom: 4px;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    outline: none;
    border-color: var(--color-gold);
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    color: var(--color-text-muted);
}

.wpcf7 textarea {
    min-height: 150px;
    resize: vertical;
}

.wpcf7 label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-light);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wpcf7 p {
    margin-bottom: 20px;
}

.wpcf7 input[type="submit"] {
    width: 100%;
    padding: 16px 32px;
    background: var(--color-gold);
    color: var(--color-black);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition-base);
}

.wpcf7 input[type="submit"]:hover {
    background: var(--color-gold-light);
    box-shadow: var(--shadow-gold);
}

.wpcf7-response-output {
    border-color: var(--color-gold) !important;
    color: var(--color-text-light) !important;
    margin: 16px 0 0 !important;
    padding: 12px 16px !important;
}

/* ============================================
   GLASS RENTAL PAGE
   ============================================ */

/* Page hero (shared) */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 24px;
}

.page-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 16px;
}

.page-hero-content p {
    font-size: 1.15rem;
    color: var(--color-text-light);
    max-width: 550px;
    margin: 0 auto;
}

/* How it works */
.how-it-works {
    padding: 80px 0;
    background: var(--color-bg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}

.step-card h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Glass selection grid */
.glass-selection {
    padding: 80px 0;
    background: var(--color-bg-alt);
}

.glass-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.glass-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: all var(--transition-base);
}

.glass-card:hover {
    border-color: var(--color-border-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.glass-card.selected {
    border-color: var(--color-gold);
    box-shadow: 0 0 20px rgba(201, 169, 110, 0.15);
}

.glass-card-image {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.glass-card-image img {
    max-height: 240px;
    max-width: 100%;
    object-fit: contain;
    transition: opacity 0.4s ease;
}

.glass-img-filled {
    position: absolute;
    opacity: 0;
}

.glass-card:hover .glass-img-filled,
.glass-card.selected .glass-img-filled {
    opacity: 1;
}

.glass-card:hover .glass-img-empty,
.glass-card.selected .glass-img-empty {
    opacity: 0;
}

.glass-card-info {
    padding: 24px;
    text-align: center;
}

.glass-card-info h3 {
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.glass-price {
    color: var(--color-gold);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 16px;
}

/* Quantity selector */
.glass-qty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    border: 1px solid var(--color-border);
    border-radius: 2px;
    overflow: hidden;
    width: fit-content;
    margin: 0 auto;
}

.qty-btn {
    width: 44px;
    height: 44px;
    background: var(--color-bg);
    border: none;
    color: var(--color-text);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

.qty-input {
    width: 64px;
    height: 44px;
    text-align: center;
    background: var(--color-bg-card);
    border: none;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Duration selector */
.duration-selector {
    margin-top: 50px;
    text-align: center;
}

.duration-selector h3 {
    margin-bottom: 20px;
    font-size: 1.15rem;
}

.duration-btns {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.duration-btn {
    padding: 12px 24px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    border-radius: 2px;
}

.duration-btn:hover {
    border-color: var(--color-border-light);
    color: var(--color-white);
}

.duration-btn.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-black);
    font-weight: 600;
}

/* Order summary */
.order-summary {
    margin-top: 50px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 32px 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.order-summary h3 {
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--color-border);
    font-size: 1.15rem;
}

.order-line {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 16px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.order-line-name {
    font-weight: 500;
    color: var(--color-white);
}

.order-line-detail {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.order-line-price {
    font-weight: 600;
    color: var(--color-gold);
    text-align: right;
    min-width: 80px;
}

.order-total {
    display: flex;
    justify-content: space-between;
    padding-top: 18px;
    margin-top: 8px;
    border-top: 2px solid var(--color-gold);
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--color-white);
}

.order-total span:last-child {
    color: var(--color-gold);
    font-size: 1.3rem;
}

.order-note {
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-style: italic;
}

/* Glass inquiry form */
.glass-inquiry {
    margin-top: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.glass-inquiry h3 {
    margin-bottom: 24px;
    text-align: center;
    font-size: 1.3rem;
}

.glass-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.glass-form .form-group {
    margin-bottom: 20px;
}

.glass-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.glass-form input[type="text"],
.glass-form input[type="email"],
.glass-form input[type="tel"],
.glass-form input[type="date"],
.glass-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 2px;
    transition: border-color var(--transition-fast);
}

.glass-form input:focus,
.glass-form textarea:focus {
    outline: none;
    border-color: var(--color-gold);
}

.glass-form textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Glass info cards */
.glass-info {
    padding: 60px 0;
    background: var(--color-bg);
}

.glass-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.glass-info-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
}

.glass-info-card svg {
    margin-bottom: 16px;
}

.glass-info-card h4 {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.glass-info-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-page-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
    color: var(--color-white);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* WordPress Gallery Block — dark theme overrides */
.gallery-content {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-content .wp-block-gallery {
    gap: 8px !important;
}

.gallery-content .wp-block-gallery .wp-block-image {
    overflow: hidden;
    border-radius: 4px;
}

.gallery-content .wp-block-gallery .wp-block-image img {
    transition: transform 0.5s ease;
    border-radius: 4px;
}

.gallery-content .wp-block-gallery .wp-block-image:hover img {
    transform: scale(1.05);
}

.gallery-content .wp-block-gallery figcaption {
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 100%);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    padding: 10px 14px;
    text-align: center;
}

/* WordPress image blocks */
.gallery-content .wp-block-image {
    margin-bottom: 1.5rem;
}

.gallery-content .wp-block-image img {
    border-radius: 4px;
    max-width: 100%;
    height: auto;
}

.gallery-content .wp-block-image figcaption {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    text-align: center;
    margin-top: 0.5rem;
}

/* General content inside gallery page */
.gallery-content p {
    color: var(--color-text);
    font-size: 1.05rem;
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-content h2,
.gallery-content h3 {
    color: var(--color-gold);
    font-family: var(--font-heading);
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Instagram Feed Embed */
.instagram-feed-wrapper {
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.instagram-fallback {
    text-align: center;
    padding: 4rem 2rem;
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 8px;
    background: var(--color-bg-card);
}

.instagram-fallback .instagram-icon {
    margin-bottom: 1.5rem;
}

.instagram-fallback h2 {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.instagram-fallback p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Elfsight widget dark background override */
.instagram-feed-wrapper [class^="elfsight-app-"] {
    background: transparent !important;
}

/* ============================================
   PAGE HERO (inner pages — full image hero)
   ============================================ */
/* .page-hero is defined in the glass rental section above */

.page-hero-short {
    height: 45vh;
    min-height: 320px;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--color-gold);
    z-index: 3;
}

/* ============================================
   SERVICES DETAIL PAGE
   ============================================ */
.services-detail {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.service-detail-grid {
    margin-top: 40px;
}

.service-detail-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail-item.reverse {
    direction: rtl;
}

.service-detail-item.reverse > * {
    direction: ltr;
}

.service-detail-image {
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-detail-item:hover .service-detail-image img {
    transform: scale(1.03);
}

.service-detail-content h3 {
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.service-detail-content p {
    color: var(--color-text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.service-detail-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-detail-content ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.service-detail-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 1px;
    background: var(--color-gold);
}

/* Event types tags */
.event-types {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
}

.event-types-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.event-type-tag {
    padding: 12px 28px;
    border: 1px solid var(--color-border);
    color: var(--color-text-light);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    cursor: default;
}

.event-type-tag:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-content p {
    color: var(--color-text-light);
    line-height: 1.9;
    margin-bottom: 16px;
}

.about-story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Values */
.values-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-alt);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.value-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
}

.value-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-4px);
}

.value-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    color: var(--color-gold);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-card h4 {
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* Stats banner */
.stats-banner {
    padding: 60px 0;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-big-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-gold);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-big-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.contact-page .contact-info h3 {
    margin-bottom: 12px;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-details li svg {
    flex-shrink: 0;
    color: var(--color-gold);
    margin-top: 2px;
}

.contact-details li strong {
    display: block;
    color: var(--color-white);
    margin-bottom: 4px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-details li a,
.contact-details li span {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-details li a:hover {
    color: var(--color-gold);
}

.contact-social {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.contact-social h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.social-links a:hover {
    color: var(--color-gold);
}

/* Page content (generic) */
.content-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg);
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-content p {
    margin-bottom: 24px;
    line-height: 1.9;
    color: var(--color-text-light);
}

.page-content h2 {
    margin: 48px 0 24px;
}

.page-content h3 {
    margin: 32px 0 16px;
}

/* Post items (index/blog) */
.post-item {
    padding: 32px 0;
    border-bottom: 1px solid var(--color-border);
}

.post-item h2 {
    margin-bottom: 8px;
    font-size: 1.4rem;
}

.post-item h2 a {
    color: var(--color-white);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.post-item h2 a:hover {
    color: var(--color-gold);
}

.post-meta {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.post-excerpt {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-about p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 20px;
    line-height: 1.8;
}

.footer-logo img {
    height: 45px;
    width: auto;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 24px;
}

.footer-menu,
.footer-services ul {
    list-style: none;
}

.footer-menu li,
.footer-services li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-menu a:hover {
    color: var(--color-gold);
}

.footer-services li {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.contact-list li svg {
    flex-shrink: 0;
    color: var(--color-gold);
}

.contact-list li a {
    color: var(--color-text-muted);
}

.contact-list li a:hover {
    color: var(--color-gold);
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.footer-social a {
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.footer-social a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* ============================================
   FLOATING SOCIAL BAR
   ============================================ */
.social-float {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.social-float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #fff;
    text-decoration: none;
    transition: all 0.25s ease;
}

.social-float-btn:hover {
    width: 52px;
}

.social-facebook {
    background: #1877F2;
}

.social-facebook:hover {
    background: #0d65d9;
}

.social-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-instagram:hover {
    background: linear-gradient(45deg, #e6683c, #dc2743, #cc2366, #bc1888, #8a3ab9);
}

@media (max-width: 768px) {
    .social-float {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
        flex-direction: row;
        justify-content: center;
    }

    .social-float-btn {
        flex: 1;
        height: 48px;
        width: auto;
    }

    .social-float-btn:hover {
        width: auto;
    }

    .back-to-top {
        bottom: 60px;
    }
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--color-gold);
    color: var(--color-black);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-gold-light);
    transform: translateY(-3px);
}

/* ============================================
   404 PAGE
   ============================================ */
.error-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0;
}

.error-404 h1 {
    font-size: 8rem;
    color: var(--color-gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}

.error-404 h2 {
    margin-bottom: 16px;
}

.error-404 p {
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Fade in on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .glass-teaser-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .glass-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .glass-info-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail-item.reverse {
        direction: ltr;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
        --container-padding: 20px;
    }

    /* Mobile Nav */
    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--color-bg-alt);
        border-left: 1px solid var(--color-border);
        padding: 100px 40px 40px;
        transition: right var(--transition-base);
        flex-direction: column;
        justify-content: flex-start;
        z-index: 1000;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu li a {
        display: block;
        padding: 16px 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--color-border);
    }

    .header-cta {
        display: none;
    }

    /* Mobile overlay */
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Sections */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .glass-cards {
        grid-template-columns: 1fr;
    }

    .glass-info-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .glass-form .form-row {
        grid-template-columns: 1fr;
    }

    .order-summary {
        padding: 24px;
    }

    .order-line {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .order-line-price {
        text-align: left;
    }

    .page-hero {
        height: 50vh;
        min-height: 300px;
    }

    .page-hero-short {
        height: 40vh;
        min-height: 250px;
    }

    .service-detail-image img {
        height: 280px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-story-image img {
        height: 350px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-wrapper {
        padding: 24px;
    }

}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .duration-btns {
        flex-direction: column;
    }

    .glass-card-image {
        height: 200px;
    }

    .stat-big-number {
        font-size: 2.2rem;
    }
}

/* ============================================
   HIDE GOOGLE RECAPTCHA BADGE
   ============================================ */
.grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none;
}

/* ============================================
   FLATPICKR DARK THEME OVERRIDES
   ============================================ */
.flatpickr-calendar {
    background: #1a1a1a !important;
    border: 1px solid #333 !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5) !important;
    border-radius: 8px !important;
    font-family: var(--font-body) !important;
}

.flatpickr-months {
    background: #111 !important;
    border-radius: 8px 8px 0 0 !important;
    padding: 8px 0 !important;
}

.flatpickr-months .flatpickr-month {
    color: var(--color-text) !important;
    fill: var(--color-text) !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    color: var(--color-text) !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    background: transparent !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months option {
    background: #1a1a1a !important;
    color: var(--color-text) !important;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    fill: var(--color-gold) !important;
    color: var(--color-gold) !important;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
    fill: var(--color-gold-light) !important;
}

span.flatpickr-weekday {
    color: var(--color-gold) !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    text-transform: uppercase !important;
}

.flatpickr-day {
    color: var(--color-text) !important;
    border-radius: 6px !important;
    border: none !important;
    font-weight: 400 !important;
}

.flatpickr-day:hover {
    background: var(--color-bg-card-hover) !important;
    border-color: transparent !important;
}

.flatpickr-day.today {
    border: 1px solid var(--color-gold) !important;
    color: var(--color-gold) !important;
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover {
    background: var(--color-gold) !important;
    color: var(--color-black) !important;
    border-color: var(--color-gold) !important;
    font-weight: 600 !important;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: #444 !important;
}

.flatpickr-innerContainer {
    border-bottom: none !important;
}

.dayContainer {
    padding: 4px !important;
}

/* Flatpickr alt-input styling */
.flatpickr-input[readonly],
input.flatpickr-input {
    cursor: pointer !important;
}

/* ============================================
   NATIVE DATE INPUT DARK THEME (CF7 fallback)
   ============================================ */
.wpcf7 input[type="date"],
input[type="date"] {
    color-scheme: dark;
}

.wpcf7 input[type="date"] {
    width: 100%;
    max-width: 100%;
    padding: 14px 18px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    border-radius: 2px;
    transition: border-color var(--transition-fast);
    margin-bottom: 4px;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.wpcf7 input[type="date"]:focus {
    outline: none;
    border-color: var(--color-gold);
}

/* ============================================
   FORM SUCCESS MESSAGE
   ============================================ */
.form-success {
    text-align: center;
    padding: 60px 20px;
}

.form-success svg {
    margin-bottom: 20px;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.form-success p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto 12px;
}

.form-success-note {
    font-size: 0.9rem !important;
    color: var(--color-text-muted) !important;
    font-style: italic;
}
