/* ========================================
   A&A SERVICIOS INTEGRALES SPA
   Main Stylesheet
   ======================================== */

/* ----------------------------------------
   CSS Variables & Theme
   ---------------------------------------- */
:root {
    /* Primary Colors */
    --primary-dark: #004D40;
    --primary: #00796B;
    --primary-light: #4DB6AC;
    --primary-lighter: #B2DFDB;
    --primary-bg: #E0F2F1;
    
    /* Accent Colors */
    --accent: #E65100;
    --accent-light: #FF8A50;
    --accent-dark: #AC1900;
    
    /* Neutrals */
    --dark: #1A1A1A;
    --dark-gray: #2D3436;
    --gray: #636E72;
    --light-gray: #B2BEC3;
    --lighter-gray: #DFE6E9;
    --off-white: #F8F9FA;
    --white: #FFFFFF;
    
    /* Semantic */
    --success: #00B894;
    --warning: #FDCB6E;
    --error: #D63031;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    --shadow-glow: 0 0 40px rgba(0, 121, 107, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Z-Index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-tooltip: 600;
    --z-toast: 700;
}

/* ----------------------------------------
   Reset & Base Styles
   ---------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

/* ----------------------------------------
   Typography
   ---------------------------------------- */
.h1, h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
.h2, h2 { font-size: clamp(2rem, 4vw, 3rem); }
.h3, h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
.h4, h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
.h5, h5 { font-size: 1.125rem; }
.h6, h6 { font-size: 1rem; }

.text-lg { font-size: 1.125rem; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }

.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-gray { color: var(--gray); }
.text-white { color: var(--white); }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* ----------------------------------------
   Layout & Container
   ---------------------------------------- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-sm { max-width: 960px; }
.container-lg { max-width: 1440px; }

section {
    padding: var(--space-4xl) 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
}

.section-header .overline {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: var(--space-md);
    position: relative;
}

.section-header .overline::before,
.section-header .overline::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--primary-light);
}

.section-header .overline::before { right: calc(100% + 15px); }
.section-header .overline::after { left: calc(100% + 15px); }

.section-header h2 {
    margin-bottom: var(--space-md);
}

.section-header p {
    color: var(--gray);
    font-size: 1.125rem;
}

/* ----------------------------------------
   Buttons
   ---------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md), 0 4px 15px rgba(0, 121, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 6px 20px rgba(0, 121, 107, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md), 0 4px 15px rgba(230, 81, 0, 0.3);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 6px 20px rgba(230, 81, 0, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-ghost:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.125rem;
}

.btn-sm {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.875rem;
}

.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: var(--radius-full);
}

/* ----------------------------------------
   Header & Navigation
   ---------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    transition: var(--transition-base);
}

.header-top {
    background: var(--primary-dark);
    padding: var(--space-sm) 0;
    font-size: 0.875rem;
    color: var(--white);
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.header-top-left {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.header-top-left a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--primary-lighter);
    transition: var(--transition-fast);
}

.header-top-left a:hover {
    color: var(--white);
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.social-links {
    display: flex;
    gap: var(--space-sm);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.1);
    color: var(--white);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.admin-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: var(--primary-lighter);
    font-weight: 500;
    transition: var(--transition-fast);
}

.admin-link:hover {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.header-main {
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: var(--space-md) 0;
}

.header.scrolled .header-main {
    padding: var(--space-sm) 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition-base);
}

.header.scrolled .logo img {
    height: 50px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .brand {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
}

.logo-text .tagline {
    font-size: 0.7rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) 0;
    font-weight: 500;
    color: var(--dark-gray);
    position: relative;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-base);
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    width: 100%;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--primary);
}

/* Dropdown Menu */
.has-dropdown > a svg {
    transition: var(--transition-fast);
}

.has-dropdown:hover > a svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    padding: var(--space-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-base);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    color: var(--dark-gray);
    transition: var(--transition-fast);
}

.dropdown-menu li a:hover {
    background: var(--primary-bg);
    color: var(--primary);
}

.dropdown-menu li a .icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg);
    border-radius: var(--radius-sm);
    color: var(--primary);
    transition: var(--transition-fast);
}

.dropdown-menu li a:hover .icon {
    background: var(--primary);
    color: var(--white);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ----------------------------------------
   Hero Section
   ---------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 180px;
    padding-bottom: 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        135deg,
        rgba(0, 77, 64, 0.7) 0%,
        rgba(0, 100, 85, 0.55) 50%,
        rgba(0, 77, 64, 0.65) 100%
    );
}



.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    color: var(--white);
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(230, 81, 0, 0.9);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.6s ease;
    color: var(--white);
}

.hero-tag svg {
    opacity: 0.9;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.6s ease 0.1s both;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
}

.hero-content h1 .highlight {
    color: var(--primary-lighter);
    position: relative;
}

.hero-content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--accent);
    opacity: 0.5;
    z-index: -1;
}

.hero-content .lead {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: var(--space-xl);
    max-width: 550px;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stats {
    display: flex;
    gap: var(--space-3xl);
    margin-top: var(--space-3xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(255,255,255,0.2);
    animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat .number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.hero-stat .label {
    font-size: 0.875rem;
    opacity: 0.8;
}


/* ----------------------------------------
   Services Section
   ---------------------------------------- */
.services-section {
    background: var(--off-white);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, var(--white), var(--off-white));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card .icon-wrapper {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    margin-top: 0;    /* ← CAMBIAR A 0 */
    transition: var(--transition-base);
}

.service-card .icon-wrapper svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
    transition: var(--transition-base);
}

.service-card:hover .icon-wrapper {
    background: var(--primary);
}

.service-card:hover .icon-wrapper svg {
    color: var(--white);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.service-card p {
    color: var(--gray);
    margin-bottom: var(--space-lg);
    font-size: 0.95rem;
}

.service-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition-fast);
}

.service-card .card-link svg {
    transition: var(--transition-fast);
}

.service-card .card-link:hover {
    gap: var(--space-md);
}

/* ----------------------------------------
   About Section
   ---------------------------------------- */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-images {
    position: relative;
    height: 600px;
}

.about-images .img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 400px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.about-images .img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-images .img-secondary {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 300px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    border: 6px solid var(--white);
}

.about-images .img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-images .experience-badge {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.about-images .experience-badge .number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.about-images .experience-badge .text {
    font-size: 0.875rem;
    opacity: 0.9;
}

.about-content .overline {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.about-content h2 {
    margin-bottom: var(--space-lg);
}

.about-content .lead-text {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: var(--space-xl);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.about-feature {
    display: flex;
    gap: var(--space-md);
}

.about-feature .icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg);
    border-radius: var(--radius-md);
    color: var(--primary);
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.about-feature p {
    font-size: 0.875rem;
    color: var(--gray);
}

/* ----------------------------------------
   Values Section
   ---------------------------------------- */
.values-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.values-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
}

.values-section .section-header h2 {
    color: var(--white);
}

.values-section .section-header p {
    color: var(--primary-lighter);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.value-card {
    text-align: center;
    padding: var(--space-xl);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition-base);
}

.value-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-5px);
}

.value-card .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-full);
    color: var(--primary);
}

.value-card .icon svg {
    width: 36px;
    height: 36px;
}

.value-card h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
}

.value-card p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ----------------------------------------
   CTA Section
   ---------------------------------------- */
.cta-section {
    background: var(--off-white);
    position: relative;
}

.cta-box {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(to bottom, var(--primary), var(--primary-light));
}

.cta-content h2 {
    margin-bottom: var(--space-md);
}

.cta-content p {
    color: var(--gray);
    font-size: 1.125rem;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    flex-shrink: 0;
}

/* ----------------------------------------
   Footer
   ---------------------------------------- */
.footer {
    background: var(--dark);
    color: var(--light-gray);
    padding-top: var(--space-4xl);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
}

.footer-brand .logo {
    margin-bottom: var(--space-lg);
}

.footer-brand .logo img {
    height: 60px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.footer-brand .social-links a {
    background: rgba(255,255,255,0.1);
}

.footer-brand .social-links a:hover {
    background: var(--primary);
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-md);
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-column ul li {
    margin-bottom: var(--space-md);
}

.footer-column ul li a {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--light-gray);
    transition: var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--primary-light);
    padding-left: var(--space-sm);
}

.footer-contact li {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.footer-contact li .icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    color: var(--primary-light);
    flex-shrink: 0;
}

.footer-contact li .text span {
    display: block;
    font-size: 0.875rem;
    color: var(--gray);
}

.footer-contact li .text a,
.footer-contact li .text p {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: var(--space-xl) 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-bottom p {
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    gap: var(--space-xl);
}

.footer-bottom-links a {
    font-size: 0.875rem;
    color: var(--light-gray);
}

.footer-bottom-links a:hover {
    color: var(--primary-light);
}

/* ----------------------------------------
   WhatsApp Float Button
   ---------------------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    z-index: var(--z-fixed);
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: var(--radius-full);
    color: var(--white);
    box-shadow: var(--shadow-lg), 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-base);
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl), 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float a svg {
    width: 32px;
    height: 32px;
}

.whatsapp-float .tooltip {
    position: absolute;
    right: calc(100% + var(--space-md));
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    white-space: nowrap;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* ----------------------------------------
   Page Header (Internal Pages)
   ---------------------------------------- */
.page-header {
    position: relative;
    padding: 180px 0 80px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.page-header .breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.95rem;
}

.page-header .breadcrumb a {
    color: var(--primary-lighter);
}

.page-header .breadcrumb a:hover {
    color: var(--white);
}

.page-header .breadcrumb span {
    opacity: 0.7;
}

/* ----------------------------------------
   Service Page Content
   ---------------------------------------- */
.service-detail {
    padding: var(--space-4xl) 0;
}

.service-detail .container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: var(--space-3xl);
}

.service-content h2 {
    margin-bottom: var(--space-lg);
}

.service-content p {
    margin-bottom: var(--space-lg);
    color: var(--gray);
}

.service-content .feature-list {
    margin: var(--space-xl) 0;
}

.service-content .feature-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    padding: var(--space-md);
    background: var(--off-white);
    border-radius: var(--radius-md);
}

.service-content .feature-list li .check {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: var(--radius-full);
    color: var(--white);
    flex-shrink: 0;
}

.service-content .feature-list li .check svg {
    width: 14px;
    height: 14px;
}

.service-sidebar {
    position: sticky;
    top: 140px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-lg);
    margin-bottom: var(--space-xl);
}

.sidebar-widget h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--primary-bg);
}

.sidebar-services li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    color: var(--dark-gray);
    transition: var(--transition-fast);
}

.sidebar-services li a:hover,
.sidebar-services li a.active {
    background: var(--primary-bg);
    color: var(--primary);
}

.sidebar-services li a svg {
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-fast);
}

.sidebar-services li a:hover svg,
.sidebar-services li a.active svg {
    opacity: 1;
    transform: translateX(0);
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.sidebar-cta h3 {
    color: var(--white);
    border-bottom-color: rgba(255,255,255,0.2);
}

.sidebar-cta p {
    margin-bottom: var(--space-lg);
    opacity: 0.9;
}

.sidebar-cta .btn {
    width: 100%;
}

/* ----------------------------------------
   Contact Form
   ---------------------------------------- */
.contact-section {
    background: var(--off-white);
}

.contact-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.contact-info h2 {
    margin-bottom: var(--space-lg);
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: var(--space-2xl);
}

.contact-details {
    margin-bottom: var(--space-2xl);
}

.contact-details li {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.contact-details li .icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg);
    border-radius: var(--radius-md);
    color: var(--primary);
    flex-shrink: 0;
}

.contact-details li h4 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.contact-details li p,
.contact-details li a {
    color: var(--gray);
}

.contact-details li a:hover {
    color: var(--primary);
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-xl);
}

.contact-form-wrapper h3 {
    margin-bottom: var(--space-xl);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--space-sm);
    color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--space-md);
    border: 2px solid var(--lighter-gray);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-bg);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

/* ----------------------------------------
   Animations
   ---------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.6s ease forwards;
}

.animate-fadeInRight {
    animation: fadeInRight 0.6s ease forwards;
}

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ----------------------------------------
   Responsive Styles
   ---------------------------------------- */
@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .header-top {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-main {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: var(--space-4xl) var(--space-xl);
        box-shadow: var(--shadow-2xl);
        transition: var(--transition-base);
        z-index: var(--z-modal);
    }
    
    .nav-main.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .nav-menu > li {
        width: 100%;
    }
    
    .nav-menu > li > a {
        padding: var(--space-md) 0;
        border-bottom: 1px solid var(--lighter-gray);
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 var(--space-lg);
        display: none;
    }
    
    .has-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .about-section .container {
        grid-template-columns: 1fr;
    }
    
    .about-images {
        height: 400px;
        margin-bottom: var(--space-2xl);
    }
    
    .cta-box {
        flex-direction: column;
        text-align: center;
    }
    
    .service-detail .container {
        grid-template-columns: 1fr;
    }
    
    .service-sidebar {
        position: static;
    }
    
    .contact-section .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: var(--space-3xl) 0;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
        align-items: flex-start;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header .overline::before,
    .section-header .overline::after {
        display: none;
    }
    
    .whatsapp-float {
        bottom: var(--space-md);
        right: var(--space-md);
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float a svg {
        width: 26px;
        height: 26px;
    }
}

/* ----------------------------------------
   Print Styles
   ---------------------------------------- */
@media print {
    .header,
    .footer,
    .whatsapp-float,
    .hero-scroll {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: var(--space-xl) 0;
    }
    
    section {
        padding: var(--space-xl) 0;
    }
}

/* ========================================
   Social Media Section
   ======================================== */
.social-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f3 100%);
}

.social-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.social-section .section-header h2 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.social-section .section-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.social-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.social-card.instagram::before {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-card.tiktok::before {
    background: linear-gradient(45deg, #00f2ea 0%, #ff0050 100%);
}

.social-card.linkedin::before {
    background: linear-gradient(45deg, #0077b5 0%, #00a0dc 100%);
}

.social-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.social-card:hover::before {
    opacity: 1;
}

.social-card:hover .social-icon,
.social-card:hover .social-info,
.social-card:hover .social-arrow {
    color: white;
}

.social-card:hover .social-icon svg {
    transform: scale(1.1);
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.social-card.instagram .social-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-card.tiktok .social-icon {
    background: #000;
    color: white;
}

.social-card.linkedin .social-icon {
    background: #0077b5;
    color: white;
}

.social-icon svg {
    width: 28px;
    height: 28px;
    transition: transform 0.4s ease;
}

.social-info {
    flex: 1;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.social-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    transition: color 0.4s ease;
}

.social-handle {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color 0.4s ease;
}

.social-card:hover .social-name,
.social-card:hover .social-handle {
    color: white;
}

.social-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.social-arrow svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-card:hover .social-arrow {
    color: white;
}

.social-card:hover .social-arrow svg {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 900px) {
    .social-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .social-section {
        padding: 60px 0;
    }
    
    .social-card {
        padding: 24px;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
    }
    
    .social-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .social-name {
        font-size: 1.1rem;
    }
}

/* ========================================
   Contact Page Styles - CORREGIDO
   ======================================== */
.contact-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 35px;
    line-height: 1.7;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-bg);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.contact-card.whatsapp-card .contact-icon {
    background: #25D366;
}

.contact-card.whatsapp-card .contact-icon svg {
    color: white;
}

.contact-text h4 {
    font-size: 0.95rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.contact-text a,
.contact-text p {
    color: var(--gray);
    font-size: 0.85rem;
    transition: var(--transition-fast);
    display: block;
    line-height: 1.5;
}

.contact-text a:hover {
    color: var(--primary);
}

/* Social Section in Contact */
.contact-social {
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
}

.contact-social h4 {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.social-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
    color: white;
}

.social-btn svg {
    width: 18px;
    height: 18px;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.tiktok {
    background: #000;
}

.social-btn.linkedin {
    background: #0077b5;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ========================================
   Contact Form - CORREGIDO
   ======================================== */
.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.form-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.form-row .form-group {
    flex: 1;
    min-width: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e5e5e5;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition-fast);
    background: var(--white);
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 121, 107, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    padding-right: 45px;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-form .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    width: 100%;
}

/* ========================================
   RESPONSIVE - Contact Page
   ======================================== */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info h2 {
        font-size: 1.75rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px 25px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-buttons {
        flex-direction: column;
    }
    
    .social-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-info h2 {
        font-size: 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .contact-form-wrapper h3 {
        font-size: 1.25rem;
    }
    
    .contact-card {
        padding: 15px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
    
    .contact-icon svg {
        width: 20px;
        height: 20px;
    }
}
/* ========================================
   Hero Slideshow
   ======================================== */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slideshow .slide.active {
    opacity: 1;
}

/* ========================================
   Service Gallery - 4 Images
   ======================================== */
.service-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
}

.service-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.service-gallery img:hover {
    transform: scale(1.03);
}

@media (max-width: 600px) {
    .service-gallery {
        grid-template-columns: 1fr;
    }
    
    .service-gallery img {
        height: 180px;
    }
}