/* ==========================================================================
   Base & Variables
   ========================================================================== */
   :root {
    /* Colors */
    --primary-color: #0c1a30; /* Deep Navy Blue */
    --primary-light: #162a4d;
    --primary-dark: #060e1c;
    --secondary-color: #b8975a; /* Premium Gold */
    --secondary-light: #d1b173;
    --secondary-dark: #917646;
    
    --text-dark: #1a1a1a;
    --text-body: #4a4a4a;
    --text-muted: #7a7a7a;
    --text-light: #ffffff;
    
    --bg-main: #ffffff;
    --bg-gray: #f8f9fa;
    --bg-dark: #0a111f;
    
    --border-color: #e5e5e5;
    
    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    /* Effects & Transitions */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 15px 35px rgba(12, 26, 48, 0.1);
    --shadow-gold: 0 8px 25px rgba(184, 151, 90, 0.2);
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Dimensions */
    --header-height: 90px;
    --border-radius: 4px;
}

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

html {
    scroll-behavior: smooth;
    font-size: clamp(16px, 1.1vw, 22px);
}

/* Custom Scrollbar Premium */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--primary-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 10px;
    border: 2px solid var(--primary-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-light);
}

/* Custom Text Selection */
::selection {
    background-color: rgba(184, 151, 90, 0.4); /* Gold transparent */
    color: var(--text-light);
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.container {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
}

.section {
    padding: 100px 0;
    position: relative;
}

.bg-gray {
    background-color: var(--bg-gray);
}

.text-center {
    text-align: center;
}

.align-left {
    text-align: left;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.text-sm {
    font-size: 0.875rem;
}

.color-muted {
    color: var(--text-muted);
}

.text-gold {
    color: var(--secondary-color);
}

.font-bold {
    font-weight: 700;
}

.img-fluid {
    width: 100%;
    object-fit: cover;
}

.rounded-edge {
    border-radius: var(--border-radius);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.relative {
    position: relative;
}

.z-10 {
    z-index: 10;
}

/* Section Headers */
.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    display: block;
    color: var(--secondary-color);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 1rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}

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

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

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

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* WhatsApp Buttons */
.btn-whatsapp-header {
    background-color: transparent;
    color: #25D366;
    font-weight: 600;
    gap: 8px;
    font-size: 1.05rem;
}

.btn-whatsapp-header:hover {
    color: #1ebe58;
}

.btn-whatsapp-header i {
    font-size: 1.3rem;
}

.btn-whatsapp-large {
    background-color: #25D366;
    color: white;
    padding: 16px 32px;
    font-size: 1.2rem;
    border-radius: 50px;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-large:hover {
    background-color: #1EBE58;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-block {
    background-color: #25D366;
    color: white;
    display: flex;
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    border-radius: var(--border-radius);
    gap: 10px;
    justify-content: center;
}

.btn-whatsapp-block:hover {
    background-color: #1EBE58;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: transparent;
    z-index: 1000;
    transition: var(--transition-normal);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    height: 80px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

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

.logo i {
    font-size: 2.2rem;
    color: var(--secondary-color);
}

.header.scrolled .logo i {
    color: var(--primary-color);
}

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

.logo-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 1px;
    line-height: 1;
}

.logo-subtitle {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--secondary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

.header.scrolled .logo-title {
    color: var(--primary-color);
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    position: relative;
    padding: 5px 0;
}

.header.scrolled .nav-link {
    color: var(--text-dark);
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--text-light);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header:not(.scrolled) .btn-outline {
    border-color: rgba(255,255,255,0.5);
    color: var(--text-light);
}

.header:not(.scrolled) .btn-outline:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-light);
    cursor: pointer;
}

.header.scrolled .menu-toggle {
    color: var(--primary-color);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: url('https://images.unsplash.com/photo-1589994965851-a8f479c573a9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    background-attachment: fixed; /* Premium Parallax Effect */
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(12, 26, 48, 0.9) 0%, rgba(12, 26, 48, 0.7) 50%, rgba(12, 26, 48, 0.4) 100%);
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 800px;
    color: var(--text-light);
}

.hero-subtitle {
    font-family: var(--font-sans);
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 20px;
    display: inline-block;
}

@keyframes shatterReveal {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95) skewY(2deg);
        filter: blur(10px);
        letter-spacing: -3px;
    }
    50% {
        opacity: 0.5;
        transform: translateY(-5px) scale(1.02) skewY(-1deg);
        filter: blur(2px);
        letter-spacing: 2px;
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) skewY(0);
        filter: blur(0);
        letter-spacing: 0;
    }
}

.hero-title {
    font-size: 4.5rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.1;
    animation: shatterReveal 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 650px;
    font-weight: 300;
}

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

/* ==========================================================================
   About Section
   ========================================================================== */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    height: 600px;
    object-position: center;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border-bottom: 4px solid var(--secondary-color);
}

.exp-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 3.5rem;
    line-height: 1;
    color: var(--secondary-color);
}

.exp-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.about-text-lead {
    font-size: 1.3rem;
    font-family: var(--font-serif);
    color: var(--primary-color);
    margin-bottom: 20px;
    font-style: italic;
}

.about-text {
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.about-features i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--bg-main);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary-color);
    transition: var(--transition-normal);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 60px rgba(12, 26, 48, 0.2);
    border-color: var(--secondary-color);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(184, 151, 90, 0.1);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 25px;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    background-color: rgba(255, 255, 255, 0.1);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    transition: var(--transition-normal);
}

.service-card:hover .service-title,
.service-card:hover .service-desc {
    color: var(--text-light);
}

/* ==========================================================================
   Strengths Section
   ========================================================================== */
.strengths {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.strengths .section-title {
    color: var(--text-light);
}

.strengths-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.strengths-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.strength-item {
    display: flex;
    gap: 20px;
}

.strength-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background-color: rgba(184, 151, 90, 0.1);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border-radius: 50%;
    border: 1px solid rgba(184, 151, 90, 0.3);
}

.strength-info h4 {
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.strength-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.strengths-image img {
    height: 600px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats {
    background: url('https://images.unsplash.com/photo-1521587760476-6c12a4b040da?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
    padding: 80px 0;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(184, 151, 90, 0.9);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    color: var(--text-dark);
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Team Section
   ========================================================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    background-color: var(--bg-main);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.team-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(12, 26, 48, 0.2);
}

.team-img-wrapper {
    position: relative;
    overflow: hidden;
}

.team-img {
    height: 400px;
    transition: var(--transition-slow);
}

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

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background-color: rgba(12, 26, 48, 0.9);
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px 0;
    transition: var(--transition-normal);
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    color: var(--text-light);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-social a:hover {
    background-color: var(--secondary-color);
}

.team-info {
    padding: 30px;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: var(--transition-normal);
}

.team-card:hover .team-info {
    border-bottom-color: var(--secondary-color);
}

.team-name {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.team-role {
    display: block;
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-desc {
    font-size: 0.95rem;
}

/* ==========================================================================
   Consultation Section
   ========================================================================== */
.consultation {
    background-color: var(--bg-gray);
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.consultation-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.consultation-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.consultation-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-main);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.quote-icon {
    font-size: 3rem;
    color: rgba(184, 151, 90, 0.2);
    position: absolute;
    top: 30px;
    right: 30px;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.author-info h4 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--primary-color);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.contact .section-title {
    color: var(--text-light);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-desc {
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border-radius: 50%;
}

.contact-item h4 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-light);
}

.contact-item p {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form-wrapper {
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
}

.form-title {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: left;
    color: var(--text-light);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    font-family: var(--font-sans);
    font-size: 1.05rem;
    transition: var(--transition-normal);
    background-color: transparent;
    color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--secondary-color);
    background-color: transparent;
    box-shadow: none;
}

.form-group select option {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-desc {
    margin-bottom: 25px;
    max-width: 350px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-light);
}

.footer-social a:hover {
    background-color: var(--secondary-color);
}

.footer-heading {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-family: var(--font-sans);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-hours span {
    color: var(--text-light);
    font-weight: 500;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a:hover {
    color: var(--text-light);
}

/* ==========================================================================
   Floating Elements
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-normal);
}

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

/* ==========================================================================
   Vision Web Bolivia Branding
   ========================================================================== */
.footer-copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vision-web {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-family: var(--font-sans);
    transition: var(--transition-fast);
}

.vision-web:hover {
    color: rgba(255, 255, 255, 1);
}

.vision-web strong {
    color: var(--secondary-color);
    font-family: var(--font-serif);
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.vision-web i {
    font-size: 0.85rem;
    margin-right: 4px;
}

/* ==========================================================================
   Animations & Reveals
   ========================================================================== */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease;
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
.mobile-only {
    display: none;
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image img {
        height: 500px;
    }
    
    .services-grid,
    .team-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .strengths-container {
        grid-template-columns: 1fr;
    }
    
    .strengths-image {
        display: none;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--primary-color);
        transition: var(--transition-normal);
        padding: 40px 20px;
        overflow-y: auto;
    }
    
    .header.scrolled .nav-menu {
        top: 80px;
        height: calc(100vh - 80px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .nav-link {
        font-size: 1.2rem;
        color: rgba(255,255,255,0.8) !important;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: var(--secondary-color) !important;
    }
    
    .header-actions {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 17px; /* Aumenta el tamaño base de rem para todo el texto en móviles */
    }

    p, .service-desc, .team-desc, .testimonial-text, .strength-info p, .contact-desc {
        font-size: 1.15rem;
        line-height: 1.7;
    }

    .btn {
        font-size: 1.15rem;
        padding: 16px 30px;
    }

    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-text {
        font-size: 1.4rem;
        line-height: 1.6;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .consultation-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 18px; /* Texto aún un poco más grande y claro en móviles pequeños */
    }

    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.6rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .services-grid,
    .team-grid,
    .testimonials-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}
