/* ==========================================================================
   Mersin Ev Temizliği Hizmeti - Muhammed Veli Çömlek
   Premium Design System & Stylesheet
   ========================================================================== */

/* 1. Global Reset & Custom Variables */
:root {
    --primary: #0284c7;        /* Sky Blue 600 - trust and clean */
    --primary-light: #38bdf8;  /* Sky Blue 400 - fresh accents */
    --primary-dark: #0369a1;   /* Sky Blue 700 - rich deep blue */
    --bg-light: #f8fafc;       /* Slate 50 - clean section backgrounds */
    --bg-white: #ffffff;
    --bg-ice: #f0f9ff;         /* Sky 50 - light ice blue for highlights */
    
    --text-dark: #0f172a;      /* Slate 900 - readable bold text */
    --text-medium: #334155;    /* Slate 700 - readable body text */
    --text-light: #64748b;     /* Slate 500 - muted details */
    
    --border-color: #e2e8f0;   /* Slate 200 */
    --border-light: #f1f5f9;   /* Slate 100 */
    
    --success: #10b981;        /* Emerald 500 */
    --success-light: #d1fae5;
    
    --whatsapp: #25d366;
    --whatsapp-dark: #128c7e;
    
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 40px -15px rgba(15, 23, 42, 0.12);
    --shadow-glow: 0 0 20px rgba(14, 165, 233, 0.15);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-white);
    color: var(--text-medium);
    line-height: 1.7;
    overflow-x: hidden;
}

/* 2. Scrollbar & Progress Bar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-light), var(--primary));
    z-index: 1002;
    width: 0%;
    transition: width 0.1s ease-out;
}

/* 3. Helper Classes & Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

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

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.w-full {
    width: 100%;
}

.highlight {
    color: var(--primary);
    background: linear-gradient(120deg, rgba(56, 189, 248, 0.15) 0%, rgba(2, 132, 199, 0.15) 100%);
    padding: 0 6px;
    border-radius: 4px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    font-family: var(--font-primary);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-white);
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4);
}

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

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: translateY(-2px);
}

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

.btn-outline-white:hover {
    background-color: var(--bg-white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: var(--bg-white);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-phone {
    background-color: var(--bg-ice);
    color: var(--primary);
    border: 1.5px solid rgba(2, 132, 199, 0.15);
}

.btn-phone:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: translateY(-2px);
}

/* Typography elements */
.section-tag {
    display: inline-flex;
    align-items: center;
    background-color: var(--bg-ice);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
    border: 1px solid rgba(2, 132, 199, 0.1);
    font-family: var(--font-secondary);
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 12px;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 20px;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 56px auto;
}

/* 4. Main Header Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 24px 0;
    border-bottom: 1px solid transparent;
    background-color: transparent;
}

.main-header.scrolled {
    padding: 14px 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(2, 132, 199, 0.08);
    box-shadow: 0 4px 30px rgba(15, 23, 42, 0.03);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--bg-white);
    transition: var(--transition-fast);
}

.main-header.scrolled .logo {
    color: var(--text-dark);
}

.logo-icon {
    width: 28px;
    height: 28px;
    color: var(--bg-white);
    transition: var(--transition-fast);
}

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

.logo-text {
    font-family: var(--font-secondary);
    font-size: 1.45rem;
    font-weight: 800;
}

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

.main-header.scrolled .logo-text span {
    color: var(--primary);
}

.logo:hover {
    opacity: 0.9;
}

/* Nav Menu */
.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
    padding: 8px 0;
}

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

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

.main-header.scrolled .nav-link::after {
    background-color: var(--primary);
}

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

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

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

.nav-link.active {
    color: var(--bg-white);
}

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

/* Header buttons & Mobile toggle */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    padding: 4px;
    z-index: 1001;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2.5px;
    background-color: var(--bg-white);
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.main-header.scrolled .mobile-toggle .bar {
    background-color: var(--text-dark);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--bg-white);
    box-shadow: -10px 0 30px rgba(15, 23, 42, 0.05);
    z-index: 999;
    padding: 100px 32px 32px 32px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.15rem;
    font-weight: 600;
    transition: var(--transition-fast);
    display: block;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--primary);
    padding-left: 8px;
}

.mobile-cta-li {
    margin-top: 24px;
}

/* 5. Hero Section Styling */
.hero-section {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: var(--bg-white);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(2, 132, 199, 0.6) 100%);
    z-index: 1;
}

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

.hero-content {
    max-width: 750px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
}

.hero-tag i {
    width: 16px;
    height: 16px;
    color: var(--bg-white);
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--bg-white);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 400;
    max-width: 620px;
    color: var(--bg-white);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-secondary);
    color: var(--primary-light);
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
    color: var(--bg-white);
}

/* Wave shape divider */
.wave-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 3;
}

.wave-shape svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.wave-shape .shape-fill {
    fill: var(--bg-white);
}

/* Pulse animation for CTA button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(2, 132, 199, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(2, 132, 199, 0);
    }
}

.pulse-animation {
    animation: pulse 2.2s infinite;
}

/* 6. About Me Section */
.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.about-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background-color: var(--bg-white);
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--border-light);
    max-width: 250px;
}

.floating-badge i {
    width: 40px;
    height: 40px;
    background-color: var(--bg-ice);
    color: var(--primary);
    padding: 10px;
    border-radius: 12px;
}

.floating-badge h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

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

.about-text {
    font-size: 1.05rem;
    margin-bottom: 16px;
    color: var(--text-medium);
}

.secondary-text {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    margin-bottom: 40px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.about-icon {
    color: var(--success);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.about-cta {
    display: flex;
    gap: 16px;
}

/* 7. Why Choose Me Card System */
.why-us-section {
    background-color: var(--bg-light);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.why-card {
    background-color: var(--bg-white);
    padding: 40px 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-light);
    text-align: left;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: rgba(2, 132, 199, 0.2);
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-fast);
}

.card-icon {
    width: 28px;
    height: 28px;
}

/* Theme styling for icons */
.bg-sky { background-color: #f0f9ff; }
.text-sky { color: #0284c7; }

.bg-blue { background-color: #eff6ff; }
.text-blue { color: #2563eb; }

.bg-green { background-color: #ecfdf5; }
.text-green { color: #10b981; }

.bg-red { background-color: #fff1f2; }
.text-red { color: #f43f5e; }

.bg-orange { background-color: #fff7ed; }
.text-orange { color: #f97316; }

.bg-purple { background-color: #faf5ff; }
.text-purple { color: #a855f7; }

.why-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-family: var(--font-secondary);
}

.why-card p {
    font-size: 0.925rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* 8. Services Grid Styling */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 56px;
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: left;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

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

.service-icon-bg {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--bg-ice);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: var(--transition-fast);
}

.service-icon {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.service-card:hover .service-icon-bg {
    background-color: var(--primary);
}

.service-card:hover .service-icon {
    color: var(--bg-white);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-family: var(--font-secondary);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-footer {
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
}

.service-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    background-color: var(--bg-ice);
    padding: 4px 10px;
    border-radius: 4px;
}

.services-cta {
    background-color: var(--bg-light);
    padding: 36px 40px;
    border-radius: 20px;
    border: 1px dashed var(--primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    max-width: 900px;
    margin: 56px auto 0 auto;
}

.services-cta p {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    max-width: 600px;
}

/* 9. Müşteri Yorumları Section */
.testimonials-section {
    background-color: var(--bg-light);
}

.slider-outer-container {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
}

.testimonials-slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    position: relative;
}

.testimonials-slider {
    overflow: hidden;
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    background-color: var(--bg-white);
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    padding: 56px 48px;
    background-color: var(--bg-white);
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.slider-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    z-index: 5;
    flex-shrink: 0;
}

.slider-arrow:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.slider-arrow i {
    width: 22px;
    height: 22px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background-color: var(--primary);
    width: 28px;
    border-radius: 10px;
}

.quote-icon {
    font-size: 5rem;
    font-family: var(--font-secondary);
    color: rgba(2, 132, 199, 0.08);
    position: absolute;
    top: 15px;
    right: 36px;
    line-height: 1;
    font-weight: 900;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
    line-height: 1.8;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.user-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid rgba(2, 132, 199, 0.15);
}

.user-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.user-info p {
    font-size: 0.8rem;
    color: var(--text-light);
}

.star-rating {
    display: flex;
    gap: 4px;
}

.star {
    width: 18px;
    height: 18px;
    color: #e2e8f0;
}

.star.filled {
    color: #f59e0b;
    fill: #f59e0b;
}

/* 10. İletişim Bölümü (Business Card & Map) */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: stretch;
}

/* Business Card style container */
.contact-card {
    background-color: var(--bg-white);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

/* Visual decorations inside card */
.contact-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: var(--bg-ice);
    border-radius: 50%;
    z-index: 0;
}

.business-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1.5px solid var(--border-light);
    padding-bottom: 24px;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.business-card-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-secondary);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.business-card-logo i {
    color: var(--primary);
    width: 22px;
    height: 22px;
}

.business-card-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    background-color: var(--bg-ice);
    padding: 4px 10px;
    border-radius: 30px;
    border: 1.5px solid rgba(2, 132, 199, 0.15);
}

.business-card-body {
    position: relative;
    z-index: 1;
}

.person-name {
    font-family: var(--font-secondary);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.person-title {
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 36px;
    text-transform: uppercase;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

a.contact-item:hover {
    color: var(--primary);
}

.contact-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

a.contact-item:hover .contact-icon-box {
    background-color: var(--primary);
    color: var(--bg-white);
}

.contact-icon-box i {
    width: 20px;
    height: 20px;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
}

.contact-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}

.business-card-footer {
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

/* Map area */
.map-container {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    min-height: 400px;
}

.google-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-overlay-card {
    position: absolute;
    top: 24px;
    left: 24px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border-light);
    z-index: 10;
    pointer-events: none;
}

.map-icon {
    color: var(--primary);
    width: 24px;
    height: 24px;
}

.map-overlay-card h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
}

.map-overlay-card p {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* 11. Footer Styling */
.site-footer {
    background-color: #0b1329;
    color: #94a3b8;
    padding: 80px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 64px;
    padding-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.logo-text.text-white {
    color: var(--bg-white);
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer-links h4,
.footer-socials h4 {
    font-family: var(--font-secondary);
    color: var(--bg-white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #94a3b8;
    transition: var(--transition-fast);
}

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

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-icon-btn:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.social-icon-btn i {
    width: 18px;
    height: 18px;
}

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

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

/* 12. Floating Action Buttons (Sticky CTA) */
.floating-cta-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 998;
}

.floating-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.2);
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.floating-phone {
    background-color: var(--primary);
}

.floating-phone:hover {
    background-color: var(--primary-dark);
    transform: scale(1.08);
}

.floating-wa {
    background-color: var(--whatsapp);
}

.floating-wa:hover {
    background-color: var(--whatsapp-dark);
    transform: scale(1.08);
}

.floating-top {
    background-color: var(--text-dark);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.floating-top.show {
    opacity: 0.85;
    pointer-events: auto;
    transform: translateY(0);
}

.floating-top:hover {
    opacity: 1;
    background-color: var(--primary);
}

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

/* 13. Interactive Quote Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1010;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: var(--bg-white);
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--text-dark);
    transform: rotate(90deg);
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.modal-header-icon {
    width: 48px;
    height: 48px;
    background-color: var(--bg-ice);
    color: var(--primary);
    padding: 10px;
    border-radius: 12px;
}

.modal-header h3 {
    font-family: var(--font-secondary);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-dark);
}

.modal-header p {
    font-size: 0.85rem;
    color: var(--text-light);
}

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

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

.form-control {
    width: 100%;
    padding: 12px 18px;
    border-radius: 10px;
    border: 1.5px solid var(--border-color);
    background-color: var(--bg-light);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.1);
}

select.form-control {
    cursor: pointer;
}

.btn-block {
    width: 100%;
}

.modal-note {
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 14px;
}

/* 14. Scroll animations triggering classes */
.scroll-animate {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-left {
    transform: translateX(-40px);
}

.slide-right {
    transform: translateX(40px);
}

.slide-up {
    transform: translateY(40px);
}

.scale-in {
    transform: scale(0.92);
}

/* Animated state */
.scroll-animate.animated {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Utility delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* Simple page load animation classes */
.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* 15. Responsive Styling Settings */
@media (max-width: 1024px) {
    .section {
        padding: 80px 0;
    }
    .grid-2 {
        gap: 40px;
    }
    .why-us-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .why-us-grid,
    .services-grid,
    .testimonials-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .about-image-wrapper {
        order: 2;
    }
    .about-content {
        order: 1;
    }
    .about-img {
        height: 380px;
    }
    .floating-badge {
        right: 10px;
    }
    
    .nav-menu,
    .header-actions .btn-phone {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-stats {
        gap: 24px;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    
    .services-cta {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 24px;
    }
    
    .contact-card {
        padding: 24px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .hero-buttons .btn {
        width: 100%;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
    .about-cta {
        flex-direction: column;
    }
    .about-cta .btn {
        width: 100%;
    }
    .modal-content {
        padding: 24px;
        border-radius: 16px;
    }
}
