/* ========================================
   ROOT VARIABLES & RESET
   ======================================== */
:root {
    /* Primary Colors */
    --color-gold: #D4AF37;
    --color-dark-gold: #B8860B;
    --color-white: #FFFFFF;
    --color-black: #1A1A1A;
    --color-charcoal: #2D2D2D;
    --color-beige: #F5F1E8;
    --color-light-gray: #E8E8E8;
    
    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Poppins', 'Inter', sans-serif;
    --font-mono: 'Monaco', monospace;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 16px rgba(212, 175, 55, 0.3);
}

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

img, picture, video, canvas, svg {
    max-width: 100%;
    height: auto;
}

html {
    scroll-behavior: smooth;
}

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

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

h1 {
    font-size: clamp(2rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 2rem);
}

h4 {
    font-size: 1.2rem;
}

p {
    font-size: 1rem;
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    padding: 1rem 2.5rem;
    border: 2px solid transparent;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-black);
    box-shadow: var(--shadow-gold);
}

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

.btn-secondary {
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    background-color: transparent;
}

.btn-secondary:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

/* ========================================
   CONTAINER & GRID
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* ========================================
   FLOATING BUTTONS
   ======================================== */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.call-btn {
    background-color: #E74C3C;
}

.call-btn:hover {
    background-color: #C0392B;
    transform: scale(1.1);
}

.whatsapp-btn {
    background-color: #25D366;
}

.whatsapp-btn:hover {
    background-color: #1ebe57;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 1rem;
        right: 1rem;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(26, 26, 26, 0.98);
}

.nav-container {
    width: 100%;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-img {
    height: 48px;
    width: 48px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 2px;
    line-height: 1.1;
}

.logo-subtext {
    font-size: 0.7rem;
    color: var(--color-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--color-white);
    font-weight: 600;
    position: relative;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition);
}

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

.nav-cta {
    background-color: var(--color-gold);
    color: var(--color-black);
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-cta:hover {
    background-color: var(--color-dark-gold);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--color-gold);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(26, 26, 26, 0.98);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        gap: 1rem;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-7px, -7px);
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    overflow: hidden;
}

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(99, 87, 46, 0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 var(--spacing-lg);
}

.hero-accent-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), rgba(212, 175, 55, 0));
    margin: 0 auto 2rem;
    border-radius: 2px;
    animation: slideInLeft 0.8s ease-out;

    transform-origin: left;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 1rem;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-gold);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 30px;
    height: 45px;
    border: 2px solid var(--color-gold);
    border-radius: 15px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0%, 100% {
        top: 8px;
    }
    50% {
        top: 15px;
    }
}

@keyframes slideInLeft {
    from {
        transform: scaleX(0);
        transform-origin: left;
    }
    to {
        transform: scaleX(1);
        transform-origin: left;
    }
}

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

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@media (max-width: 768px) {
    .hero {
        height: 80vh;
    }

    .hero-buttons {
        gap: 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
@media (max-width: 992px) {
    .hero {
        height: 90vh;
    }
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .nav-link {
        font-size: 0.9rem;
    }
    .logo-text {
        font-size: 1.5rem;
    }
    .logo-subtext {
        font-size: 0.6rem;
    }
}
@media (max-width: 576px) {
    .hero {
        height: 60vh;
    }
    .floating-buttons {
        bottom: 0.5rem;
        right: 0.5rem;
    }
    .float-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .nav-link {
        font-size: 0.8rem;
    }
    .logo-text {
        font-size: 1.3rem;
    }
    .logo-subtext {
        font-size: 0.5rem;
    }
}

/* ========================================
   SECTION HEADER
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--color-charcoal);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.accent-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), rgba(212, 175, 55, 0.3));
    margin: 0 auto;
    border-radius: 2px;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    padding: 6rem var(--spacing-lg);
    background: linear-gradient(135deg, rgba(245, 241, 232, 0.5), rgba(255, 255, 255, 1));

    content-visibility: auto;
    contain-intrinsic-size: 1000px;}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text h3 {
    color: var(--color-black);
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--color-charcoal);
    margin-bottom: 2rem;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.value-item {
    padding: 2rem;
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--color-gold);
}

.value-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.value-item h4 {
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.value-item p {
    font-size: 0.95rem;
    color: var(--color-charcoal);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-box {
    padding: 2rem;
    background: linear-gradient(135deg, var(--color-gold), var(--color-dark-gold));
    color: var(--color-white);
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

.why-choose h3 {
    color: var(--color-black);
    margin-bottom: 1.5rem;
}

.checklist {
    list-style: none;
}

.checklist li {
    padding: 0.7rem 0;
    color: var(--color-charcoal);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

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

@media (max-width: 768px) {
    .about {
        padding: 4rem var(--spacing-lg);
    
    content-visibility: auto;
    contain-intrinsic-size: 1000px;}

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

    .about-values {
        grid-template-columns: 1fr;
    }

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

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    padding: 6rem var(--spacing-lg);
    background-color: var(--color-white);

    content-visibility: auto;
    contain-intrinsic-size: 1000px;}

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

.service-card {
    padding: 2.5rem 2rem;
    background-color: var(--color-white);
    border: 1px solid var(--color-light-gray);
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-dark-gold));
    transition: var(--transition);
}

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

.service-card:hover::before {
    left: 0;
}

.service-icon {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    color: var(--color-black);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-btn {
    background: linear-gradient(135deg, var(--color-gold), var(--color-dark-gold));
    color: var(--color-black);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    font-family: var(--font-sans);
}

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

@media (max-width: 768px) {
    .services {
        padding: 4rem var(--spacing-lg);
    
    content-visibility: auto;
    contain-intrinsic-size: 1000px;}

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ========================================
   MODAL
   ======================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 2rem;
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background-color: var(--color-white);
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease-out;
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-gold);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.2);
    color: var(--color-dark-gold);
}

.modal-header {
    background: linear-gradient(135deg, var(--color-gold), var(--color-dark-gold));
    color: var(--color-black);
    padding: 3rem 2rem;
    text-align: center;
}

.modal-header h2 {
    margin-bottom: 0.5rem;
}

.modal-header p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.modal-body {
    padding: 3rem 2rem;
}

.modal-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    background-color: var(--color-beige);
    transition: var(--transition);
}

.feature-item:hover {
    background-color: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--color-charcoal);
}

.modal-gallery {
    margin-bottom: 2rem;
}

.modal-gallery h3 {
    color: var(--color-black);
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.gallery-item-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.modal-footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid var(--color-light-gray);
    background-color: var(--color-beige);
}

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

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

@media (max-width: 768px) {
    .modal {
        padding: 1rem;
    }

    .modal-content {
        border-radius: 8px;
    }

    .modal-header {
        padding: 2rem 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-item {
        height: 150px;
    }
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery {
    padding: 6rem var(--spacing-lg);
    background-color: var(--color-beige);

    content-visibility: auto;
    contain-intrinsic-size: 1000px;}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    border: 2px solid var(--color-gold);
    background-color: transparent;
    color: var(--color-gold);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    font-family: var(--font-sans);
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.gallery-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 280px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-image.hidden {
    display: none;
}

.gallery-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-image:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(212, 175, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-image:hover .gallery-overlay {
    opacity: 1;
}

@media (max-width: 768px) {
    .gallery {
        padding: 4rem var(--spacing-lg);
    
    content-visibility: auto;
    contain-intrinsic-size: 1000px;}

    .gallery-masonry {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .gallery-image {
        height: 200px;
    }
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
    padding: 6rem var(--spacing-lg);
    background: linear-gradient(135deg, rgba(245, 241, 232, 0.5), rgba(255, 255, 255, 1));

    content-visibility: auto;
    contain-intrinsic-size: 1000px;}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
}

.testimonial-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 4px solid var(--color-gold);
    scroll-snap-align: start;
    min-width: 100%;
}

@media (max-width: 768px) {
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        min-width: 100%;
    }
}

.testimonials-slider::-webkit-scrollbar {
    height: 6px;
}

.testimonials-slider::-webkit-scrollbar-track {
    background: var(--color-light-gray);
    border-radius: 3px;
}

.testimonials-slider::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 3px;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-dark-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-info h4 {
    color: var(--color-black);
    margin-bottom: 0.2rem;
}

.testimonial-info p {
    font-size: 0.85rem;
    color: var(--color-charcoal);
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: var(--color-gold);
    margin-right: 0.2rem;
}

.testimonial-text {
    color: var(--color-charcoal);
    font-style: italic;
    border-left: 3px solid var(--color-gold);
    padding-left: 1rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--color-gold);
    color: var(--color-black);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1rem;
}

.nav-btn:hover {
    background-color: var(--color-dark-gold);
    transform: scale(1.1);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: 6rem var(--spacing-lg);
    background-color: var(--color-white);}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-box {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(245, 241, 232, 0.8), rgba(255, 255, 255, 1));
    border-radius: 8px;
    border-left: 4px solid var(--color-gold);
    transition: var(--transition);
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.contact-box h3 {
    color: var(--color-black);
    margin-bottom: 0.8rem;
}

.contact-box p {
    color: var(--color-charcoal);
    line-height: 1.8;
}

.contact-box a {
    color: var(--color-gold);
    font-weight: 600;
    transition: var(--transition);
}

.contact-box a:hover {
    color: var(--color-dark-gold);
}

.social-links {
    padding: 2rem;
    background: linear-gradient(135deg, var(--color-gold), var(--color-dark-gold));
    border-radius: 8px;
    color: var(--color-black);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-links h3 {
    color: var(--color-black);
    margin-bottom: 0;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

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

.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(245, 241, 232, 0.5), rgba(255, 255, 255, 1));
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--color-light-gray);
}

.contact-form-wrapper h3 {
    color: var(--color-black);
    margin-bottom: 2rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid var(--color-light-gray);
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition);
    background-color: var(--color-white);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-error {
    color: #E74C3C;
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: block;
}

.form-message {
    display: block;
    text-align: center;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    font-weight: 600;
}

.form-message.success {
    background-color: #2ecc71;
    color: white;
}

.form-message.error {
    background-color: #e74c3c;
    color: white;
}

.map-section {
    margin-top: 4rem;
}

.map-section h3 {
    color: var(--color-black);
    margin-bottom: 1.5rem;
    text-align: center;
}

.map-section iframe {
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .contact {
        padding: 4rem var(--spacing-lg);}

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

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .map-section iframe {
        height: 300px;
    }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 3rem var(--spacing-lg) 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section ul {
    color: var(--color-light-gray);
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--color-light-gray);
    transition: var(--transition);
}

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

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-gold);
    color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-charcoal);
    color: var(--color-light-gray);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--color-gold);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--color-light-gray);
}

/* ========================================
   UTILITIES
   ======================================== */
.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* ========================================
   ANIMATIONS & TRANSITIONS
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 1.5rem;
        --spacing-xl: 2.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-lg: 1rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }
}
