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

:root {
    --primary-wine: #6B1C3A;
    --dark-wine: #4A0E24;
    --light-wine: #8B2E4E;
    --gold: #D4AF37;
    --light-gold: #F4E4BC;
    --cream: #FAF6F0;
    --dark-text: #2C2C2C;
    --light-text: #666666;
    --white: #FFFFFF;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(107, 28, 58, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(107, 28, 58, 0.98);
    padding: 5px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 60px;
    width: auto;  
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

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

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

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

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

.mobile-menu {
    display: none;
    cursor: pointer;
    color: var(--white);
    font-size: 1.8rem;
    padding: 5px;
    transition: transform 0.3s ease;
}

.mobile-menu:hover {
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark-wine) 0%, var(--primary-wine) 50%, var(--light-wine) 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgba(212,175,55,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(212,175,55,0);stop-opacity:1" /></linearGradient></defs><path d="M0,100 Q300,200 600,100 T1200,100 L1200,600 L0,600 Z" fill="url(%23grad1)"/></svg>');
    background-size: cover;
    opacity: 0.3;
    animation: wave 15s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero-text .subtitle {
    font-size: 1.3rem;
    color: var(--light-gold);
    margin-bottom: 15px;
    font-weight: 300;
    animation: fadeInUp 1.2s ease;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 35px;
    opacity: 0.9;
    animation: fadeInUp 1.4s ease;
}

.oab-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 2px solid var(--gold);
    animation: fadeInUp 1s ease;
}

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

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1.6s ease;
}

.btn {
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

.btn-primary {
    background: var(--gold);
    color: var(--dark-wine);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-wine);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    animation: fadeIn 1.8s ease;
    display: flex;
    justify-content: center;
}

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

.hero-image-wrapper {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
    object-fit: cover;
}

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

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

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

.floating-badge.badge-1 {
    top: 30px;
    right: -20px;
    animation-delay: 0s;
}

.floating-badge.badge-2 {
    bottom: 50px;
    left: -30px;
    animation-delay: 1.5s;
}

.floating-badge h4 {
    color: var(--primary-wine);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.floating-badge p {
    color: var(--light-text);
    font-size: 0.9rem;
    margin: 0;
}

/* About Section */
.about {
    padding: 120px 5%;
    background: var(--white);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--primary-wine);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 700px;
    margin: 20px auto 0;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-text h3 {
    font-size: 2.2rem;
    color: var(--primary-wine);
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: var(--cream);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(107, 28, 58, 0.15);
    border-color: var(--gold);
}

.stat-card h4 {
    font-size: 2.5rem;
    color: var(--primary-wine);
    margin-bottom: 10px;
}

.stat-card p {
    color: var(--light-text);
    font-size: 0.95rem;
    margin: 0;
}

/* Services Section */
.services {
    padding: 120px 5%;
    background: var(--cream);
    position: relative;
}

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

.service-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(107, 28, 58, 0.2);
    border-color: var(--gold);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-wine), var(--light-wine));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

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

.service-icon i {
    font-size: 2rem;
    color: var(--gold);
}

.service-card h3 {
    font-size: 1.6rem;
    color: var(--primary-wine);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Process Section */
.process {
    padding: 120px 5%;
    background: var(--white);
}

.process-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
    padding: 40px 25px;
    background: var(--cream);
    border-radius: 20px;
    position: relative;
    transition: all 0.4s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: 0 15px 40px rgba(107, 28, 58, 0.15);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-wine), var(--light-wine));
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Cormorant Garamond', serif;
    box-shadow: 0 8px 20px rgba(107, 28, 58, 0.3);
    transition: transform 0.3s ease;
}

.process-step:hover .process-number {
    transform: rotate(360deg);
}

.process-step h4 {
    font-size: 1.4rem;
    color: var(--primary-wine);
    margin-bottom: 12px;
}

.process-step p {
    color: var(--light-text);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 5%;
    background: var(--cream);
}

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

.testimonial-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(107, 28, 58, 0.15);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.2;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
}

.testimonial-text {
    position: relative;
    z-index: 1;
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-wine), var(--light-wine));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
}

.author-info h5 {
    color: var(--primary-wine);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--light-text);
    font-size: 0.85rem;
    margin: 0;
}

.stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Contact Section */
.contact {
    padding: 120px 5%;
    background: linear-gradient(135deg, var(--primary-wine) 0%, var(--dark-wine) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.contact-info h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--light-gold);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

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

.contact-method-text h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-method-text a {
    color: var(--light-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method-text a:hover {
    color: var(--gold);
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-form h3 {
    font-size: 2rem;
    color: var(--primary-wine);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    background: var(--cream);
}

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

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

.file-upload {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.file-upload-btn {
    padding: 15px 20px;
    background: var(--cream);
    border: 2px dashed var(--gold);
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.file-upload-btn:hover {
    background: var(--light-gold);
    border-style: solid;
}

.file-upload input[type="file"] {
    position: absolute;
    left: -9999px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary-wine), var(--light-wine));
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(107, 28, 58, 0.4);
}

/* FAQ Section */
.faq {
    padding: 120px 5%;
    background: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--cream);
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(107, 28, 58, 0.15);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--cream);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--white);
}

.faq-question h4 {
    font-size: 1.2rem;
    color: var(--primary-wine);
    flex: 1;
    font-weight: 600;
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
    background: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: var(--light-text);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

/* Social Proof Section */
.social-proof {
    padding: 80px 5%;
    background: var(--cream);
    text-align: center;
}

.social-proof h3 {
    font-size: 2rem;
    color: var(--primary-wine);
    margin-bottom: 40px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-wine), var(--light-wine));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 2rem;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(107, 28, 58, 0.3);
}

.social-link:hover {
    transform: translateY(-10px) rotate(360deg);
    box-shadow: 0 15px 40px rgba(107, 28, 58, 0.5);
}

/* Footer */
footer {
    background: var(--dark-wine);
    color: var(--white);
    padding: 60px 5% 30px;
}

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

.footer-section h4 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    color: var(--light-gold);
    font-size: 0.95rem;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
    padding-left: 5px;
}

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

/* 3D WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, #25D366, #1DA851);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: 
        0 10px 25px rgba(37, 211, 102, 0.4),
        0 5px 10px rgba(0, 0, 0, 0.2),
        inset 0 -3px 8px rgba(0, 0, 0, 0.2),
        inset 0 3px 8px rgba(255, 255, 255, 0.3);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulseWhatsApp 2s infinite;
    text-decoration: none;
    cursor: pointer;
    transform-style: preserve-3d;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulseRing 2s infinite;
}

.whatsapp-float::after {
    content: '💬';
    position: absolute;
    top: -8px;
    right: -8px;
    background: #FF3B30;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    box-shadow: 0 3px 8px rgba(255, 59, 48, 0.5);
    animation: bounce 1s infinite;
}

@keyframes pulseWhatsApp {
    0%, 100% {
        box-shadow: 
            0 10px 25px rgba(37, 211, 102, 0.4),
            0 5px 10px rgba(0, 0, 0, 0.2),
            inset 0 -3px 8px rgba(0, 0, 0, 0.2),
            inset 0 3px 8px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 
            0 15px 40px rgba(37, 211, 102, 0.6),
            0 8px 15px rgba(0, 0, 0, 0.3),
            inset 0 -3px 8px rgba(0, 0, 0, 0.2),
            inset 0 3px 8px rgba(255, 255, 255, 0.3);
        transform: translateY(-5px) scale(1.05);
    }
}

@keyframes pulseRing {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-3px) scale(1.1);
    }
}

.whatsapp-float:hover {
    transform: translateY(-8px) scale(1.15) rotateZ(5deg);
    box-shadow: 
        0 20px 50px rgba(37, 211, 102, 0.6),
        0 10px 20px rgba(0, 0, 0, 0.3),
        inset 0 -4px 10px rgba(0, 0, 0, 0.3),
        inset 0 4px 10px rgba(255, 255, 255, 0.4);
}

.whatsapp-float:active {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 20px rgba(37, 211, 102, 0.5),
        0 3px 8px rgba(0, 0, 0, 0.3),
        inset 0 -2px 6px rgba(0, 0, 0, 0.2),
        inset 0 2px 6px rgba(255, 255, 255, 0.3);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 115px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark-wine);
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.scroll-top.active {
    display: flex;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-wine);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(212, 175, 55, 0.3);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    html {
        font-size: 15px;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .hero-content,
    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .hero-image {
        order: -1;
    }

    .about-image {
        order: -1;
        display: flex;
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .floating-badge {
        padding: 15px 20px;
    }

    .floating-badge h4 {
        font-size: 1rem;
    }

    .floating-badge p {
        font-size: 0.8rem;
    }

    .stats-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-wine);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

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

    .mobile-menu {
        display: block;
    }

    .logo-img {
        height: 50px;
    }

    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-content {
        padding: 40px 5%;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text .subtitle {
        font-size: 1.1rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

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

    .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
    }

    .floating-badge {
        display: none;
    }

    .about,
    .services,
    .process,
    .testimonials,
    .contact,
    .faq {
        padding: 80px 5%;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .section-title p {
        font-size: 1rem;
    }

    .about-text h3 {
        font-size: 1.8rem;
    }

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

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

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

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

    .contact-form {
        padding: 35px 25px;
    }

    .contact-info h2 {
        font-size: 2.2rem;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        bottom: 25px;
        right: 25px;
    }

    .whatsapp-float::after {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
        top: -5px;
        right: -5px;
    }

    .scroll-top {
        bottom: 95px;
        right: 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }

    nav {
        padding: 12px 5%;
    }

    .logo-img {
        height: 45px;
    }

    .hero-text h1 {
        font-size: 1.9rem;
    }

    .oab-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .service-card,
    .testimonial-card {
        padding: 30px 25px;
    }

    .process-step {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
        bottom: 20px;
        right: 20px;
    }

    .scroll-top {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        bottom: 85px;
        right: 20px;
    }
}

/* Utility Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

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