/* 
   HIRKAN LUXURY OUTDOORS - STYLE SHEETS
   Designed by Award-Winning Creative Director & Senior UI/UX Designer
   Theme: Nature, Luxury, Golden Hour, Minimalism
*/

@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #0F2E1E;       /* Deep Forest Green */
    --primary-light: #1A3E2C;
    --accent: #C5A880;        /* Champagne Gold */
    --accent-dark: #A98E65;
    --dark: #0A0A0A;          /* Premium Obsidian Black */
    --light-bg: #F9F8F6;      /* Off-White Silk */
    --light-text: #EAE5DF;
    --gray-muted: #8E8A84;
    --glass-bg: rgba(15, 46, 30, 0.15);
    --glass-border: rgba(255, 255, 255, 0.08);
    --font: 'Vazirmatn', sans-serif;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset and Global Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    cursor: none; /* Hide default cursor for custom cursor experience */
}

html {
    scroll-behavior: smooth;
    direction: rtl;
    background-color: var(--dark);
    color: var(--light-text);
    font-family: var(--font);
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    position: relative;
    background: var(--dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--dark);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Selection */
::selection {
    background-color: var(--accent);
    color: var(--dark);
}

/* Custom Cursor */
.custom-cursor {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.custom-cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease-out, width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
}

/* Cursor hover states */
.hover-active .custom-cursor {
    width: 12px;
    height: 12px;
    background-color: #fff;
}

.hover-active .custom-cursor-follower {
    width: 60px;
    height: 60px;
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
}

.hover-btn .custom-cursor-follower {
    width: 70px;
    height: 70px;
    background-color: var(--accent);
    border-color: var(--accent);
    opacity: 0.15;
}

/* Screen Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--dark);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), visibility 1s;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-brand {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 0.5rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: preloader-fade-in 1s forwards 0.3s;
    font-family: var(--font);
}

.preloader-bar {
    width: 200px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.preloader-progress {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 0%;
    background-color: var(--accent);
    transition: width 0.05s linear;
}

.preloader-number {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray-muted);
    letter-spacing: 0.1rem;
}

@keyframes preloader-fade-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typography & Layout Helpers */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

@media (max-width: 992px) {
    .container {
        padding: 0 2rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* Standard Premium Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background-color: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
}

.logo-icon {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent);
    margin-left: 0.5rem;
    border: 2px solid var(--accent);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.logo-link:hover .logo-icon {
    background-color: var(--accent);
    color: var(--dark);
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 3rem;
}

nav ul li a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-fast);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: var(--transition-fast);
}

nav ul li a:hover {
    color: var(--accent);
}

nav ul li a:hover::after {
    width: 100%;
}

.header-cta {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border: 1px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 50px;
    background: transparent;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.header-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition-smooth);
    z-index: -1;
}

.header-cta:hover {
    color: var(--dark);
}

.header-cta:hover::before {
    width: 250px;
    height: 250px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    width: 30px;
    cursor: none;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: var(--transition-fast);
}

@media (max-width: 992px) {
    nav, .header-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
}

/* Mobile Menu Panel */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--dark);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav ul {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.mobile-nav ul li a {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--light-text);
    text-decoration: none;
    transition: var(--transition-fast);
}

.mobile-nav ul li a:hover {
    color: var(--accent);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(15,46,30,0.4) 0%, rgba(10,10,10,1) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.65;
    transform: scale(1.05);
    transition: transform 8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero:hover .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.9) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    z-index: 5;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(50px);
    animation: hero-fade-in 1.5s forwards 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes hero-fade-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1.5rem;
    background: rgba(197, 168, 128, 0.12);
    border: 1px solid rgba(197, 168, 128, 0.3);
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.hero-badge::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.4; }
    100% { transform: scale(1); opacity: 1; }
}

.hero-title {
    font-size: 4.8rem;
    font-weight: 900;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    word-break: keep-all;
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.hero-title span {
    display: block;
    background: linear-gradient(135deg, #fff 30%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--gray-muted);
    max-width: 750px;
    margin: 0 auto 3.5rem auto;
    line-height: 1.8;
}

@media (max-width: 576px) {
    .hero-description {
        font-size: 1rem;
    }
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

@media (max-width: 576px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1.1rem 2.8rem;
    background-color: var(--accent);
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(197, 168, 128, 0.2);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.15);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1.1rem 2.8rem;
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #fff;
    transform: translateY(-3px);
}

/* Coordinates overlay */
.hero-coordinates {
    position: absolute;
    bottom: 2.5rem;
    right: 4rem;
    font-size: 0.85rem;
    font-family: var(--font);
    font-weight: 300;
    color: var(--gray-muted);
    letter-spacing: 2px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-coordinates::before {
    content: '';
    width: 30px;
    height: 1px;
    background-color: var(--accent);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-muted);
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-decoration: none;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--accent) 50%, rgba(255,255,255,0) 100%);
    animation: scroll-anim 2s infinite;
}

@keyframes scroll-anim {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 992px) {
    .hero-coordinates, .hero-scroll-indicator {
        display: none;
    }
}

/* Section Common Styling */
.section {
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}

.section-dark {
    background-color: var(--dark);
}

.section-light {
    background-color: var(--light-bg);
    color: var(--dark);
}

/* Reveal on Scroll class */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Section Headers */
.section-header {
    margin-bottom: 6rem;
    position: relative;
}

.section-title-wrapper {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
}

.section-num {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--accent);
    font-family: var(--font);
}

.section-title {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-light .section-title {
    color: var(--dark);
}

.section-dark .section-title {
    color: #fff;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-muted);
    margin-top: 1.5rem;
    max-width: 500px;
    line-height: 1.7;
    font-weight: 400;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.4rem;
    }
}

/* Philosophy Section */
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

@media (max-width: 992px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.philosophy-text-wrapper {
    display: flex;
    flex-direction: column;
}

.philosophy-label {
    font-size: 0.9rem;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.philosophy-heading {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: #fff;
}

.philosophy-desc {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--gray-muted);
    margin-bottom: 2.5rem;
}

.philosophy-quote {
    border-right: 3px solid var(--accent);
    padding-right: 1.5rem;
    font-style: italic;
    color: #fff;
    font-size: 1.15rem;
    line-height: 1.8;
}

.philosophy-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    aspect-ratio: 4/3;
}

.philosophy-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.philosophy-image-container:hover .philosophy-img {
    transform: scale(1.08);
}

.philosophy-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0) 60%);
}

.philosophy-img-tag {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 10;
    color: #fff;
    text-align: right;
}

.philosophy-img-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.philosophy-img-sub {
    font-size: 0.85rem;
    color: var(--accent);
}

/* Products Collection Section */
.product-showcase {
    position: relative;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background-color: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-12px);
    border-color: rgba(197, 168, 128, 0.25);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.product-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background-color: #151515;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent);
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
}

.product-info {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.product-category {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    transition: var(--transition-fast);
}

.product-card:hover .product-name {
    color: var(--accent);
}

.product-description {
    font-size: 0.95rem;
    color: var(--gray-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.product-specs {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.2rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.spec-label {
    color: var(--gray-muted);
}

.spec-value {
    color: var(--light-text);
    font-weight: 500;
}

.product-cta {
    width: 100%;
    padding: 1rem;
    background-color: transparent;
    border: 1px solid rgba(197, 168, 128, 0.3);
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.product-card:hover .product-cta {
    background-color: var(--accent);
    color: var(--dark);
    border-color: var(--accent);
}

/* Unique Specs Grid */
.specs-section {
    background-color: #0c1611; /* Extremely dark forestry tint */
    border-top: 1px solid rgba(197, 168, 128, 0.1);
    border-bottom: 1px solid rgba(197, 168, 128, 0.1);
}

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

@media (max-width: 992px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .specs-grid {
        grid-template-columns: 1fr;
    }
}

.spec-box {
    display: flex;
    flex-direction: column;
}

.spec-icon-wrapper {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(197, 168, 128, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent);
    background-color: rgba(15, 46, 30, 0.3);
}

.spec-box-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.spec-box-desc {
    font-size: 0.95rem;
    color: var(--gray-muted);
    line-height: 1.7;
}

/* Luxury Interactive Customizer Form */
.customizer-box {
    background-color: rgba(15, 46, 30, 0.15);
    border: 1px solid rgba(197, 168, 128, 0.15);
    border-radius: 24px;
    padding: 4rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .customizer-box {
        padding: 2rem 1.5rem;
    }
}

.customizer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
}

@media (max-width: 992px) {
    .customizer-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.customizer-form-section {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.form-group-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group-title::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
}

.custom-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

@media (max-width: 576px) {
    .custom-options-grid {
        grid-template-columns: 1fr;
    }
}

.option-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-color: rgba(10, 10, 10, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    cursor: none; /* Keep custom cursor active */
    transition: var(--transition-fast);
    position: relative;
    user-select: none;
}

.option-card:hover {
    border-color: rgba(197, 168, 128, 0.5);
    background-color: rgba(197, 168, 128, 0.03);
}

.option-card.selected {
    border-color: var(--accent);
    background-color: rgba(197, 168, 128, 0.08);
    box-shadow: 0 0 20px rgba(197, 168, 128, 0.1);
}

.option-icon {
    font-size: 1.8rem;
    color: var(--gray-muted);
    margin-bottom: 0.8rem;
    transition: var(--transition-fast);
}

.option-card.selected .option-icon {
    color: var(--accent);
}

.option-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
}

.option-desc {
    font-size: 0.8rem;
    color: var(--gray-muted);
}

/* User Info Input elements */
.luxury-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 576px) {
    .luxury-inputs {
        grid-template-columns: 1fr;
    }
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-label {
    font-size: 0.85rem;
    color: var(--gray-muted);
    font-weight: 500;
}

.luxury-input {
    background-color: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 1rem 1.2rem;
    color: #fff;
    font-family: var(--font);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.luxury-input:focus {
    outline: none;
    border-color: var(--accent);
    background-color: rgba(10, 10, 10, 0.8);
}

/* Receipt side block */
.customizer-receipt {
    background-color: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(197, 168, 128, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.receipt-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1rem;
}

.receipt-item-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.receipt-row-label {
    color: var(--gray-muted);
}

.receipt-row-value {
    color: #fff;
    font-weight: 600;
}

.receipt-total-box {
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
    padding-top: 1.5rem;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 2.5rem;
}

.receipt-total-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
}

.receipt-total-price {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background-color: var(--accent);
    color: var(--dark);
    border: none;
    border-radius: 8px;
    font-family: var(--font);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: none;
    transition: var(--transition-smooth);
}

.submit-btn:hover {
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

/* Testimonial slider Section */
.testimonial-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 0 4rem;
}

@media (max-width: 576px) {
    .testimonial-box {
        padding: 0 1rem;
    }
}

.testimonial-quote-icon {
    font-size: 4rem;
    color: rgba(197, 168, 128, 0.15);
    line-height: 0;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    visibility: hidden;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    position: relative;
}

.testimonial-text {
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
    .testimonial-text {
        font-size: 1.25rem;
    }
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
}

.author-title {
    font-size: 0.85rem;
    color: var(--gray-muted);
}

.testimonial-nav-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.test-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: var(--transition-fast);
}

.test-nav-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background-color: rgba(197, 168, 128, 0.05);
}

/* Premium Footer */
footer {
    background-color: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8rem 0 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.footer-brand-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand-desc {
    font-size: 0.95rem;
    color: var(--gray-muted);
    line-height: 1.8;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-column-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
}

.footer-links-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links-column ul li a {
    color: var(--gray-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links-column ul li a:hover {
    color: var(--accent);
    padding-right: 5px;
}

.footer-newsletter-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-input-wrapper {
    position: relative;
    width: 100%;
}

.newsletter-input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 1.1rem 1.5rem;
    color: #fff;
    font-family: var(--font);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent);
}

.newsletter-btn {
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--accent);
    border: none;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: var(--transition-smooth);
}

.newsletter-btn:hover {
    background-color: #fff;
}

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

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

.copyright-text {
    font-size: 0.85rem;
    color: var(--gray-muted);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--gray-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    background-color: rgba(197, 168, 128, 0.05);
}

/* Beautiful Interactive Custom Alerts */
.luxury-alert {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: rgba(15, 46, 30, 0.95);
    border: 1px solid var(--accent);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    z-index: 100000;
    max-width: 400px;
    direction: rtl;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(150px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-alert.show {
    transform: translateY(0);
    opacity: 1;
}

.alert-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
}

.alert-icon {
    color: var(--accent);
    font-size: 1.3rem;
}

.alert-title {
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
}

.alert-body {
    color: var(--light-text);
    font-size: 0.9rem;
    line-height: 1.6;
}
