:root {
    --gold: #D4AF37;
    --gold-dark: #B8941F;
    --cream: #FAF8F3;
    --black: #0A0A0A;
    --gray: #666;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.08);
}

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

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

h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

/* NAVIGATION */
nav {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s;
    background: rgba(250, 248, 243, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

nav.scrolled {
    padding: 15px 5%;
    box-shadow: 0 5px 30px var(--shadow);
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--black);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

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

.cta-nav {
    background: var(--gold);
    color: white;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-nav:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger {
    width: 30px;
    height: 24px;
    position: relative;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--black);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0px;
}

.hamburger span:nth-child(2) {
    top: 8px;
}

.hamburger span:nth-child(3) {
    top: 16px;
}

.hamburger.open span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.hamburger.open span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}

/* HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.4)),
        url('img/hero2.webp') center/cover;
    background-attachment: fixed;
    padding: 0 5%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1), transparent 60%);
}

.hero-content {
    max-width: 700px;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

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

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

.hero-badge {
    display: inline-block;
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    line-height: 1;
    margin-bottom: 30px;
    color: var(--white);
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gold);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 18px 40px;
    border: 2px solid white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s;
}

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

/* TRUST BADGES */
.trust-section {
    background: var(--white);
    padding: 60px 5%;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.trust-item h3 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

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

/* BIO SECTION */
.bio-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    padding: 140px 5%;
    max-width: 1400px;
    margin: auto;
    align-items: center;
}

.bio-image {
    position: relative;
}

.bio-image img {
    width: 100%;
    height: 1000px;
    object-fit: cover;
    object-position: center;
    box-shadow: 40px 40px 80px var(--shadow);
}

.bio-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    top: -20px;
    left: -20px;
    z-index: -1;
}

.bio-content span {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.bio-content h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    line-height: 1.1;
}

.bio-content p {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.9;
}

.bio-signature {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.bio-signature p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--black);
}

/* SERVICES */
.services {
    padding: 140px 5%;
    background: var(--black);
    color: white;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.services-header span {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

.services-header h2 {
    font-size: 3.5rem;
    margin: 20px 0;
    color: white;
}

.services-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.price-indicator {
    margin-top: 30px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
}

.price-badge {
    background: var(--gold) !important;
    color: #000000 !important;
    padding: 10px 20px !important;
    border-radius: 20px !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    display: inline-block !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
    margin: 10px 0 !important;
}

.price-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-style: italic;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
    border-color: var(--gold);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-card li::before {
    content: '✦';
    color: var(--gold);
}

.service-cta {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: var(--gold);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
}

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

/* QUICK QUERIES */
.quick-queries {
    padding: 80px 5%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
}

.queries-container {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.queries-container h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}

.queries-container p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.queries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.query-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.query-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.query-btn i {
    font-size: 1.5rem;
    color: white;
}

.query-btn span {
    font-size: 1rem;
    font-weight: 600;
}

/* GALLERY */
.gallery {
    padding: 140px 5%;
    background: var(--cream);
}

.gallery-header {
    text-align: center;
    margin-bottom: 80px;
}

.gallery-header h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.carousel-container {
    max-width: 100%;
    margin: auto;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    touch-action: pan-y;
}

.carousel-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    perspective: 1200px;
}

.carousel-track {
    display: flex;
    gap: 40px;
    align-items: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    transform-style: preserve-3d;
}

.gallery-item {
    flex-shrink: 0;
    width: 420px;
    aspect-ratio: 4 / 5;
    opacity: 0.3;
    transform: scale(0.85) rotateY(15deg);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.gallery-item img.loaded {
    opacity: 1;
}

.carousel-loading {
    display: none;
}

.gallery-item.loading .carousel-loading {
    display: block;
}

.gallery-item.loading img {
    opacity: 0;
}

.gallery-item.active {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
    z-index: 10;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.gallery-item.prev {
    opacity: 0.6;
    transform: scale(0.9) rotateY(-10deg);
    z-index: 5;
}

.gallery-item.next {
    opacity: 0.6;
    transform: scale(0.9) rotateY(10deg);
    z-index: 5;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
}

.gallery-item.active img {
    filter: brightness(1);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.gallery-item.active .gallery-overlay,
.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--gold);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--black);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 20;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(1.05);
}

.carousel-btn.prev {
    left: 30px;
}

.carousel-btn.next {
    right: 30px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.dot:hover {
    background: rgba(212, 175, 55, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: var(--gold);
    width: 40px;
    border-radius: 7px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.carousel-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-top: 3px solid var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* TESTIMONIALS */
.testimonials {
    padding: 140px 5%;
    background: var(--white);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-header h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.testimonial-card {
    background: var(--cream);
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}



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



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

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--black);
    text-align: right;
}

/* LOCATION */
.location {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--black);
    color: white;
}

.location-content {
    padding: 100px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: white;
}

.location-content p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.location-info {
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(100%) invert(95%) contrast(85%);
    transition: filter 0.5s ease;
}

.map-container:hover iframe {
    filter: none;
}

/* FOOTER */
footer {
    background: var(--cream);
    padding: 80px 5%;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--gray);
    line-height: 1.8;
}

.footer-links h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--gray);
    font-size: 0.9rem;
}

.urgency-badge {
    background: var(--gold);
    color: var(--black);
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    animation: pulse 2s infinite;
    display: inline-block;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    z-index: 2000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float i {
    font-size: 32px;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 14px 40px rgba(37, 211, 102, 0.6);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        padding: 20px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
        display: flex;
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 15px 25px;
        border-radius: 30px;
        transition: all 0.3s;
    }

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

    .cta-nav.desktop-only {
        display: none;
    }

    .bio-section,
    .location {
        grid-template-columns: 1fr;
    }

    .bio-image::before {
        display: none;
    }

    h1 {
        font-size: 3rem !important;
    }

    h2 {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 768px) {
    .gallery-item {
        width: 280px;
    }

    .carousel-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }
}

/* FOCUS STATES FOR ACCESSIBILITY */
.nav-links a:focus,
.cta-nav:focus,
.btn-primary:focus,
.btn-secondary:focus,
.carousel-btn:focus,
.dot:focus,
.whatsapp-float:focus {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

/* MICRO-INTERACTIONS */
.service-card {
    animation: slideInUp 0.6s ease-out;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

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

.testimonial-card {
    animation: fadeIn 0.8s ease-out;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

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

.trust-item {
    animation: scaleIn 0.5s ease-out;
}

.trust-item:nth-child(1) { animation-delay: 0.1s; }
.trust-item:nth-child(2) { animation-delay: 0.2s; }
.trust-item:nth-child(3) { animation-delay: 0.3s; }
.trust-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
