:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #F4E99B;
    --dark-gold: #B8860B;
    --pure-black: #000000;
    --charcoal: #1a1a1a;
    --dark-gray: #2a2a2a;
    --pure-white: #ffffff;
    --off-white: #f8f8f8;
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4E99B 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
    --shadow-dark: 0 4px 40px rgba(0, 0, 0, 0.5);
    --navbar-height: 73px; /* Calculated: logo 40px + padding (1rem*2=32px) + border 1px */
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--pure-black);
    color: var(--pure-white);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo img {
    height: 80px; /* Changed from 40px to 80px to make logo 2x larger */
    transition: transform 0.3s ease;
}

.nav-logo:hover img {
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--pure-white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a i {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

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

.nav-links a:hover {
    color: var(--primary-gold);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-gold);
    color: var(--pure-black);
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn-secondary {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid var(--primary-gold);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--pure-black);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero {
    min-height: 80vh; /* Reduced from 100vh */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: calc(var(--navbar-height) + 1rem);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    z-index: 1;
}

.animated-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    /* Background image replaced by canvas particles */
    opacity: 0.3;
    pointer-events: none; /* Ensure clicks go through to content */
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-gold);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s ease forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-line:nth-child(3) {
    animation-delay: 0.4s;
}

.gold-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 500px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    width: 250px;
    height: 250px;
    position: relative;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.woman-image {
    position: absolute;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.woman-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.hero-image-container:hover .woman-image img {
    transform: scale(1.2);
}

.glow-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient-gold);
    filter: blur(40px);
    opacity: 0.3;
    animation: pulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.rotating-border {
    position: absolute;
    width: calc(250px + 100px); /* Image container width + some offset */
    height: calc(250px + 100px);
    border: 2px solid transparent;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-gold), transparent, var(--secondary-gold));
    background-clip: border-box;
    animation: rotate 8s linear infinite;
    z-index: 3;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-gold);
    font-size: 0.9rem;
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: var(--gradient-gold);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.5); }
}

/* Section Styles */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
}

/* Skinbooster Section */
.skinbooster-section {
    padding: 3rem 0;
    background: var(--charcoal);
    position: relative;
}

.skinbooster-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-gold);
}

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

.skinbooster-grid {
    display: grid;
    /* Changed grid-template-columns from 1fr 1fr to 1fr as visual column is removed */
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.skinbooster-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: rgba(42, 42, 42, 0.5);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--pure-black);
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--pure-white);
}

.info-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.info-card .whatsapp-cta {
    margin-top: 1.5rem;
    width: 100%;
    padding: 0.8rem;
    background: var(--gradient-gold);
    border: none;
    border-radius: 25px;
    color: var(--pure-black);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    justify-content: center; /* Center button text/icon */
}

.info-card .whatsapp-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.info-card .whatsapp-cta i {
    font-size: 1.2rem;
}

/* Removed skinbooster-visual styles */
/*
.skinbooster-visual {
    position: relative;
}

.visual-container {
    background: var(--dark-gray);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.before-after {
    position: relative;
    width: 100%;
    height: 400px;
    background: var(--dark-gray);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.comparison-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
}

.comparison-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    display: block;
}

.before-side {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.after-side {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.after-side img {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.before-side h4, .after-side h4 {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--pure-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 3;
}

.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--pure-white);
    border-radius: 50%;
    border: 3px solid var(--primary-gold);
    cursor: grab;
    transition: all 0.1s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.slider-handle::before {
    content: '\f07e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--dark-gray);
    font-size: 1rem;
}

.slider-handle:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.comparison-slider.dragging .slider-handle {
    cursor: grabbing;
}
*/

/* Benefits Section */
.skinbooster-benefits {
    margin-top: 2rem;
}

.skinbooster-benefits .benefits-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-gold);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.benefit-card {
    background: var(--dark-gray);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-gold);
    opacity: 0.05;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.benefit-card:hover::before {
    opacity: 0.1;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--pure-white);
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 3rem 0;
    }

    .benefits-grid {
        gap: 1rem;
    }

    .benefit-card {
        padding: 1.25rem;
    }
}

/* About Section */
/* __DELETE_ME__ */

/* Contact Section */
.contact-section {
    padding: 3rem 0;
    background: var(--pure-black);
}

.contact-gif {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-gif img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 15px;
    box-shadow: var(--shadow-dark);
}

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

.contact-info .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--charcoal);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: var(--primary-gold);
    transform: translateX(10px);
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    width: 30px;
    text-align: center;
}

.contact-method h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-method p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    word-break: break-word;
    line-height: 1.4;
}

.contact-form {
    background: var(--charcoal);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: -1rem; /* Added to reduce vertical space */
}

.form-group {
    margin-bottom: 0.75rem; /* Reduced from 1rem to make form more compact */
}

.form-group:last-of-type {
    margin-bottom: 1rem; /* Space before button */
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--dark-gray);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    color: var(--pure-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Profhilo Introduction Updated Styles */
.profhilo-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.profhilo-intro p {
    margin-bottom: 1rem;
}

.skinbooster-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.molecular-types {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.molecular-type {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.molecular-type h4 {
    color: var(--primary-gold);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.molecular-type ul, .benefits-list, .protocol-list, .price-list, .for-who-list, .downtime-list {
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.molecular-type li, .benefits-list li, .protocol-list li, .price-list li, .for-who-list li, .downtime-list li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.bioremodeling-note {
    margin-top: 1rem;
    font-style: italic;
    border-left: 3px solid var(--primary-gold);
    padding-left: 1rem;
}

.treatment-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.treatment-card, .price-card, .downtime-card {
    background: rgba(42, 42, 42, 0.7);
}

.protocol-list i, .benefits-list i {
    color: var(--primary-gold);
    margin-right: 0.5rem;
}

/* Add Font Awesome icon for microscope */
.fa-microscope:before {
    content: "\f610";
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .molecular-types {
        grid-template-columns: 1fr;
    }
    
    .treatment-details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .profhilo-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

/* Footer */
.footer {
    background: var(--charcoal);
    padding: 2rem 0 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 50px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--dark-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-gold);
    color: var(--pure-black);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding-top: calc(var(--navbar-height) + 1rem);
        min-height: 80vh;
    }

    .hero-content {
        padding-top: 2rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-top: 1rem;
    }

    .nav-links {
        position: fixed;
        top: var(--navbar-height);
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
        z-index: 999;
    }

    .nav-links.active {
        max-height: 50vh;
        opacity: 1;
        visibility: visible;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-image-container {
        width: 250px;
        height: 250px;
    }

    .rotating-border {
        width: 350px;
        height: 350px;
    }

    .woman-image {
        width: 85%;
        height: 85%;
    }

    .skinbooster-grid,
    /* .about-content, */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .footer-social {
        justify-content: center;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    .nav-logo {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .nav-logo img {
        height: 45px;
    }

    .testimonials-container {
        gap: 1rem; /* Adjust gap on smaller screens */
    }
     .testimonial-card {
         min-width: calc(100% - 1rem); /* Make card take full width minus gap for 1-item scroll */
     }
}

@media (max-width: 480px) {
    .hero {
        padding-top: calc(var(--navbar-height) + 1rem);
    }

    .hero-title {
        font-size: 1.8rem;
        margin-top: 2rem;
    }

    .hero {
        padding-top: 120px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

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

    .btn-large {
        width: 100%;
    }

    .contact-form {
        padding: 1rem;
    }

    .hero {
        padding-top: 140px;
    }

    .testimonials-container {
        gap: 1rem; /* Keep gap consistent */
    }
     .testimonial-card {
         min-width: calc(100% - 1rem); /* Ensure full width for 1-item scroll */
         padding: 2rem;
     }

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

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    width: 100%;
    z-index: 999;
    pointer-events: none; /* Allow clicks to pass through the container */
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pure-black);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    pointer-events: auto; /* Allow clicks on the buttons */
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.floating-btn i {
    font-size: 24px;
    position: relative;
    z-index: 2;
}

.floating-btn:hover {
    transform: scale(1.1);
    background: var(--primary-gold);
    color: var(--pure-black);
}

/* WhatsApp Button (Left) */
.whatsapp-btn {
    position: fixed;
    left: 30px;
    bottom: 30px;
}

/* Right Side Buttons Container */
.right-buttons {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Pulse Animation */
.btn-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    animation: pulse 2s infinite;
    background: var(--primary-gold);
    opacity: 0;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Hover effects */
.floating-btn:hover .btn-pulse {
    animation-play-state: paused;
}

/* Mobile responsiveness for floating buttons */
@media (max-width: 768px) {
    .floating-btn {
        width: 50px;
        height: 50px;
    }

    .floating-btn i {
        font-size: 20px;
    }

    .whatsapp-btn {
        left: 20px;
        bottom: 20px;
    }

    .right-buttons {
        right: 20px;
        bottom: 20px;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .floating-btn {
        width: 45px;
        height: 45px;
    }

    .floating-btn i {
        font-size: 18px;
    }

    .whatsapp-btn {
        left: 15px;
        bottom: 15px;
    }

    .right-buttons {
        right: 15px;
        bottom: 15px;
        gap: 8px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 0;
    background: var(--pure-black);
    position: relative;
    margin-top: -1px; /* Ensure no gap between sections */
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.rating-stars {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.rating-stars i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.rating-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--pure-white);
    margin-left: 0.5rem;
}

/* Styles for the video container */
.video-display-container {
    max-width: 450px; /* Control maximum width for 9:16 aspect ratio */
    margin: 0 auto; /* Center the carousel */
    aspect-ratio: 9 / 16; /* Vertical video aspect ratio */
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: var(--charcoal); /* Background for letterboxing */
    position: relative;
}

/* Replace video styles with carousel styles */
.testimonial-carousel {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-slide img,
.carousel-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-slide video {
    display: block;
}

.carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.carousel-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: var(--primary-gold);
    color: var(--pure-black);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-gold);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .video-display-container {
        max-width: 90%;
    }
    
    .carousel-arrow {
        width: 36px;
        height: 36px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--charcoal);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-gold);
}

/* Custom Cursor */
.custom-cursor {
    /* Styles defined in JS */
}