@font-face {
    font-family: "Cormorant Garamond";
    src: url("/fonts/CormorantGaramond-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "Cormorant Garamond";
    src: url("/fonts/CormorantGaramond-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "Cormorant Garamond";
    src: url("/fonts/CormorantGaramond-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "Cormorant Garamond";
    src: url("/fonts/CormorantGaramond-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "Cormorant Garamond";
    src: url("/fonts/CormorantGaramond-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  
  /* Space Grotesk */
  @font-face {
    font-family: "Space Grotesk";
    src: url("/fonts/SpaceGrotesk-Regular.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "Space Grotesk";
    src: url("/fonts/SpaceGrotesk-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "Space Grotesk";
    src: url("/fonts/SpaceGrotesk-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "Space Grotesk";
    src: url("/fonts/SpaceGrotesk-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: "Space Grotesk";
    src: url("/fonts/SpaceGrotesk-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  
:root {
    --primary-dark: #0a0a0f;
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-gold: #d4af37;
    --accent-gold-light: #f4e4bc;
    --accent-gold-dark: #b8941f;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-light: #ffffff;
    --bg-cream: #faf9f6;
    --bg-white: #ffffff;
    --bg-dark: #0f0f15;
    --border-light: rgba(255, 255, 255, 0.1);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 30px 80px rgba(0, 0, 0, 0.16);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--bg-cream);
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}


body:hover .cursor-outline {
    opacity: 1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-soft);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: inline-block;
    text-decoration: none;
}

.logo img {
    height: 45px;
    width: auto;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover img {
    transform: scale(1.08) rotate(-2deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-gold);
}

.nav-menu a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--primary-dark);
    color: var(--text-light) !important;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--accent-gold);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button span {
    position: relative;
    z-index: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 3rem;
    overflow: hidden;
    background: linear-gradient(135deg, #faf9f6 0%, #f5f3ed 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-gold-light) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    bottom: -100px;
    left: 10%;
    animation-delay: 5s;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 26, 46, 0.1) 0%, transparent 70%);
    top: 50%;
    left: -150px;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-top: 120px;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    line-height: 0.95;
}

.hero-title .title-line {
    display: block;
}

.hero-title .accent {
    color: var(--accent-gold);
    font-style: italic;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 550px;
    font-weight: 300;
}

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

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease-out 0.2s both;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.image-frame {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--accent-gold);
    border-radius: 30px;
    opacity: 0.3;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 30px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    animation: floatCard 3s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 15%;
    left: -5%;
    animation-delay: 1.5s;
}

.card-icon {
    width: 32px;
    height: 32px;
    background: var(--accent-gold);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    z-index: 1;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

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

/* Page Hero (for About, etc.) */
.page-hero {
    min-height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 140px 3rem 6rem;
    overflow: hidden;
    background: linear-gradient(135deg, #faf9f6 0%, #f5f3ed 100%);
}

.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.page-hero-background .orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-gold-light) 0%, transparent 70%);
    top: -150px;
    right: -150px;
}

.page-hero-background .orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    bottom: -100px;
    left: 10%;
}

.page-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.page-hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.page-hero-title {
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.page-hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--text-secondary);
    font-weight: 400;
    line-height: 1.4;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

/* Catalog Hero */
.catalog-hero {
    min-height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 3rem 6rem;
    overflow: hidden;
}

.catalog-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.catalog-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(22, 33, 62, 0.75) 100%);
    z-index: 1;
}

.catalog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.catalog-hero-content .page-hero-title,
.catalog-hero-content .page-hero-subtitle {
    color: var(--text-light);
}

.catalog-hero-content .page-hero-badge {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
    color: var(--accent-gold-light);
}

/* Catalog Items */
.catalog-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 5rem;
}

.catalog-item {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.catalog-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--accent-gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.catalog-item:hover::before {
    transform: scaleX(1);
}

.catalog-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.catalog-item-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    line-height: 1;
}

.catalog-item-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.catalog-item-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.catalog-item-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.rental-item .catalog-item-price {
    color: var(--primary-dark);
}

/* Rental Section */
.rental-perfect-for {
    margin-top: 5rem;
    margin-bottom: 3rem;
}

.rental-section-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    font-family: 'Cormorant Garamond', serif;
    text-align: center;
}

.rental-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.rental-tag {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    font-size: 0.95rem;
    color: var(--accent-gold-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.rental-tag:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

/* Contact Hero */
.contact-hero {
    min-height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 3rem 6rem;
    overflow: hidden;
}

.contact-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.contact-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(22, 33, 62, 0.75) 100%);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.contact-hero-content .page-hero-title,
.contact-hero-content .page-hero-subtitle {
    color: var(--text-light);
}

.contact-hero-content .page-hero-badge {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
    color: var(--accent-gold-light);
}

/* Contact Intro */
.contact-intro {
    padding: 4rem 0;
    background: var(--bg-white);
}

.contact-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-intro-text {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Contact Methods */
.contact-methods {
    padding: 6rem 0;
    background: var(--bg-light);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.contact-card {
    background: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--accent-gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.contact-card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    line-height: 1;
}

.contact-card-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.contact-card-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.contact-card-info {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-card-info a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card-info a:hover {
    color: var(--accent-gold-dark);
    text-decoration: underline;
}

.contact-card-note {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.contact-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 4rem;
}

.contact-form-intro {
    background: rgba(212, 175, 55, 0.08);
    padding: 2.5rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--accent-gold);
}

.contact-form-intro p {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.contact-form-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-form-features li {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.contact-form-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 600;
}

/* Form Styles */
.contact-form {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-primary);
    background: var(--bg-white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

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

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
    line-height: 1.6;
}

.form-submit {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    display: none;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.form-message.error {
    background: rgba(244, 67, 54, 0.1);
    color: #c62828;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

/* Privacy Policy Page */
.privacy-updated {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    font-weight: 300;
    font-style: italic;
}

.privacy-section {
    padding: 6rem 0;
    background: var(--bg-white);
    color: var(--text-primary);
}

.privacy-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.privacy-intro-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-secondary) !important;
    font-weight: 300;
    margin-bottom: 1.5rem;
    opacity: 1;
    visibility: visible;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-section-item {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.privacy-section-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.privacy-section-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-dark) !important;
    margin-bottom: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    opacity: 1;
    visibility: visible;
}

.privacy-section-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary) !important;
    margin-bottom: 1.25rem;
    font-weight: 300;
    opacity: 1;
    visibility: visible;
}

.privacy-section-item p strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.privacy-section-item p a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-section-item p a:hover {
    color: var(--accent-gold-dark);
    text-decoration: underline;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.privacy-list li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary) !important;
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.75rem;
    font-weight: 300;
    opacity: 1;
    visibility: visible;
}

.privacy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1.2rem;
}

.privacy-contact-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.privacy-contact-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.privacy-contact-list li a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-contact-list li a:hover {
    color: var(--accent-gold-dark);
    text-decoration: underline;
}

.privacy-contact-box {
    background: rgba(212, 175, 55, 0.08);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 5rem;
    text-align: center;
    border-left: 4px solid var(--accent-gold);
}

.privacy-contact-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

.privacy-contact-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.privacy-contact-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-dark);
    color: var(--text-light);
    box-shadow: var(--shadow-medium);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-gold);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary span, .btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.btn-primary svg {
    transition: transform 0.4s ease;
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
}

.btn-secondary:hover {
    background: var(--primary-dark);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-primary.large, .btn-secondary.large {
    padding: 1.3rem 3rem;
    font-size: 1.1rem;
}

/* Sections */
.section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.section:nth-child(even) {
    background: var(--bg-white);
}

.section-number {
    position: absolute;
    top: 2rem;
    left: 3rem;
    font-size: 8rem;
    font-weight: 700;
    color: rgba(26, 26, 46, 0.03);
    font-family: 'Cormorant Garamond', serif;
    z-index: 0;
    line-height: 1;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 1;
}

.section-header {
    margin-bottom: 5rem;
    max-width: 800px;
}

.section-header.reverse {
    margin-left: auto;
    text-align: right;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--accent-gold), transparent);
    margin-top: 1rem;
}

.section-header.reverse .section-divider {
    margin-left: auto;
    background: linear-gradient(to left, var(--accent-gold), transparent);
}

.section-content.modern-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.section-content.modern-layout.reverse {
    direction: rtl;
}

.section-content.modern-layout.reverse > * {
    direction: ltr;
}

.content-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    transform: rotate(-2deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-container:hover {
    transform: rotate(0deg) scale(1.02);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.content-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.text-block {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-secondary);
    font-weight: 300;
}

.text-block.highlight {
    padding: 2rem;
    background: rgba(212, 175, 55, 0.08);
    border-left: 4px solid var(--accent-gold);
    border-radius: 10px;
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 400;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
    background: var(--primary-dark);
    color: var(--text-light);
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.cta-gradient {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.cta-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-gold-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cta-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 2rem;
    color: var(--text-light);
    font-weight: 700;
}

.cta-description {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-weight: 300;
}

.cta-description.accent-text {
    font-size: 1.3rem;
    color: var(--accent-gold-light);
    font-weight: 400;
    margin-top: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.cta-buttons .btn-primary {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.cta-buttons .btn-primary::before {
    background: var(--text-light);
}

.cta-buttons .btn-secondary {
    border-color: var(--text-light);
    color: var(--text-light);
}

.cta-buttons .btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-dark);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 5rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-gold), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 5rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo a {
    display: inline-block;
    text-decoration: none;
}

.footer-logo img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1.5rem;
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.footer-logo a:hover img {
    opacity: 1;
}

.footer-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    font-weight: 300;
}

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

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 300;
    position: relative;
    padding-left: 0;
    transition: padding-left 0.3s ease;
}

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

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

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .hero-description {
        max-width: 100%;
    }

    .section-content.modern-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .section-content.modern-layout.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1.25rem 2rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-strong);
        padding: 3rem 0;
        gap: 2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .hero {
        padding: 0 2rem;
    }

    .hero-container {
        padding-top: 100px;
    }

    .page-hero {
        padding: 120px 2rem 4rem;
        min-height: 50vh;
    }

    .page-hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }

    .page-hero-subtitle {
        font-size: clamp(1.3rem, 3vw, 2rem);
    }

    .catalog-hero {
        min-height: 60vh;
        padding: 120px 2rem 4rem;
    }

    .contact-hero {
        min-height: 60vh;
        padding: 120px 2rem 4rem;
    }

    .contact-intro-text {
        font-size: 1.15rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-card {
        padding: 2.5rem 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .catalog-items {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .catalog-item {
        padding: 2rem 1.5rem;
    }

    .rental-perfect-for {
        margin-top: 3rem;
        margin-bottom: 2rem;
    }

    .rental-section-title {
        font-size: 1.75rem;
    }

    .rental-tags {
        gap: 0.75rem;
    }

    .rental-tag {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .floating-card {
        display: none;
    }

    .section {
        padding: 5rem 0;
    }

    .section-number {
        font-size: 5rem;
        top: 1rem;
        left: 2rem;
    }

    .container {
        padding: 0 2rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .text-block {
        font-size: 1.05rem;
    }

    .text-block.highlight {
        padding: 1.5rem;
        font-size: 1.1rem;
    }

    .cta-section {
        padding: 6rem 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

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

    .footer-links {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .hero {
        padding: 0 1.5rem;
    }

    .page-hero {
        padding: 100px 1.5rem 3rem;
    }

    .catalog-hero {
        min-height: 50vh;
        padding: 100px 1.5rem 3rem;
    }

    .contact-hero {
        min-height: 50vh;
        padding: 100px 1.5rem 3rem;
    }

    .contact-intro {
        padding: 3rem 0;
    }

    .contact-intro-text {
        font-size: 1.05rem;
    }

    .contact-methods {
        padding: 4rem 0;
    }

    .contact-cards {
        gap: 1.5rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .contact-card-icon {
        font-size: 3rem;
    }

    .contact-card-title {
        font-size: 1.5rem;
    }

    .contact-form-section {
        padding: 4rem 0;
    }

    .contact-form-wrapper {
        margin-top: 3rem;
    }

    .contact-form-intro {
        padding: 2rem 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .privacy-section {
        padding: 4rem 0;
    }

    .privacy-intro {
        margin-bottom: 3rem;
    }

    .privacy-intro-text {
        font-size: 1.1rem;
    }

    .privacy-section-item {
        margin-bottom: 3rem;
        padding-bottom: 2rem;
    }

    .privacy-section-title {
        font-size: 1.75rem;
    }

    .privacy-section-item p {
        font-size: 1rem;
    }

    .privacy-list li {
        font-size: 1rem;
    }

    .privacy-contact-box {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }

    .privacy-contact-title {
        font-size: 1.5rem;
    }

    .privacy-contact-links {
        flex-direction: column;
        align-items: stretch;
    }

    .catalog-items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .catalog-item {
        padding: 1.75rem 1.25rem;
    }

    .catalog-item-icon {
        font-size: 2.5rem;
    }

    .catalog-item-title {
        font-size: 1.3rem;
    }

    .rental-section-title {
        font-size: 1.5rem;
    }

    .rental-tags {
        flex-direction: column;
        align-items: stretch;
    }

    .rental-tag {
        text-align: center;
    }

    .container {
        padding: 0 1.5rem;
    }

    .section-number {
        font-size: 4rem;
        left: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Hide cursor on mobile */
@media (hover: none) {
    .cursor-dot,
    .cursor-outline {
        display: none;
    }
    
    body {
        cursor: auto;
    }
}
