:root {
    /* Brand Colors based on the provided SVG (#164C5E) */
    --brand-primary: #123d4b;
    /* Slightly deeper for more elegance */
    --brand-light: #164C5E;
    --brand-dark: #0a252e;

    /* Gold/Champagne accent for a premium feel */
    --accent-color: #E6C27A;
    /* Softer, more champagne gold */
    --accent-hover: #F9E5B5;

    /* Dark Mode Theme */
    --bg-main: #080808;
    /* Near absolute black */
    --bg-darker: #030303;
    --bg-card: rgba(20, 20, 20, 0.4);
    /* More glass-like */
    --text-main: #f8f8f8;
    --text-muted: #a8a8a8;

    /* Typography - Premium Editorial Pairing */
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;

    /* Utility */
    --border-radius: 4px;
    /* Sharper edges for a modern editorial look */
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    letter-spacing: -2px;
}

h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    text-align: center;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.highlight {
    color: var(--accent-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.bg-darker {
    background-color: var(--bg-darker);
}

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

.mb-4 {
    margin-bottom: 2rem;
}

.w-full {
    width: 100%;
}

.mt-4 {
    margin-top: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    box-shadow: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--accent-color);
    color: var(--bg-main);
    box-shadow: 0 8px 25px rgba(230, 194, 122, 0.3);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1rem;
    letter-spacing: 2px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.25, 1), background 0.4s ease, box-shadow 0.4s ease;
}

.navbar-hidden {
    transform: translateY(-100%);
}

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

.logo-img {
    height: 160px;
    filter: brightness(0) invert(1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-color);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero .subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #ccc;
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.scarcity-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin: 0;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(230, 194, 122, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 71, 87, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 71, 87, 0);
    }
}

.hero-image {
    position: relative;
    width: 100%;
}

.image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: top center;
    display: block;
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.image-wrapper:hover .hero-img {
    transform: scale(1);
}

.floating-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

.card-icon {
    font-size: 1.5rem;
}

.card-text strong {
    display: block;
    font-size: 0.9rem;
    color: white;
}

.card-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Value Prop Section */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.value-card {
    background: var(--bg-card);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.icon-wrapper {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Offer Section */
.offer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Image Comparison Slider */
.image-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.slider-image-base {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
}

.slider-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.slider-image-overlay img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    width: 2px;
    background: var(--accent-color);
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 10;
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px;
    color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.slider-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    margin: 0;
    z-index: 20;
}

.rounded-img {
    width: 100%;
    border-radius: var(--border-radius);
    display: block;
    object-fit: cover;
    object-position: top center;
}

.price-strike {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.price-display {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    font-family: var(--font-sans);
}

.inclusion-list {
    list-style: none;
    margin-bottom: 2rem;
}

.inclusion-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.check {
    color: var(--accent-color);
    font-weight: bold;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.glass-panel h4 {
    margin-bottom: 0.5rem;
    color: white;
}

.glass-panel p {
    margin-bottom: 0;
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.portfolio-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s ease;
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

.social-link {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--text-main);
    transform: translateX(5px);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
}

.accordion {
    margin-top: 3rem;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-sans);
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.accordion-item.active .accordion-header::after {
    content: '−';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    padding-bottom: 1.5rem;
}

/* Final CTA */
.overlay-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.overlay-bg h2 {
    color: white;
}

/* Footer */
footer {
    background: #000;
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    height: 160px;
    filter: brightness(0) invert(1);
    opacity: 0.5;
    margin-bottom: 1.5rem;
}

/* Animations and Responsive */
.animate-on-scroll,
.animate-on-load {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible,
.animate-on-load.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

@media (max-width: 900px) {

    .hero-content,
    .offer-container {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 120px;
        text-align: center;
    }

    .cta-group {
        align-items: center;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .hero-img {
        height: 400px;
    }

    .floating-card {
        bottom: 10px;
        left: 10px;
        right: 10px;
    }
}