:root {
    --gold: #C9A961;
    --dark-gold: #B89550;
    --navy: #1A2332;
    --deep-navy: #0F1419;
    --cream: #F8F6F1;
    --off-white: #FEFEFE;
    --charcoal: #2D3748;
    --light-gray: #E5E7EB;
    --border-color: rgba(201, 169, 97, 0.2);
    
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

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

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(248, 246, 241, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo h1 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--navy);
    margin: 0;
}

.logo .tagline {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

.nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-size: 14px;
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.cart-link {
    position: relative;
    display: flex;
    align-items: center;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gold);
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--navy);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.9), rgba(15, 20, 25, 0.85)),
                url('https://images.unsplash.com/photo-1507680434567-5739c80be1ac?w=1920&h=1080&fit=crop') center/cover;
    margin-top: 70px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201, 169, 97, 0.1), transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.3));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 24px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 92px);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-indicator {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), transparent);
    animation: scroll 2s infinite;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 2px;
    transition: var(--transition);
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--dark-gold);
    border-color: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--navy);
}

.btn-text {
    background: none;
    color: var(--gold);
    padding: 8px 0;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: none;
}

.btn-text:hover {
    color: var(--dark-gold);
    transform: translateX(5px);
}

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

/* Sections */
section {
    padding: 100px 0;
}

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

.section-label {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
}

/* Services Preview */
.services-preview {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.service-card {
    padding: 40px 32px;
    background: var(--cream);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

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

.service-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--charcoal);
}

/* Featured Gallery */
.featured-gallery {
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item.large {
    aspect-ratio: 0.8;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay h3 {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 8px;
}

.gallery-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* Testimonials */
.testimonials-preview {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.testimonial-card {
    padding: 40px;
    background: var(--cream);
    border-left: 3px solid var(--gold);
}

.stars {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--charcoal);
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--gold);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--navy), var(--deep-navy));
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-center {
    text-align: center;
}

/* Footer */
.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 32px;
}

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

.footer h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: white;
    margin-bottom: 16px;
}

.footer h4 {
    font-family: var(--font-display);
    font-size: 18px;
    color: white;
    margin-bottom: 20px;
}

.footer p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 50%;
    color: var(--gold);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-4px);
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.contact-info li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

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

.footer-links {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

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

.footer-bottom p {
    font-size: 13px;
    margin: 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s both;
}

/* Responsive */
@media (max-width: 968px) {
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--cream);
        flex-direction: column;
        padding: 48px 24px;
        gap: 24px;
        transition: var(--transition);
        border-top: 1px solid var(--border-color);
    }
    
    .nav.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* FORMS */

/* ============================================
   COMPLETE FORMS CSS - COPY & PASTE READY
   ============================================ */

/* Form Container Styling */
.form-container,
.contact-form-box,
.checkout-container,
.review-form-container {
    background: white;
    padding: 48px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    margin-bottom: 40px;
}

/* Form Titles */
.form-container h2,
.form-container h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 600;
    color: #1A2332;
    margin-bottom: 24px;
}

/* Main Form Wrapper */
.checkout-form,
.contact-form,
.login-form,
.review-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

/* Form Sections */
.form-section {
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1A2332;
}

/* Form Group - Individual Field Container */
.form-group {
    margin-bottom: 24px;
    width: 100%;
}

.form-group:last-child {
    margin-bottom: 0;
}

/* Form Labels */
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1A2332;
    letter-spacing: 0.3px;
    font-family: 'Montserrat', sans-serif;
}

.form-group label span.required {
    color: #DC2626;
    margin-left: 2px;
}

/* Input Fields */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="password"],
.form-group input[type="number"],
.form-group input[type="url"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(201, 169, 97, 0.2);
    background: #F8F6F1;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #1A2332;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Textarea Specific */
.form-group textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

/* Input Focus States */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #C9A961;
    background: white;
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

/* Input Placeholder */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9CA3AF;
    opacity: 1;
}

/* Input Error State */
.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #DC2626;
    background: #FEF2F2;
}

.form-group .error-message {
    color: #DC2626;
    font-size: 13px;
    margin-top: 6px;
    display: block;
}

/* Input Success State */
.form-group input.success,
.form-group textarea.success,
.form-group select.success {
    border-color: #10B981;
    background: #F0FDF4;
}

/* Disabled State */
.form-group input:disabled,
.form-group textarea:disabled,
.form-group select:disabled {
    background: #E5E7EB;
    color: #9CA3AF;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Form Row - Side by Side Fields */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

/* Radio Buttons & Checkboxes Container */
.form-options,
.delivery-options,
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Radio/Checkbox Option */
.form-option,
.delivery-option,
.payment-option {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    position: relative;
}

/* Hide Default Radio/Checkbox */
.delivery-option input[type="radio"],
.payment-option input[type="radio"],
.form-option input[type="radio"],
.form-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Custom Radio/Checkbox Container */
.option-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px 20px;
    border: 2px solid rgba(201, 169, 97, 0.2);
    background: #F8F6F1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-left: 48px;
}

/* Radio Button Circle */
.option-content::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 50%;
    background: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Radio Button Inner Circle (when selected) */
.option-content::after {
    content: '';
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #C9A961;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Selected State */
input[type="radio"]:checked~.option-content,
input[type="checkbox"]:checked~.option-content {
    border-color: #C9A961;
    background: white;
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.15);
}

input[type="radio"]:checked~.option-content::before {
    border-color: #C9A961;
}

input[type="radio"]:checked~.option-content::after {
    transform: translateY(-50%) scale(1);
}

/* Option Text Styling */
.option-content strong {
    font-size: 15px;
    font-weight: 600;
    color: #1A2332;
    display: block;
}

.option-content span {
    font-size: 13px;
    color: #6B7280;
    display: block;
}

.option-content .price {
    color: #C9A961;
    font-weight: 600;
    font-size: 14px;
}

/* Payment Option Specific (with icons) */
.payment-option .option-content {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    padding-left: 48px;
}

.payment-option .option-content svg {
    flex-shrink: 0;
}

/* Select Dropdown */
.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231A2332' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* Rating Input (Stars) */
.rating-input {
    display: flex;
    flex-direction: row-reverse;
    gap: 8px;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.rating-input input[type="radio"] {
    display: none;
}

.rating-input label {
    font-size: 36px;
    cursor: pointer;
    color: #D1D5DB;
    transition: all 0.2s ease;
    margin: 0;
    line-height: 1;
}

.rating-input input:checked~label,
.rating-input label:hover,
.rating-input label:hover~label {
    color: #C9A961;
}

/* Form Buttons */
.form-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    margin-top: 24px;
}

/* Order Summary Box */
.order-summary {
    background: #F8F6F1;
    padding: 24px;
    margin-top: 24px;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.order-summary h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1A2332;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 15px;
    color: #2D3748;
}

.summary-row.total {
    border-top: 2px solid #C9A961;
    margin-top: 12px;
    padding-top: 16px;
    font-weight: 600;
    font-size: 20px;
    color: #1A2332;
}

/* File Upload */
.file-upload {
    position: relative;
    display: inline-block;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: #F8F6F1;
    border: 2px dashed rgba(201, 169, 97, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #1A2332;
}

.file-upload-label:hover {
    border-color: #C9A961;
    background: white;
}

/* Helper Text */
.form-helper {
    font-size: 13px;
    color: #6B7280;
    margin-top: 6px;
    display: block;
}

/* Form Hint/Note */
.form-note {
    background: #EFF6FF;
    border-left: 3px solid #3B82F6;
    padding: 12px 16px;
    margin: 16px 0;
    font-size: 14px;
    color: #1E40AF;
}

/* Input with Icon */
.input-with-icon {
    position: relative;
}

.input-with-icon input {
    padding-left: 44px;
}

.input-with-icon .icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
    pointer-events: none;
}

/* Checkbox List */
.checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #C9A961;
    cursor: pointer;
}

.checkbox-item label {
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    margin: 0;
}

/* Loading State */
.form-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.form-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    border: 3px solid #C9A961;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {

    .form-container,
    .contact-form-box,
    .checkout-container,
    .review-form-container {
        padding: 32px 24px;
    }

    .form-row,
    .form-row-3 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-buttons {
        flex-direction: column;
    }

    .form-buttons button,
    .form-buttons .btn {
        width: 100%;
    }

    .payment-option .option-content {
        flex-direction: row;
        padding-left: 48px;
    }
}

@media (max-width: 480px) {

    .form-container h2,
    .form-container h3 {
        font-size: 24px;
    }

    .rating-input label {
        font-size: 28px;
    }
}

/* ============================================
   BUTTON STYLES (for forms)
   ============================================ */

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.btn-primary {
    background: #C9A961;
    color: white;
    border-color: #C9A961;
}

.btn-primary:hover {
    background: #B89550;
    border-color: #B89550;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #1A2332;
    border-color: #1A2332;
}

.btn-secondary:hover {
    background: #1A2332;
    color: white;
}

.btn-block {
    width: 100%;
    display: block;
}

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

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* ============================================
   VALIDATION MESSAGES
   ============================================ */

.validation-message {
    font-size: 13px;
    margin-top: 6px;
    display: block;
}

.validation-error {
    color: #DC2626;
}

.validation-success {
    color: #10B981;
}

.validation-warning {
    color: #F59E0B;
}

/* ============================================
   FORM SUCCESS/ERROR ALERTS
   ============================================ */

.form-alert {
    padding: 16px 20px;
    margin-bottom: 24px;
    border-radius: 4px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-alert-success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #10B981;
}

.form-alert-error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #DC2626;
}

.form-alert-warning {
    background: #FEF3C7;
    color: #92400E;
    border: 1px solid #F59E0B;
}

.form-alert-info {
    background: #DBEAFE;
    color: #1E40AF;
    border: 1px solid #3B82F6;
}

/* ============================================
   END OF FORMS CSS
   ============================================ */