/* ===================================
   RESET & BASE STYLES
   =================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #fff;
    background: #0a0a0a;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    transition: overflow 0.3s ease;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Mobile-first responsive base font sizes */
@media (max-width: 374px) {
    body {
        font-size: 14px;
    }
}

@media (min-width: 375px) {
    body {
        font-size: 15px;
    }
}

@media (min-width: 480px) {
    body {
        font-size: 16px;
    }
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

/* ===================================
   RESPONSIVE IMAGES
   =================================== */

img {
    max-width: 100%;
    height: auto;
    display: block;
}

img,
picture,
video {
    width: 100%;
    height: auto;
}

/* Prevent images from being larger than their container */
.hero-image-wrapper img,
.book-image-wrapper img,
.author-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ===================================
   SCROLLBAR STYLING
   =================================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0d0d0d;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#d4af37, #8b0000);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(#8b0000, #dc143c);
}

::selection {
    color: #000;
    background: #d4af37;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
    width: 100%;
}

@media (min-width: 375px) {
    .container {
        padding: 0 1.25rem;
    }
}

@media (min-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 640px) {
    .container {
        padding: 0 2rem;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 3rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 4rem;
    }
}

@media (min-width: 1440px) {
    .container {
        padding: 0 5rem;
    }
}

.hidden {
    display: none !important;
}

/* ===================================
   ANIMATED BACKGROUND
   =================================== */

.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Ensure content is above background */
section {
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.container, .nav {
    position: relative;
    z-index: 10;
}

/* Only hide sections that should animate in */
section.animate-on-scroll:not(.animated) {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    will-change: opacity, transform;
}

section.animated {
    will-change: auto;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3), rgba(139, 0, 0, 0.1));
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.25), rgba(139, 0, 0, 0.05));
    bottom: -150px;
    right: -150px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 0, 0, 0.2), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    33% {
        transform: translate3d(50px, -50px, 0) scale(1.1);
    }
    66% {
        transform: translate3d(-50px, 50px, 0) scale(0.9);
    }
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    will-change: contents;
    contain: layout style paint;
}


.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top, rgba(139, 0, 0, 0.15), transparent 60%);
    pointer-events: none;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(220, 20, 60, 0.05));
    filter: blur(40px);
    animation: floatShape 15s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: translate(100px, -100px) rotate(180deg);
        opacity: 0.8;
    }
}

/* ===================================
   BUTTONS
   =================================== */

button, .btn, a {
    text-decoration: none;
}

button, .btn {
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    text-decoration: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

button:focus, .btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.5);
}

button:hover, .btn:hover, a:hover {
    text-decoration: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    min-height: 44px;
    min-width: 44px;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    text-transform: none;
    text-decoration: none;
    border-radius: 8px;
    white-space: nowrap;
    user-select: none;
    position: relative;
    overflow: hidden;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.2);
}

@media (min-width: 480px) {
    .btn {
        padding: 0.875rem 2rem;
    }
}

@media (min-width: 768px) {
    .btn {
        padding: 1rem 2.75rem;
        font-size: 1rem;
        min-height: 48px;
    }
}

.btn-primary {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    color: #ffffff;
    border: none;
    box-shadow: 
        0 4px 20px rgba(220, 20, 60, 0.25),
        0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    box-shadow: 
        0 8px 35px rgba(220, 20, 60, 0.4),
        0 4px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
    background: linear-gradient(135deg, #9B0000 0%, #EC144C 100%);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 
        0 2px 10px rgba(220, 20, 60, 0.3),
        0 1px 4px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    border: 2px solid #D4AF37;
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.05);
    backdrop-filter: blur(10px);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #D4AF37;
    transform: translate(-50%, -50%);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-secondary:hover {
    color: #000000;
    border-color: #D4AF37;
    box-shadow: 
        0 4px 20px rgba(212, 175, 55, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary:active {
    transform: translateY(0);
}

/* ===================================
   NAVIGATION
   =================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.3s ease;
    background: transparent;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

@media (max-width: 767px) {
    .nav.scrolled {
        background: rgba(10, 10, 10, 0.95);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.5rem;
    width: 100%;
}

@media (min-width: 375px) {
    .nav-container {
        padding: 0 1.25rem;
    }
}

@media (min-width: 480px) {
    .nav-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 768px) {
    .nav-container {
        height: 5rem;
        padding: 0 3rem;
    }
}

@media (min-width: 1024px) {
    .nav-container {
        padding: 0 4rem;
    }
}

@media (min-width: 1440px) {
    .nav-container {
        padding: 0 5rem;
    }
}

.nav-logo {
    font-size: 1.25rem;
    font-weight: 400;
    color: #D4AF37;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.025em;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    transition: all 0.3s ease;
}

.nav-logo:hover {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
    transform: scale(1.05);
}

@media (min-width: 768px) {
    .nav-logo {
        font-size: 1.5rem;
    }
}

.nav-toggle {
    display: block;
    padding: 0.625rem;
    min-width: 48px;
    min-height: 48px;
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    touch-action: manipulation;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.nav-toggle:hover,
.nav-toggle:active {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
    transform: scale(0.95);
}

.nav-toggle:active {
    transform: scale(0.92);
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
}

.nav-toggle-icon {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2.5;
    transition: transform 0.3s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
    transform: rotate(90deg);
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

/* Mobile menu overlay */
.nav-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 98;
    animation: fadeIn 0.3s ease;
}

.nav-menu-overlay.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.nav-menu.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 4.5rem;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.98) 0%,
        rgba(10, 10, 10, 0.98) 100%
    );
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    padding: 2rem 0 3rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(212, 175, 55, 0.1);
    max-height: calc(100vh - 4.5rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 99;
    animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0.5rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-menu.mobile-open::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(212, 175, 55, 0.5),
        transparent
    );
}

.nav-menu.mobile-open .nav-link {
    display: block;
    width: calc(100% - 2rem);
    margin: 0 1rem;
    padding: 1rem 1.25rem;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-menu.mobile-open .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, #D4AF37, #8B0000);
    border-radius: 0 3px 3px 0;
    transition: height 0.3s ease;
}

.nav-menu.mobile-open .nav-link:hover,
.nav-menu.mobile-open .nav-link:active {
    background: linear-gradient(
        to right,
        rgba(212, 175, 55, 0.1),
        rgba(212, 175, 55, 0.05)
    );
    color: #D4AF37;
    padding-left: 1.5rem;
    transform: translateX(4px);
}

.nav-menu.mobile-open .nav-link:hover::before,
.nav-menu.mobile-open .nav-link:active::before {
    height: 60%;
}

.nav-menu.mobile-open .nav-btn {
    width: calc(100% - 2rem);
    margin: 0.75rem 1rem 0;
    padding: 1rem 1.5rem;
    min-height: 52px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.nav-link {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 0;
    display: inline-block;
    font-weight: 500;
    letter-spacing: 0.01em;
}

@media (min-width: 1024px) {
    .nav-link {
        font-size: 1rem;
    }
}

.nav-link:hover {
    color: #D4AF37;
    text-decoration: none;
}

.nav-link:focus {
    outline: none;
    color: #D4AF37;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-btn {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    color: #ffffff;
    padding: 0.625rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(220, 20, 60, 0.25);
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .nav-btn {
        font-size: 1rem;
        padding: 0.75rem 2rem;
    }
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.nav-btn:hover {
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
    transform: translateY(-2px);
    text-decoration: none;
    color: #ffffff;
}

.nav-btn:hover::before {
    left: 100%;
}

.nav-btn:active {
    transform: translateY(0);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 4rem;
    padding-bottom: 2rem;
    z-index: 10;
    width: 100%;
}

@media (min-width: 768px) {
    .hero {
        padding-top: 15rem;
        padding-bottom: 5rem;
    }
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(139, 0, 0, 0.1), transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem 0;
    position: relative;
    z-index: 10;
}

@media (min-width: 480px) {
    .hero-grid {
        gap: 2.5rem;
    }
}

@media (min-width: 768px) {
    .hero-grid {
        gap: 3rem;
        padding: 2rem 0;
    }
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8rem;
        padding: 3rem 0;
    }
}

@media (min-width: 1024px) {
    .hero-image-container {
        order: 1;
        display: flex;
        justify-content: flex-end;
    }
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 20rem;
    margin: 0 auto;
    transform-style: preserve-3d;
}

@media (prefers-reduced-motion: no-preference) {
    .hero-image-wrapper {
        animation: floatBook 6s ease-in-out infinite;
    }
}

@media (min-width: 480px) {
    .hero-image-wrapper {
        max-width: 22rem;
    }
}

@media (min-width: 768px) {
    .hero-image-wrapper {
        max-width: 24rem;
    }
}

@media (min-width: 1024px) {
    .hero-image-wrapper {
        max-width: 28rem;
        margin: 0;
    }
}

@keyframes floatBook {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotateY(0deg);
    }
    50% {
        transform: translate3d(0, -20px, 0) rotateY(5deg);
    }
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(220, 20, 60, 0.3), rgba(139, 0, 0, 0.2));
    filter: blur(60px);
    transition: all 0.5s ease;
    z-index: -1;
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.hero-image-wrapper:hover::before {
    filter: blur(80px);
    transform: scale(1.2);
}

.hero-image {
    position: relative;
    width: 100%;
    height: auto;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.1);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    border-radius: 4px;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.hero-image-wrapper:hover .hero-image {
    box-shadow: 
        0 30px 80px rgba(139, 0, 0, 0.6),
        0 0 60px rgba(212, 175, 55, 0.3);
    transform: scale(1.02) rotateY(-2deg);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .hero-content {
        order: 2;
        text-align: left;
    }
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #D4AF37;
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 0.375rem 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-badge {
        font-size: 0.875rem;
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 
        0 0 20px rgba(212, 175, 55, 0.3),
        0 0 40px rgba(139, 0, 0, 0.2);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@media (min-width: 375px) {
    .hero-title {
        font-size: 2rem;
    }
}

@media (min-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }
}

@keyframes titleGlow {
    0% {
        text-shadow: 
            0 0 20px rgba(212, 175, 55, 0.3),
            0 0 40px rgba(139, 0, 0, 0.2);
    }
    100% {
        text-shadow: 
            0 0 30px rgba(212, 175, 55, 0.5),
            0 0 60px rgba(220, 20, 60, 0.3);
    }
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-author {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #D4AF37;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

@media (min-width: 768px) {
    .hero-author {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-author {
        font-size: 1.875rem;
    }
}

.hero-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    border-left: 2px solid #D4AF37;
    padding-left: 1rem;
    margin: 0 auto 1.5rem;
    max-width: 28rem;
}

@media (min-width: 768px) {
    .hero-quote {
        font-size: 1.25rem;
        padding-left: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-quote {
        font-size: 1.5rem;
        margin: 0 0 1.5rem;
        max-width: none;
    }
}

.hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.625;
    margin: 0 auto 2rem;
    max-width: 36rem;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .hero-description {
        margin: 0 0 2rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }
}

/* ===================================
   SECTION STYLES
   =================================== */

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 480px) {
    .section-header {
        margin-bottom: 3rem;
    }
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 4rem;
    }
}

@media (min-width: 1024px) {
    .section-header {
        margin-bottom: 5rem;
    }
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.625rem;
    color: #D4AF37;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    position: relative;
    line-height: 1.3;
}

@media (min-width: 480px) {
    .section-title {
        font-size: 1.875rem;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    animation: titleLine 2s ease-in-out infinite;
}

@keyframes titleLine {
    0%, 100% {
        width: 60px;
        opacity: 0.6;
    }
    50% {
        width: 100px;
        opacity: 1;
    }
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3.75rem;
    }
}

.section-divider {
    width: 5rem;
    height: 2px;
    background: #D4AF37;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-divider {
        width: 6rem;
    }
}

/* ===================================
   BOOK SECTION
   =================================== */

.book-section {
    position: relative;
    padding-top: 4rem;
    padding-bottom: 4rem;
    z-index: 10;
    width: 100%;
}

@media (min-width: 768px) {
    .book-section {
        padding-top: 5rem;
        padding-bottom: 4rem;
    }
}

.book-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(139, 0, 0, 0.08), transparent);
    pointer-events: none;
    z-index: -1;
}

@media (min-width: 768px) {
    .book-section {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .book-section {
        padding: 8rem 0;
    }
}

.book-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(139, 0, 0, 0.05), transparent);
    pointer-events: none;
}

.book-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .book-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8rem;
    }
}

.book-image-container {
    display: flex;
    justify-content: center;
}

@media (min-width: 1024px) {
    .book-image-container {
        justify-content: flex-end;
    }
}

.book-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 24rem;
}

.book-image {
    width: 100%;
    height: auto;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(212, 175, 55, 0.1);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.book-image-wrapper:hover .book-image {
    transform: scale(1.05) rotateY(-3deg);
    box-shadow: 
        0 35px 70px -12px rgba(0, 0, 0, 0.6),
        0 0 50px rgba(212, 175, 55, 0.3);
}

.book-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(220, 20, 60, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.book-image-wrapper:hover .book-image-overlay {
    opacity: 1;
}

.book-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .book-content {
        gap: 2.5rem;
    }
}

.book-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: white;
    line-height: 1.25;
}

@media (min-width: 640px) {
    .book-subtitle {
        font-size: 1.875rem;
    }
}

@media (min-width: 768px) {
    .book-subtitle {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .book-subtitle {
        font-size: 3rem;
    }
}

.book-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.book-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.625;
}

@media (min-width: 768px) {
    .book-text p {
        font-size: 1.125rem;
    }
}

.book-genres {
    margin-top: 1rem;
}

.genres-title {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .genres-title {
        font-size: 1.125rem;
    }
}

.genres-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (min-width: 768px) {
    .genres-list {
        gap: 1.25rem;
    }
}

.genre-tag {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #D4AF37;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .genre-tag {
        padding: 0.5rem 1.25rem;
        font-size: 1rem;
    }
}

.genre-tag:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #D4AF37;
}

.book-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    width: 1.25rem;
    height: 1.25rem;
}

@media (min-width: 768px) {
    .star {
        width: 1.5rem;
        height: 1.5rem;
    }
}

.rating-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .rating-text {
        font-size: 1rem;
    }
}

/* ===================================
   AUTHOR SECTION
   =================================== */

.author-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    z-index: 10;
    backdrop-filter: blur(10px);
    width: 100%;
}

@media (min-width: 768px) {
    .author-section {
        padding: 5rem 0;
    }
}

@media (min-width: 768px) {
    .author-section {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .author-section {
        padding: 8rem 0;
    }
}

.author-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .author-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8rem;
    }
}

.author-image-container {
    display: flex;
    justify-content: center;
    order: 2;
}

@media (min-width: 1024px) {
    .author-image-container {
        order: 1;
        justify-content: flex-end;
    }
}

.author-frame {
    width: 100%;
    max-width: 24rem;
    background: transparent;
    padding: 0;
}

.author-frame > div {
    width: 100%;
    height: auto;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
}

.author-avatar {
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .author-avatar {
        width: 14rem;
        height: 14rem;
    }
}

@media (min-width: 1024px) {
    .author-avatar {
        width: 16rem;
        height: 16rem;
    }
}

.author-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
}

.author-initials {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: white;
}

@media (min-width: 768px) {
    .author-initials {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .author-initials {
        font-size: 5rem;
    }
}

.author-label {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .author-label {
        font-size: 0.875rem;
    }
}

.author-content {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .author-content {
        order: 2;
        gap: 2.5rem;
    }
}

.author-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #D4AF37;
    line-height: 1.25;
}

@media (min-width: 640px) {
    .author-name {
        font-size: 1.875rem;
    }
}

@media (min-width: 768px) {
    .author-name {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .author-name {
        font-size: 3rem;
    }
}

.author-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.author-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.625;
}

@media (min-width: 768px) {
    .author-text p {
        font-size: 1.125rem;
    }
}

.author-achievements {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .author-achievements {
        padding: 2.5rem;
    }
}

@media (min-width: 768px) {
    .author-achievements {
        padding: 2rem;
    }
}

.achievements-title {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
}

@media (min-width: 768px) {
    .achievements-title {
        font-size: 1.25rem;
    }
}

.achievements-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.achievements-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .achievements-list li {
        font-size: 1rem;
    }
}

.achievement-bullet {
    color: #DC143C;
    font-size: 1.25rem;
    line-height: 1;
    margin-top: 0.125rem;
}

.author-social {
    margin-top: 1rem;
}

.social-title {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .social-title {
        font-size: 1.125rem;
    }
}

.social-links {
    display: flex;
    gap: 1rem;
}

@media (min-width: 768px) {
    .social-links {
        gap: 1.25rem;
    }
}

.social-link {
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #D4AF37;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.2) rotate(5deg);
}

@media (min-width: 768px) {
    .social-link {
        width: 3rem;
        height: 3rem;
    }
}

.social-link:hover {
    background: #D4AF37;
    color: #000;
    border-color: #D4AF37;
}

/* ===================================
   DETAILS SECTION
   =================================== */

.details-section {
    position: relative;
    padding: 4rem 0;
    z-index: 10;
    width: 100%;
}

@media (min-width: 768px) {
    .details-section {
        padding: 5rem 0;
    }
}

@media (min-width: 768px) {
    .details-section {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .details-section {
        padding: 8rem 0;
    }
}

.details-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(139, 0, 0, 0.05), transparent);
    pointer-events: none;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .details-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
        margin-bottom: 4rem;
    }
}

.detail-card {
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(10px);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .detail-card {
        padding: 3rem 2.5rem;
    }
}

@media (min-width: 1024px) {
    .detail-card {
        padding: 3.5rem 3rem;
    }
}

.detail-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.detail-card:hover::before {
    opacity: 1;
}

@media (min-width: 768px) {
    .detail-card {
        padding: 2rem;
    }
}

.detail-card:hover {
    border-color: #D4AF37;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(212, 175, 55, 0.2);
}

.detail-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B0000, #DC143C);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 15px rgba(220, 20, 60, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
}

.detail-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(220, 20, 60, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(10px);
}

.detail-card:hover .detail-icon::after {
    opacity: 1;
}

@media (min-width: 768px) {
    .detail-icon {
        width: 4rem;
        height: 4rem;
    }
}

.detail-card:hover .detail-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 
        0 8px 25px rgba(220, 20, 60, 0.5),
        0 0 30px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.detail-label {
    color: #D4AF37;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .detail-label {
        font-size: 1.125rem;
    }
}

.detail-value {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .detail-value {
        font-size: 1rem;
    }
}

.retailers-section {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.retailers-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: white;
    text-align: center;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .retailers-title {
        font-size: 1.875rem;
    }
}

@media (min-width: 768px) {
    .retailers-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .retailers-title {
        font-size: 3rem;
    }
}

.retailers-subtitle {
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .retailers-subtitle {
        font-size: 1.125rem;
        margin-bottom: 4rem;
    }
}

.retailers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 1024px) {
    .retailers-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        margin-bottom: 3rem;
    }
}

.retailer-link {
    padding: 1.25rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .retailer-link {
        padding: 1.5rem 2.5rem;
        font-size: 1rem;
    }
}

.retailer-link:hover {
    text-decoration: none;
    color: #ffffff;
}

@media (min-width: 768px) {
    .retailer-link {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

.retailer-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--retailer-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.retailer-link:hover {
    border-color: #D4AF37;
    transform: scale(1.05);
}

.retailer-link:hover::before {
    opacity: 0.1;
}

.retailer-link span {
    position: relative;
    z-index: 1;
}

.limited-edition {
    padding: 3rem 2rem;
    background: linear-gradient(to right, rgba(139, 0, 0, 0.1), rgba(220, 20, 60, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
    .limited-edition {
        padding: 4rem 3rem;
    }
}

.limited-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #D4AF37;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .limited-title {
        font-size: 1.875rem;
    }
}

@media (min-width: 768px) {
    .limited-title {
        font-size: 2.25rem;
    }
}

.limited-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .limited-text {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
}

/* ===================================
   REVIEWS SECTION
   =================================== */

.reviews-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    z-index: 10;
    width: 100%;
}

@media (min-width: 768px) {
    .reviews-section {
        padding: 5rem 0;
    }
}

@media (min-width: 768px) {
    .reviews-section {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .reviews-section {
        padding: 8rem 0;
    }
}

.reviews-carousel {
    max-width: 1200px;
    margin: 0 auto 3rem;
    width: 100%;
}

@media (min-width: 768px) {
    .reviews-carousel {
        margin-bottom: 4rem;
    }
}

@media (min-width: 768px) {
    .reviews-carousel {
        margin-bottom: 5rem;
    }
}

.reviews-main {
    position: relative;
    padding: 0 2rem;
}

@media (min-width: 768px) {
    .reviews-main {
        padding: 0 4rem;
    }
}

@media (min-width: 1024px) {
    .reviews-main {
        padding: 0 6rem;
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    transition: all 0.3s ease;
    z-index: 10;
}

@media (min-width: 768px) {
    .carousel-btn {
        width: 3rem;
        height: 3rem;
    }
}

.carousel-btn:hover {
    background: #D4AF37;
    color: #000;
    border-color: #D4AF37;
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.review-card-main {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 3rem;
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.review-card-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

@media (min-width: 768px) {
    .review-card-main {
        padding: 4rem;
    }
}

@media (min-width: 1024px) {
    .review-card-main {
        padding: 5rem;
    }
}

.quote-icon {
    color: #D4AF37;
    opacity: 0.2;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .quote-icon {
        margin-bottom: 1.5rem;
    }
}

.review-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .review-stars {
        margin-bottom: 2rem;
    }
}

.review-stars svg {
    width: 1.5rem;
    height: 1.5rem;
}

@media (min-width: 768px) {
    .review-stars svg {
        width: 1.75rem;
        height: 1.75rem;
    }
}

.review-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 2rem;
    font-style: italic;
    line-height: 1.625;
}

@media (min-width: 768px) {
    .review-text {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .review-text {
        font-size: 1.5rem;
    }
}

.review-author {
    text-align: center;
}

.review-name {
    color: #D4AF37;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .review-name {
        font-size: 1.25rem;
    }
}

.review-role {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .review-role {
        font-size: 1rem;
    }
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    height: 0.5rem;
    border-radius: 9999px;
    background: rgba(212, 175, 55, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    width: 2.5rem;
    background: #D4AF37;
}

.carousel-dot:not(.active) {
    width: 0.5rem;
}

.carousel-dot:hover:not(.active) {
    background: rgba(212, 175, 55, 0.5);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .reviews-grid {
        gap: 3rem;
    }
}

.review-card-small {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .review-card-small {
        padding: 3rem;
    }
}

@media (min-width: 1024px) {
    .review-card-small {
        padding: 3.5rem;
    }
}

.review-card-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.review-card-small:hover::before {
    left: 100%;
}

.review-card-small:hover {
    border-color: #D4AF37;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(212, 175, 55, 0.15);
}

.review-stars-small {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star-small {
    width: 1rem;
    height: 1rem;
}

.review-text-small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    font-style: italic;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-name-small {
    color: #D4AF37;
    font-size: 0.875rem;
    font-weight: 500;
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact-section {
    padding: 4rem 0;
    position: relative;
    z-index: 10;
    width: 100%;
}

@media (min-width: 768px) {
    .contact-section {
        padding: 5rem 0;
    }
}

@media (min-width: 768px) {
    .contact-section {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .contact-section {
        padding: 8rem 0;
    }
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

/* ===================================
   CONTACT FORM
   =================================== */

.contact-form-wrapper {
    margin-top: 4rem;
    width: 100%;
}

@media (min-width: 768px) {
    .contact-form-wrapper {
        margin-top: 5rem;
    }
}

.contact-form-subtitle {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .contact-form-subtitle {
        font-size: 1.125rem;
        margin-bottom: 3rem;
    }
}

.contact-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 2rem 1.5rem;
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

@media (min-width: 480px) {
    .contact-form {
        padding: 2.5rem;
    }
}

@media (min-width: 768px) {
    .contact-form {
        padding: 4rem;
    }
}

@media (min-width: 1024px) {
    .contact-form {
        padding: 5rem;
    }
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
    animation: rotateGradient 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.hidden {
    display: none !important;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: #D4AF37;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: 0.025em;
}

@media (min-width: 768px) {
    .form-label {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: #ffffff;
    font-size: 16px; /* Prevents zoom on iOS */
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    outline: none;
    position: relative;
    z-index: 1;
    -webkit-appearance: none;
    appearance: none;
    touch-action: manipulation;
}

@media (min-width: 480px) {
    .form-input,
    .form-textarea {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .form-input,
    .form-textarea {
        padding: 1.25rem 1.75rem;
        font-size: 1.0625rem;
    }
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input:focus,
.form-textarea:focus {
    border-color: #D4AF37;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-input.error,
.form-textarea.error {
    border-color: #DC143C;
    background: rgba(220, 20, 60, 0.1);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

.form-input.valid,
.form-textarea.valid {
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-input:disabled,
.form-textarea:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .form-textarea {
        min-height: 180px;
    }
}

.contact-submit-btn {
    width: 100%;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.125rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .contact-submit-btn {
        padding: 1.25rem 3rem;
        font-size: 1.0625rem;
    }
}

.contact-submit-btn svg {
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover svg {
    transform: translateX(4px);
}

.contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.contact-submit-btn:disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.contact-submit-btn .spinning {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.contact-form-success {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 4rem 3rem;
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .contact-form-success {
        padding: 5rem 4rem;
    }
}

.success-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B0000, #DC143C);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

.success-icon svg {
    color: #ffffff;
}

.success-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #D4AF37;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .success-title {
        font-size: 2.5rem;
    }
}

.success-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.0625rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .success-text {
        font-size: 1.125rem;
    }
}

.contact-info {
    margin-top: 4rem;
    text-align: center;
}

@media (min-width: 768px) {
    .contact-info {
        margin-top: 5rem;
    }
}

.contact-title {
    color: #D4AF37;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

@media (min-width: 768px) {
    .contact-title {
        font-size: 1.5rem;
    }
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 0;
}

@media (min-width: 768px) {
    .contact-email {
        font-size: 1.125rem;
    }
}

.contact-email:hover {
    color: #D4AF37;
    text-decoration: none;
}

.contact-email span {
    position: relative;
}

.contact-email span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-email:hover span::after {
    width: 100%;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: rgba(10, 10, 10, 0.6);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 4rem 0;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(20px);
    width: 100%;
}

.footer .container {
    max-width: 1400px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

@media (min-width: 768px) {
    .footer {
        padding: 4rem 0;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
        margin-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
    }
}

.footer-column {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-column {
        text-align: left;
    }
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #D4AF37;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .footer-title {
        font-size: 1.5rem;
    }
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    line-height: 1.625;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-text {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
}

/* Footer Newsletter */
.footer-newsletter {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

@media (min-width: 768px) {
    .footer-newsletter {
        margin-top: 0;
        padding-top: 0;
    }
}

.footer-newsletter-title {
    color: #D4AF37;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

@media (min-width: 768px) {
    .footer-newsletter-title {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
}

.footer-newsletter-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .footer-newsletter-subtitle {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
}

.footer-newsletter-form {
    margin-bottom: 0.75rem;
}

.footer-newsletter-input-wrapper {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.footer-newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #ffffff;
    font-size: 0.875rem;
    font-family: inherit;
    border-radius: 6px;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
    .footer-newsletter-input {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
    }
}

.footer-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter-input:focus {
    border-color: #D4AF37;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.footer-newsletter-btn {
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(220, 20, 60, 0.2);
}

@media (min-width: 768px) {
    .footer-newsletter-btn {
        padding: 0.875rem 1.25rem;
    }
}

.footer-newsletter-btn:hover {
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.4);
    transform: translateY(-1px);
    background: linear-gradient(135deg, #9B0000 0%, #EC144C 100%);
}

.footer-newsletter-btn:active {
    transform: translateY(0);
}

.footer-newsletter-btn svg {
    transition: transform 0.3s ease;
}

.footer-newsletter-btn:hover svg {
    transform: translateX(2px);
}

.footer-newsletter-privacy {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    line-height: 1.4;
    margin-top: 0.75rem;
}

@media (min-width: 768px) {
    .footer-newsletter-privacy {
        font-size: 0.8125rem;
    }
}

.footer-newsletter-success {
    color: #D4AF37;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-newsletter-success svg {
    width: 16px;
    height: 16px;
}

.footer-heading {
    color: #D4AF37;
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .footer-heading {
        font-size: 1.125rem;
    }
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
    padding: 0.25rem 0;
}

@media (min-width: 768px) {
    .footer-link {
        font-size: 1rem;
    }
}

.footer-link:hover {
    color: #D4AF37;
    text-decoration: none;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #D4AF37;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-link:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .footer-social {
        justify-content: flex-start;
    }
}

.footer-social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    text-decoration: none;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .footer-social-link {
        width: 2.75rem;
        height: 2.75rem;
    }
}

.footer-social-link:hover {
    background: #D4AF37;
    color: #000;
    border-color: #D4AF37;
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.875rem;
    margin-top: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.5rem 0;
}

@media (min-width: 768px) {
    .footer-email {
        font-size: 0.9375rem;
        margin-top: 2rem;
    }
}

.footer-email:hover {
    color: #D4AF37;
    text-decoration: none;
}

.footer-email svg {
    flex-shrink: 0;
}

.footer-email span {
    position: relative;
}

.footer-email span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #D4AF37;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-email:hover span::after {
    width: 100%;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.3), transparent);
    margin-bottom: 2rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        font-size: 0.875rem;
    }
}

.back-to-top {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    background: linear-gradient(to bottom right, #8B0000, #DC143C);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 25px -5px rgba(220, 20, 60, 0.3);
    transition: all 0.3s ease;
    z-index: 50;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(220, 20, 60, 0.2);
}

@media (min-width: 768px) {
    .back-to-top {
        bottom: 2rem;
        right: 2rem;
        width: 56px;
        height: 56px;
        min-width: 56px;
        min-height: 56px;
    }
}

.back-to-top:hover {
    transform: scale(1.1);
}

.back-to-top.hidden {
    display: none;
}


