/* ==========================================
   TABLE OF CONTENTS
   ==========================================
   1. CSS Reset & Variables
   2. Base Styles
   3. Typography
   4. Layout & Container
   5. Components
      - Buttons
      - Forms
      - Cards
   6. Header & Navigation
      - Top Bar
      - Main Navigation
   7. Sections
      - Hero
      - Services
      - About
      - Gallery
      - Coverage Areas
      - Contact
   8. Footer
   9. Floating Elements
   10. Animations
   11. Responsive Design
   ========================================== */

/* ==========================================
   1. CSS RESET & VARIABLES
   ========================================== */

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


:root {
    /* Color Palette */
    --primary-color: #0c5c7a;
    --primary-dark: #084456;
    --primary-light: #0e7ca3;
    --accent-color: #f5a623;
    --accent-dark: #d68910;
    
    /* Text Colors */
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    
    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-lighter: #fafbfc;
    --border-color: #e1e4e8;
    
    /* Typography */
    --font-display: 'Darker Grotesque', sans-serif;
    --font-body: 'Crimson Pro', serif;
    
    /* Spacing Scale */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
}

/* ==========================================
   2. BASE STYLES
   ========================================== */

body {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

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

/* ==========================================
   3. TYPOGRAPHY
   ========================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: var(--spacing-sm);
}

h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-sm);
}

.lead {
    font-size: 1.35rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: var(--spacing-sm);
}

/* ==========================================
   4. LAYOUT & CONTAINER
   ========================================== */

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

section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
}

.section-header h2 {
    color: var(--primary-color);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-medium);
}

/* ==========================================
   5. COMPONENTS
   ========================================== */

/* ----- Buttons ----- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

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

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

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

.btn-large {
    font-size: 1.25rem;
    padding: 1.25rem 2.5rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ----- Forms ----- */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: border-color var(--transition-fast);
}

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

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

.form-notification {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    transition: opacity 0.3s ease;
}

.form-notification.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-notification.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ----- Cards ----- */
.service-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all var(--transition-medium);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.service-icon svg {
    color: white;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.service-card > p {
    color: var(--text-medium);
    margin-bottom: var(--spacing-md);
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-medium);
    font-size: 1rem;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ==========================================
   6. HEADER & NAVIGATION
   ========================================== */

/* ----- Top Contact Bar ----- */
.top-bar {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    padding: var(--spacing-xs) 0;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item svg {
    flex-shrink: 0;
}

.contact-item a {
    color: white;
    font-weight: 600;
    transition: opacity var(--transition-fast);
}

.contact-item a:hover {
    opacity: 0.8;
}

/* ----- Main Navigation ----- */
.navbar {
    background: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--accent-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-logo-img {
    height: 70px;
    width: auto;
    display: block;
}

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

.logo h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin: 0;
    line-height: 1;
}

.logo-sub {
    display: block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.25rem;
}

.logo-text .logo-sub {
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-menu a {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width var(--transition-medium);
}

.nav-menu a:hover::after,
.nav-menu a.nav-cta::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-cta {
    background: var(--accent-color);
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 6px;
    font-weight: 700;
    transition: all var(--transition-fast);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==========================================
   7. SECTIONS
   ========================================== */

/* ----- Hero Section ----- */
.hero {
    position: relative;
    background: linear-gradient(165deg, #f8f9fa 0%, #e8eef2 100%);
    padding: var(--spacing-xl) var(--spacing-md);
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-decoration {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(12,92,122,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--spacing-md);
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title-main {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
}

.hero-title-sub {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-medium);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    padding-top: var(--spacing-md);
    border-top: 2px solid var(--border-color);
    animation: fadeInUp 0.8s ease 0.8s both;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.trust-item strong {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
}

.trust-item span {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ----- Services Section ----- */
.services {
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
}

/* ----- About Section ----- */
.about {
    background: var(--bg-light);
}

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

.about-text p {
    color: #333 !important;
}

.about-text .lead {
    color: #2c5f2d !important;
    font-weight: 500;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.about-features .feature,
.about-features .feature span {
    color: #333 !important;
}

.feature svg,
.about-features svg {
    color: var(--accent-color);
    stroke: #2c5f2d;
    flex-shrink: 0;
}

.feature span {
    font-size: 1rem;
    font-weight: 500;
}

.about-image {
    position: relative;
}

.image-placeholder {
    background: linear-gradient(135deg, #e8eef2 0%, #d4dce3 100%);
    border-radius: 16px;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    border: 3px dashed var(--border-color);
}

.image-placeholder svg {
    color: var(--text-light);
    opacity: 0.5;
}

.image-placeholder p {
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

/* ----- Gallery Section ----- */
.gallery-section {
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-medium);
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.gallery-img {
    aspect-ratio: 4/3;
}

.gallery-caption {
    padding: var(--spacing-sm);
    background: white;
}

.gallery-caption h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

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

/* ----- Coverage Areas Section ----- */
.areas {
    background: var(--bg-light);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.area-column h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-xs);
    border-bottom: 3px solid var(--accent-color);
}

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

.area-column li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
}

.area-column li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.areas-note {
    text-align: center;
    margin-top: var(--spacing-lg);
    font-style: italic;
    color: var(--text-medium);
}

.areas-note a {
    color: var(--primary-color);
    font-weight: 600;
}

/* ----- Contact Section ----- */
.contact {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
}

.contact h2,
.contact h3,
.contact h4 {
    color: white;
}

.contact .section-label {
    color: var(--accent-color);
}

.contact-info .lead {
    color: #ffffff !important;
}

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

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.contact-method {
    display: flex;
    gap: var(--spacing-sm);
    align-items: start;
    background: rgba(255,255,255,0.1);
    padding: var(--spacing-md);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.method-details a {
    color: white;
    font-weight: 600;
    font-size: 1.15rem;
    display: block;
    margin-bottom: 0.25rem;
}

.method-details p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin: 0;
}

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

.contact-form-wrapper {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h3 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

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

/* ==========================================
   8. FOOTER
   ========================================== */

.footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.8);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-col h3,
.footer-col h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.footer-col li {
    padding: 0.375rem 0;
}

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

.footer-col a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

/* ==========================================
   9. FLOATING ELEMENTS
   ========================================== */

.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    color: white;
}

.whatsapp-btn {
    background-color: #25D366;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.call-btn {
    background-color: #2c5f2d;
}

.call-btn:hover {
    background-color: #97bc62;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 95, 45, 0.5);
}

.call-btn svg {
    animation: ring 2s ease-in-out infinite;
}

/* ==========================================
   10. ANIMATIONS
   ========================================== */

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

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

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
}

/* ==========================================
   11. RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 2rem;
        --spacing-lg: 1.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    /* Top Bar */
    .top-bar-content {
        font-size: 0.85rem;
        gap: var(--spacing-sm);
    }
    
    .contact-item.location {
        display: none;
    }
    /* Navigation - IMPROVED FOR IPHONE */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    flex-direction: column;
    padding: 0.75rem 1rem;
    gap: 0.75rem;
    min-height: auto;
}

.logo {
    gap: 8px;
    justify-content: center;
    width: 100%;
}

.nav-logo-img {
    height: 35px;
}

.logo h1 {
    font-size: 1.3rem;
}

.logo-sub {
    font-size: 0.6rem;
}

.nav-menu {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

.nav-menu li {
    flex: 0 0 auto;
}

.nav-menu a {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    white-space: nowrap;
}

.nav-cta {
    padding: 0.6rem 1rem !important;
    font-size: 0.9rem !important;
}
    
    /* Hero - COMPACT VERSION */
    .hero {
        padding: 2rem var(--spacing-sm);
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-title-main {
        font-size: 2rem;
    }
    
    .hero-title-sub {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-trust {
        padding-top: 1rem;
        gap: 1.5rem;
    }
    
    .trust-item strong {
        font-size: 1.25rem;
    }
    
    .trust-item span {
        font-size: 0.85rem;
    }
    
    /* Services - 2 columns on mobile */
    .services {
        padding: 2rem 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .service-list li {
        font-size: 0.85rem;
        padding: 0.3rem 0;
        padding-left: 1.5rem;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 0.75rem;
    }
    
    .service-icon svg {
        width: 28px;
        height: 28px;
    }
    
    /* About - More compact */
    .about {
        padding: 2rem 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-image {
        order: -1;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .feature {
        padding: 0.5rem;
    }
    
    /* Gallery - 2 COLUMNS on mobile */
    .gallery-section {
        padding: 2rem 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .gallery-caption h4 {
        font-size: 0.95rem;
    }
    
    .gallery-caption p {
        font-size: 0.85rem;
    }
    
    /* Areas - More compact */
    .areas {
        padding: 2rem 0;
    }
    
    .areas-grid {
        gap: 1.5rem;
    }
    
    /* Contact - FIX FORM CUTOFF */
.contact {
    padding: 2rem 0;
    overflow-x: hidden; /* Add this */
}

.contact .container {
    padding: 0 0.5rem !important; /* Even less padding, force it */
    max-width: 100vw;
}

.contact-content {
    gap: 2rem;
    padding: 0;
}

.contact-methods {
    gap: 1rem;
}

.contact-method {
    padding: 1rem;
}

.method-icon {
    width: 40px;
    height: 40px;
}

.contact-form-wrapper {
    padding: 1rem 0.5rem; /* Minimal padding */
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.contact-form {
    width: 100%;
}

.form-row {
    grid-template-columns: 1fr; /* Stack fields vertically */
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group select,
.form-group textarea,
.btn-full {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
    
    /* Footer - More compact */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    /* Floating Buttons */
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .floating-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Extra small screens - even more compact */
@media (max-width: 400px) {
    .hero-title-main {
        font-size: 1.75rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}