/* ============================================
   GLOBAL STYLES & RESET
   ============================================ */

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

:root {
    /* Color Palette */
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-yellow: #FFD700;
    --color-dark-gray: #1a1a1a;
    --color-medium-gray: #333333;
    --color-light-gray: #666666;
    --color-bg-gray: #f8f8f8;
    --color-border: #e0e0e0;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;
    --spacing-xxxl: 96px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-medium-gray);
    background-color: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

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

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    -webkit-tap-highlight-color: transparent;
}

/* Prevent text selection on buttons and interactive elements */
button,
.btn,
.mobile-menu-toggle {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* ============================================
   HEADER
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
    gap: var(--spacing-md);
}

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

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

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

.logo-name {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 800;
    color: var(--color-black);
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 600;
    color: var(--color-yellow);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-link {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-medium-gray);
    position: relative;
    padding: 8px 0;
    transition: var(--transition-fast);
}

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

.nav-link:hover {
    color: var(--color-black);
}

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

.header-cta .btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-icon {
    font-size: 18px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--color-black);
    transition: var(--transition-fast);
    border-radius: 2px;
}

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

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    transition: var(--transition-fast);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

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

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

.btn-cta {
    background-color: var(--color-yellow);
    color: var(--color-black);
    box-shadow: var(--shadow-sm);
}

.btn-cta:hover {
    background-color: #ffd000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

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

.btn-full {
    width: 100%;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3;
}

.btn-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-phone {
    font-size: 18px;
    font-weight: 800;
}

.btn-icon {
    font-size: 20px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background-color: var(--color-white);
    padding: 140px 0 var(--spacing-xxxl) 0;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--color-black);
    color: var(--color-yellow);
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    width: fit-content;
}

.badge-icon {
    font-size: 16px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.title-main {
    font-family: var(--font-primary);
    font-size: 52px;
    font-weight: 800;
    color: var(--color-black);
    line-height: 1.1;
    letter-spacing: -1px;
}

.title-highlight {
    font-family: var(--font-primary);
    font-size: 52px;
    font-weight: 800;
    color: var(--color-yellow);
    line-height: 1.1;
    letter-spacing: -1px;
}

.title-sub {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-medium-gray);
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-light-gray);
    max-width: 540px;
}

.hero-description strong {
    color: var(--color-black);
    font-weight: 700;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-top: var(--spacing-sm);
}

.whatsapp-contact {
    margin-top: var(--spacing-sm);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-black);
    background-color: var(--color-white);
    border: 2px solid var(--color-black);
    border-radius: 6px;
    transition: var(--transition-fast);
    text-decoration: none;
}

.whatsapp-btn:hover {
    background-color: var(--color-black);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.whatsapp-text {
    line-height: 1;
}

.hero-features {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-medium-gray);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: var(--color-yellow);
    color: var(--color-black);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 900;
}

.hero-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.hero-image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--color-black);
    color: var(--color-white);
    padding: 24px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.badge-number {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 900;
    color: var(--color-yellow);
    line-height: 1;
}

.badge-label {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xxl);
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 800;
    color: var(--color-black);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -1px;
}

.section-description {
    font-size: 18px;
    color: var(--color-light-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
    padding: var(--spacing-xxxl) 0;
    background-color: var(--color-bg-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.service-card {
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

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

.service-card.featured {
    border: 2px solid var(--color-yellow);
    background: linear-gradient(135deg, #ffffff 0%, #fffef5 100%);
}

.service-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: var(--color-yellow);
    color: var(--color-black);
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 1px;
    z-index: 10;
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.service-content {
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    flex: 1;
}

.service-title {
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-black);
    line-height: 1.3;
}

.service-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-light-gray);
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: var(--spacing-sm);
}

.service-features li {
    font-size: 14px;
    color: var(--color-medium-gray);
    padding-left: 24px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-yellow);
    font-weight: 900;
    font-size: 16px;
}

.service-link {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-black);
    margin-top: auto;
    padding-top: var(--spacing-md);
    display: inline-flex;
    align-items: center;
    transition: var(--transition-fast);
}

.service-link:hover {
    color: var(--color-yellow);
    transform: translateX(4px);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    padding: var(--spacing-xxxl) 0;
    background-color: var(--color-white);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    padding: var(--spacing-xxxl) 0;
    background-color: var(--color-white);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xxl);
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xxl);
    align-items: start;
}

.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.about-main-image {
    width: 100%;
    height: 500px;
    object-fit: contain;
    padding: var(--spacing-xl);
    mix-blend-mode: lighten;
}

.about-badge-overlay {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--color-yellow);
    color: var(--color-black);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-icon-large {
    font-size: 32px;
}

.badge-text {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.about-description-box {
    background-color: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: 12px;
    border: 2px solid var(--color-border);
}

.about-heading {
    font-family: var(--font-primary);
    font-size: 26px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: var(--spacing-md);
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-light-gray);
    margin-bottom: var(--spacing-md);
}

.about-description strong {
    color: var(--color-black);
    font-weight: 700;
}

.about-certifications {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 2px solid var(--color-bg-gray);
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background-color: var(--color-bg-gray);
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-black);
}

.cert-icon {
    width: 20px;
    height: 20px;
    background-color: var(--color-yellow);
    color: var(--color-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    flex-shrink: 0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.stat-card {
    background-color: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    border: 2px solid var(--color-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-sm);
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-yellow);
}

.stat-icon {
    font-size: 48px;
    line-height: 1;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number-large {
    font-family: var(--font-primary);
    font-size: 42px;
    font-weight: 900;
    color: var(--color-black);
    line-height: 1;
}

.stat-label-large {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    color: var(--color-medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-sublabel {
    font-size: 12px;
    color: var(--color-light-gray);
    margin-top: 4px;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.feature-box {
    background-color: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: 12px;
    border: 2px solid var(--color-border);
    transition: var(--transition-normal);
}

.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-yellow);
}

.feature-box-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-black);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-yellow);
    margin-bottom: var(--spacing-md);
}

.feature-box-icon svg {
    width: 32px;
    height: 32px;
}

.feature-box-title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: var(--spacing-sm);
}

.feature-box-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-light-gray);
    margin-bottom: var(--spacing-md);
}

.feature-box-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-border);
}

.feature-box-specs span {
    font-size: 13px;
    color: var(--color-medium-gray);
    font-weight: 500;
}

.about-cta-section {
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark-gray) 100%);
    padding: var(--spacing-xxl);
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-xl);
    box-shadow: var(--shadow-xl);
}

.cta-content {
    flex: 1;
}

.cta-title {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.cta-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-shrink: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
    padding: var(--spacing-xxxl) 0;
    background-color: var(--color-white);
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xxl);
}

.faq-item {
    background-color: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--color-yellow);
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    border-color: var(--color-yellow);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    background-color: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-fast);
}

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

.faq-item.active .faq-question {
    background-color: var(--color-bg-gray);
}

.faq-question-text {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-black);
    line-height: 1.4;
    padding-right: var(--spacing-md);
}

.faq-icon {
    font-size: 28px;
    font-weight: 300;
    color: var(--color-yellow);
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-black);
    border-radius: 50%;
    transition: var(--transition-normal);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background-color: var(--color-yellow);
    color: var(--color-black);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--spacing-lg) var(--spacing-lg);
}

.faq-answer p {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-light-gray);
}

.faq-answer strong {
    color: var(--color-black);
    font-weight: 600;
}

.faq-cta {
    text-align: center;
    padding: var(--spacing-xxl);
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-medium-gray) 100%);
    border-radius: 16px;
    color: var(--color-white);
}

.faq-cta h3 {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.faq-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-lg);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    padding: var(--spacing-xxxl) 0;
    background-color: var(--color-bg-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xxl);
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    align-content: start;
}

.contact-card {
    background-color: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-normal);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-card-icon {
    font-size: 42px;
    margin-bottom: var(--spacing-sm);
}

.contact-card h3 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: var(--spacing-xs);
}

.contact-value {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-yellow);
    display: block;
    margin-bottom: var(--spacing-xs);
    transition: var(--transition-fast);
}

.contact-value:hover {
    color: var(--color-black);
}

.contact-card p {
    font-size: 14px;
    color: var(--color-light-gray);
}

.contact-form-wrapper {
    background-color: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

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

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    filter: grayscale(0.2) contrast(1.1);
    transition: var(--transition-normal);
}

.map-container iframe:hover {
    filter: grayscale(0) contrast(1.2);
}

.map-info-section {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 2px solid var(--color-border);
}

.map-info-title {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.map-info-description {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-light-gray);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.coverage-areas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.area-column h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: var(--spacing-sm);
    text-align: center;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-yellow);
}

.area-column ul {
    list-style: none;
    padding: 0;
}

.area-column li {
    font-family: var(--font-secondary);
    font-size: 14px;
    color: var(--color-medium-gray);
    padding: 6px 0;
    position: relative;
    padding-left: 20px;
}

.area-column li::before {
    content: "•";
    color: var(--color-yellow);
    font-weight: 700;
    position: absolute;
    left: 0;
}

.service-guarantee-box {
    background: linear-gradient(135deg, var(--color-yellow), #ffed4a);
    padding: var(--spacing-md);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
}

.guarantee-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.guarantee-content h4 {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 8px;
}

.guarantee-content p {
    font-family: var(--font-secondary);
    font-size: 14px;
    color: var(--color-medium-gray);
    margin: 0;
    line-height: 1.5;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.method-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background-color: var(--color-bg-gray);
    border-radius: 8px;
    transition: var(--transition-normal);
}

.method-item:hover {
    background-color: var(--color-border);
    transform: translateY(-2px);
}

.method-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.method-item h5 {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black);
    margin: 0 0 4px 0;
}

.method-item p {
    font-family: var(--font-secondary);
    font-size: 12px;
    color: var(--color-light-gray);
    margin: 0;
    line-height: 1.4;
}

.form-title {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: var(--spacing-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-black);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-family: var(--font-secondary);
    font-size: 15px;
    color: var(--color-medium-gray);
    background-color: var(--color-bg-gray);
    border: 2px solid var(--color-border);
    border-radius: 6px;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-yellow);
    background-color: var(--color-white);
}

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

.form-note {
    font-size: 13px;
    color: var(--color-light-gray);
    text-align: center;
    margin-top: var(--spacing-sm);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding: var(--spacing-xxl) 0 var(--spacing-md) 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    margin-bottom: var(--spacing-md);
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-md);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-link:hover {
    background-color: var(--color-yellow);
    color: var(--color-black);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.footer-title {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-contact li {
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--color-yellow);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-fast);
}

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    .title-main,
    .title-highlight {
        font-size: 58px;
    }
    
    .title-sub {
        font-size: 40px;
    }
}

/* Desktop to Tablet (1200px - 1024px) */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 var(--spacing-lg);
    }
    
    .services-grid {
        gap: var(--spacing-md);
    }
    
    .footer-content {
        gap: var(--spacing-lg);
    }
}

/* Tablet Landscape (1024px and below) */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .hero-image {
        order: -1;
    }
    
    .about-main {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta-section {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-image img {
        height: 450px;
    }
    
    .about-main-image {
        height: 400px;
    }
    
    .title-main,
    .title-highlight {
        font-size: 42px;
    }
    
    .title-sub {
        font-size: 30px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    /* FAQ Section */
    .faq-question-text {
        font-size: 18px;
    }
    
    .faq-icon {
        font-size: 24px;
        width: 28px;
        height: 28px;
    }
    
    .faq-cta h3 {
        font-size: 24px;
    }
    
    .faq-cta p {
        font-size: 15px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-features {
        justify-content: flex-start;
    }
}

/* Tablet Portrait (768px and below) */
@media (max-width: 768px) {
    :root {
        --spacing-xxxl: 64px;
        --spacing-xxl: 48px;
        --spacing-xl: 36px;
    }
    
    .container {
        padding: 0 var(--spacing-md);
    }
    
    /* Header & Navigation */
    .header-content {
        padding: var(--spacing-sm) 0;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--color-white);
        box-shadow: var(--shadow-lg);
        padding: var(--spacing-md);
        transform: translateX(-100%);
        transition: var(--transition-normal);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav.active {
        transform: translateX(0);
    }
    
    .nav-menu {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .nav-link {
        padding: 12px 16px;
        background-color: var(--color-bg-gray);
        border-radius: 6px;
        display: block;
        font-size: 16px;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 0 var(--spacing-xxl) 0;
    }
    
    .hero-content {
        gap: var(--spacing-lg);
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 8px 16px;
    }
    
    .title-main,
    .title-highlight {
        font-size: 36px;
    }
    
    .title-sub {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .whatsapp-btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }
    
    .hero-image img {
        height: 400px;
        object-position: center;
    }
    
    .hero-image-badge {
        padding: 20px 24px;
        bottom: 20px;
        right: 20px;
    }
    
    .badge-number {
        font-size: 36px;
    }
    
    /* Services Section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .service-content {
        padding: var(--spacing-lg);
    }
    
    .service-image {
        height: 180px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    /* About Section */
    .about-main-image {
        height: 350px;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-description-box {
        padding: var(--spacing-lg);
    }
    
    .about-heading {
        font-size: 22px;
    }
    
    .stat-number-large {
        font-size: 36px;
    }
    
    .stat-icon {
        font-size: 42px;
    }
    
    .cta-title {
        font-size: 26px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    /* Contact Section */
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: var(--spacing-md);
    }
    
    .contact-form-wrapper {
        padding: var(--spacing-lg);
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .coverage-areas {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .service-guarantee-box {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }
    
    .map-info-title {
        font-size: 20px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer {
        padding: var(--spacing-xl) 0 var(--spacing-md) 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
}

/* Mobile Large (480px and below) */
@media (max-width: 480px) {
    :root {
        --spacing-xxxl: 48px;
        --spacing-xxl: 36px;
        --spacing-xl: 24px;
        --spacing-lg: 20px;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    /* Header */
    .header-content {
        gap: var(--spacing-sm);
    }
    
    .logo {
        gap: 8px;
    }
    
    .logo-image {
        width: 40px;
        height: 40px;
    }
    
    .logo-name {
        font-size: 14px;
    }
    
    .logo-subtitle {
        font-size: 10px;
    }
    
    .mobile-menu-toggle {
        padding: 4px;
    }
    
    .mobile-menu-toggle span {
        width: 24px;
        height: 2px;
    }
    
    /* Hero Section */
    .hero {
        padding: 90px 0 var(--spacing-xl) 0;
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .badge-icon {
        font-size: 14px;
    }
    
    .title-main,
    .title-highlight {
        font-size: 28px;
        letter-spacing: -0.5px;
    }
    
    .title-sub {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .hero-actions {
        gap: var(--spacing-sm);
    }
    
    .hero-image img {
        height: 300px;
    }
    
    .hero-image-badge {
        bottom: 15px;
        right: 15px;
        padding: 16px 20px;
    }
    
    .badge-number {
        font-size: 32px;
    }
    
    .badge-label {
        font-size: 11px;
    }
    
    /* Buttons */
    .btn {
        padding: 12px 20px;
        font-size: 13px;
        gap: 8px;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .btn-icon {
        font-size: 18px;
    }
    
    .btn-label {
        font-size: 11px;
    }
    
    .btn-phone {
        font-size: 16px;
    }
    
    /* Section Headers */
    .section-header {
        margin-bottom: var(--spacing-xl);
    }
    
    .section-subtitle {
        font-size: 11px;
        letter-spacing: 1.5px;
        margin-bottom: var(--spacing-xs);
    }
    
    .section-title {
        font-size: 26px;
        margin-bottom: var(--spacing-xs);
    }
    
    .section-description {
        font-size: 15px;
    }
    
    /* Services Section */
    .services {
        padding: var(--spacing-xl) 0;
    }
    
    .services-grid {
        gap: var(--spacing-sm);
    }
    
    .service-content {
        padding: var(--spacing-md);
        gap: var(--spacing-sm);
    }
    
    .service-image {
        height: 160px;
    }
    
    .service-title {
        font-size: 18px;
    }
    
    .service-description {
        font-size: 14px;
    }
    
    .service-features {
        gap: 8px;
        margin-top: var(--spacing-xs);
    }
    
    .service-features li {
        font-size: 13px;
        padding-left: 20px;
    }
    
    .service-features li::before {
        font-size: 14px;
    }
    
    .service-link {
        font-size: 13px;
        padding-top: var(--spacing-sm);
    }
    
    .service-badge {
        font-size: 10px;
        padding: 5px 12px;
        top: 8px;
        right: 8px;
    }
    
    /* About Section */
    .about {
        padding: var(--spacing-xl) 0;
    }
    
    .about-content {
        gap: var(--spacing-lg);
    }
    
    .about-main-image {
        height: 280px;
    }
    
    .about-description-box {
        padding: var(--spacing-md);
    }
    
    .about-heading {
        font-size: 20px;
    }
    
    .about-description {
        font-size: 15px;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .stat-card {
        padding: var(--spacing-md);
    }
    
    .stat-number-large {
        font-size: 32px;
    }
    
    .stat-icon {
        font-size: 36px;
    }
    
    .feature-box {
        padding: var(--spacing-md);
    }
    
    .feature-box-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-box-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .feature-box-title {
        font-size: 18px;
    }
    
    .feature-box-description {
        font-size: 14px;
    }
    
    .feature-box-specs span {
        font-size: 12px;
    }
    
    .about-cta-section {
        padding: var(--spacing-lg);
    }
    
    .cta-title {
        font-size: 22px;
    }
    
    .cta-description {
        font-size: 14px;
    }
    
    .cert-item {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .about-badge-overlay {
        bottom: 15px;
        right: 15px;
        padding: 16px;
    }
    
    .badge-icon-large {
        font-size: 28px;
    }
    
    .badge-text {
        font-size: 11px;
    }
    
    /* FAQ Section */
    .faq {
        padding: var(--spacing-xl) 0;
    }
    
    .faq-question {
        padding: var(--spacing-md);
    }
    
    .faq-question-text {
        font-size: 16px;
    }
    
    .faq-icon {
        font-size: 22px;
        width: 26px;
        height: 26px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 var(--spacing-md) var(--spacing-md);
    }
    
    .faq-cta {
        padding: var(--spacing-lg);
    }
    
    .faq-cta h3 {
        font-size: 22px;
    }
    
    .faq-cta p {
        font-size: 14px;
    }
    
    /* Contact Section */
    .contact {
        padding: var(--spacing-xl) 0;
    }
    
    .contact-content {
        gap: var(--spacing-lg);
    }
    
    .contact-info {
        gap: var(--spacing-sm);
    }
    
    .contact-card {
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .contact-card-icon {
        font-size: 36px;
        margin-bottom: var(--spacing-xs);
    }
    
    .contact-card h3 {
        font-size: 16px;
    }
    
    .contact-value {
        font-size: 18px;
    }
    
    .contact-card p {
        font-size: 13px;
    }
    
    .contact-form-wrapper {
        padding: var(--spacing-md);
    }
    
    .map-container iframe {
        height: 250px;
    }
    
    .coverage-areas {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .method-item {
        padding: var(--spacing-sm);
    }
    
    .service-guarantee-box {
        padding: var(--spacing-sm);
    }
    
    .map-info-title {
        font-size: 18px;
    }
    
    .form-title {
        font-size: 22px;
        margin-bottom: var(--spacing-md);
    }
    
    .contact-form {
        gap: var(--spacing-sm);
    }
    
    .form-group label {
        font-size: 13px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .form-note {
        font-size: 12px;
    }
    
    /* Footer */
    .footer {
        padding: var(--spacing-lg) 0 var(--spacing-sm) 0;
    }
    
    .footer-content {
        gap: var(--spacing-md);
        margin-bottom: var(--spacing-md);
        padding-bottom: var(--spacing-md);
    }
    
    .footer-logo {
        margin-bottom: var(--spacing-sm);
    }
    
    .footer-description {
        font-size: 13px;
        margin-bottom: var(--spacing-sm);
    }
    
    .footer-social {
        gap: var(--spacing-xs);
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-link svg {
        width: 16px;
        height: 16px;
    }
    
    .footer-title {
        font-size: 15px;
        margin-bottom: var(--spacing-sm);
    }
    
    .footer-links {
        gap: 10px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .footer-contact {
        gap: var(--spacing-xs);
    }
    
    .footer-contact li {
        font-size: 13px;
        gap: 8px;
    }
    
    .contact-icon {
        font-size: 14px;
    }
    
    .footer-bottom {
        padding-top: var(--spacing-sm);
        font-size: 12px;
    }
    
    .footer-bottom-links a {
        font-size: 12px;
    }
}

/* Mobile Small (360px and below) */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .title-main,
    .title-highlight {
        font-size: 24px;
    }
    
    .title-sub {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .hero-image img,
    .about-image img {
        height: 250px;
    }
    
    .hero-image-badge {
        bottom: 10px;
        right: 10px;
        padding: 12px 16px;
    }
    
    .badge-number {
        font-size: 28px;
    }
    
    .badge-label {
        font-size: 10px;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .btn-large {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .service-card,
    .about-feature,
    .contact-card {
        padding: var(--spacing-sm);
    }
    
    .contact-form-wrapper {
        padding: var(--spacing-sm);
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

.hero-content > *,
.service-card,
.about-feature {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

:focus-visible {
    outline: 3px solid var(--color-yellow);
    outline-offset: 3px;
}

/* ============================================
   RESPONSIVE UTILITIES & OVERFLOW FIXES
   ============================================ */

/* Prevent horizontal scroll on all screen sizes */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

/* Ensure images don't cause overflow */
img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

/* Better touch target sizes for mobile */
@media (max-width: 768px) {
    button,
    .btn,
    a.btn,
    .nav-link,
    .service-link,
    .contact-value {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    
    /* Improve form inputs for mobile */
    input,
    select,
    textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Better spacing for touch */
    .social-link,
    .mobile-menu-toggle {
        min-width: 44px;
        min-height: 44px;
    }
}

/* Landscape orientation fixes */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 var(--spacing-lg) 0;
    }
    
    .hero-image img,
    .about-image img {
        height: 350px;
    }
    
    .nav {
        max-height: 100vh;
        overflow-y: auto;
    }
}

/* Very wide screens */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
}

/* High DPI / Retina displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print styles */
@media print {
    .header,
    .mobile-menu-toggle,
    .hero-actions,
    .service-link,
    .contact-form,
    .footer-social {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
}

/* ============================================
   FLOATING CALL BUTTON
   ============================================ */

.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    min-width: 220px;
    max-width: calc(100% - 60px);
    background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
    border-radius: 18px;
    text-decoration: none;
    color: var(--color-black);
    box-shadow: 0 10px 28px rgba(255, 215, 0, 0.45), 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    z-index: 9999;
    cursor: pointer;
    animation: pulse-yellow 2.4s infinite;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    font-family: var(--font-primary);
}

.floating-call-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(255, 215, 0, 0.5), 0 6px 18px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #FFC300 0%, #FFB400 100%);
}

.floating-call-btn:active {
    transform: translateY(-1px);
}

.floating-call-btn .call-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.floating-call-btn .call-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    line-height: 1.15;
}

.floating-call-btn .call-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.floating-call-btn .call-phone {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

@keyframes pulse-yellow {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 8px 32px rgba(255, 215, 0, 0.6), 0 4px 16px rgba(0, 0, 0, 0.3),
                    0 0 0 10px rgba(255, 215, 0, 0.1),
                    0 0 0 20px rgba(255, 215, 0, 0.05);
    }
}

/* Tablet and smaller laptops */
@media (max-width: 1024px) {
    .floating-call-btn {
        padding: 14px 22px;
        gap: 12px;
        min-width: 210px;
        bottom: 26px;
        right: 26px;
        max-width: calc(100% - 52px);
    }

    .floating-call-btn .call-icon {
        width: 26px;
        height: 26px;
    }

    .floating-call-btn .call-phone {
        font-size: 17px;
    }
}

/* Tablets in portrait mode */
@media (max-width: 768px) {
    .floating-call-btn {
        padding: 13px 20px;
        gap: 10px;
        min-width: 200px;
        bottom: 22px;
        right: 22px;
        max-width: calc(100% - 44px);
    }

    .floating-call-btn .call-icon {
        width: 25px;
        height: 25px;
    }

    .floating-call-btn .call-label {
        font-size: 10px;
        letter-spacing: 0.8px;
    }

    .floating-call-btn .call-phone {
        font-size: 16px;
    }

    /* Reduce animation on tablets */
    .floating-call-btn:hover {
        transform: translateY(-2px);
    }
}

/* Large phones (landscape & portrait) */
@media (max-width: 640px) {
    .floating-call-btn {
        padding: 12px 18px;
        gap: 9px;
        min-width: 190px;
        bottom: 20px;
        right: 20px;
        max-width: calc(100% - 40px);
    }

    .floating-call-btn .call-icon {
        width: 24px;
        height: 24px;
    }

    .floating-call-btn .call-label {
        font-size: 9.5px;
        letter-spacing: 0.7px;
    }

    .floating-call-btn .call-phone {
        font-size: 15px;
    }
}

/* Standard phones */
@media (max-width: 480px) {
    .floating-call-btn {
        padding: 11px 16px;
        min-width: 185px;
        bottom: 18px;
        right: 18px;
        max-width: calc(100% - 36px);
    }

    .floating-call-btn .call-icon {
        width: 23px;
        height: 23px;
    }

    .floating-call-btn .call-phone {
        font-size: 14.5px;
    }
}

/* Small phones (iPhone SE, Galaxy S8, etc.) */
@media (max-width: 375px) {
    .floating-call-btn {
        padding: 10px 14px;
        gap: 8px;
        min-width: 170px;
        bottom: 16px;
        right: 16px;
        max-width: calc(100% - 32px);
    }

    .floating-call-btn .call-icon {
        width: 22px;
        height: 22px;
    }

    .floating-call-btn .call-label {
        font-size: 9px;
        letter-spacing: 0.6px;
    }

    .floating-call-btn .call-phone {
        font-size: 13.5px;
    }

    /* Lighter pulse effect on small screens */
    @keyframes pulse-yellow {
        0%, 100% {
            box-shadow: 0 7px 20px rgba(255, 215, 0, 0.4), 0 3px 10px rgba(0, 0, 0, 0.2);
        }
        50% {
            box-shadow: 0 7px 26px rgba(255, 215, 0, 0.5), 0 3px 14px rgba(0, 0, 0, 0.28),
                        0 0 0 8px rgba(255, 215, 0, 0.12);
        }
    }
}

/* Very small phones (iPhone 5/SE, small Android) */
@media (max-width: 320px) {
    .floating-call-btn {
        padding: 9px 12px;
        gap: 7px;
        min-width: 160px;
        bottom: 14px;
        right: 14px;
        max-width: calc(100% - 28px);
    }

    .floating-call-btn .call-icon {
        width: 21px;
        height: 21px;
    }

    .floating-call-btn .call-label {
        font-size: 8.5px;
        letter-spacing: 0.5px;
    }

    .floating-call-btn .call-phone {
        font-size: 12.5px;
    }
}

/* Landscape mode adjustments for phones */
@media (max-height: 500px) and (orientation: landscape) {
    .floating-call-btn {
        padding: 9px 12px;
        min-width: 150px;
        bottom: 14px;
        right: 14px;
        gap: 7px;
    }

    .floating-call-btn .call-icon {
        width: 20px;
        height: 20px;
    }

    .floating-call-btn .call-phone {
        font-size: 12.5px;
    }
}

/* Extra small landscape (when keyboard might be open) */
@media (max-height: 400px) and (orientation: landscape) {
    .floating-call-btn {
        padding: 8px 11px;
        min-width: 140px;
        bottom: 12px;
        right: 12px;
        max-width: calc(100% - 24px);
        animation: none;
    }

    .floating-call-btn .call-icon {
        width: 18px;
        height: 18px;
    }

    .floating-call-btn .call-label {
        font-size: 8px;
    }

    .floating-call-btn .call-phone {
        font-size: 12px;
    }
}

/* High DPI displays (Retina) - ensure crisp rendering */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .floating-call-btn .call-icon {
        filter: drop-shadow(0 0.5px 1px rgba(0, 0, 0, 0.2));
    }
}

/* Prevent button from interfering with content on very small screens */
@media (max-width: 360px) and (max-height: 640px) {
    body.menu-open .floating-call-btn {
        opacity: 0.5;
        pointer-events: none;
    }
}

/* Safe area for notched devices (iPhone X and newer) */
@supports (padding: max(0px)) {
    .floating-call-btn {
        bottom: max(30px, env(safe-area-inset-bottom, 30px));
        right: max(30px, env(safe-area-inset-right, 30px));
    }
    
    @media (max-width: 768px) {
        .floating-call-btn {
            bottom: max(20px, calc(env(safe-area-inset-bottom, 20px) + 10px));
            right: max(20px, env(safe-area-inset-right, 20px));
        }
    }
    
    @media (max-width: 480px) {
        .floating-call-btn {
            bottom: max(16px, calc(env(safe-area-inset-bottom, 16px) + 8px));
            right: max(16px, env(safe-area-inset-right, 16px));
        }
    }
}
