:root {
    /* Colors - Tentazion Custom Theme */
    --bg-dark: #1c4259;
    --bg-card: rgba(28, 66, 89, 0.8);
    /* Adjusted to match bg-dark with opacity */
    --text-main: #FFFFFF;
    --text-muted: #E0E0E0;
    /* Lighter for better contrast on blue */
    --accent-gold: #c29700;
    --accent-neon: #c29700;
    /* Replaced neon with gold for consistency */
    --accent-neon-glow: rgba(194, 151, 0, 0.4);
    /* Gold glow */

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Utilities */
.text-gold {
    color: var(--accent-gold);
}

.text-neon {
    color: var(--accent-neon);
    text-shadow: 0 0 10px var(--accent-neon-glow);
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-gold);
    color: white;
    box-shadow: 0 4px 15px var(--accent-neon-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #a38100;
    /* Darker gold for hover */
    box-shadow: 0 6px 20px var(--accent-neon-glow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: var(--bg-dark);
}

/* Header / Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: background 0.3s ease;
}

header.scrolled {
    background: rgba(5, 5, 16, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}


.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--accent-neon);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
    margin-top: 100px;
    /* Added spacing from top/navbar */
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.25rem;
    color: #ddd;
    margin-bottom: 40px;
}

/* Sections General */
section {
    padding: var(--section-padding);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-neon);
}

/* Pillars / Features */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pillar-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

/* Journey Timeline */
.journey-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
}

.step-content h3 {
    color: var(--accent-neon);
    margin-bottom: 10px;
}

/* Comparison Table */
.comparison-container {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 40px;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-header {
    background: rgba(0, 0, 0, 0.5);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    padding: 30px;
    text-align: center;
}

.comp-bad {
    color: var(--text-muted);
}

.comp-good {
    color: var(--accent-gold);
    border-left: 2px solid var(--accent-gold);
}

.comparison-item {
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Chat Widget */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 2000;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    /* Mobile menu needed logic */
    .journey-steps {
        padding: 0 20px;
    }

    .step {
        flex-direction: column;
        gap: 10px;
    }

    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comp-good {
        border-left: none;
        border-top: 1px solid var(--accent-gold);
    }
}