/* Ateş Kaporta ve Boya Servisi - Alternating Light/Dark Premium Theme */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --bg-light: #ffffff;
    --bg-light-alt: #f9f9fc;
    --bg-dark: #0b0b0d;
    --bg-dark-alt: #121215;
    
    --primary: #d62828; /* Ateş Kırmızısı */
    --primary-glow: rgba(214, 40, 40, 0.3);
    --primary-hover: #e50914;
    
    --text-dark: #16161a;
    --text-dark-muted: #55555d;
    --text-light: #ffffff;
    --text-light-muted: #a0a0a8;
    
    --border-light: #eaeaea;
    --border-dark: rgba(255, 255, 255, 0.06);
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius: 12px;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

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

ul {
    list-style: none;
}

input, textarea, button {
    font-family: inherit;
    font-size: inherit;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.section-padding { padding: 90px 0; }

.section-subtitle {
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 45px;
    line-height: 1.2;
    color: var(--text-dark);
}

.section-title span {
    color: var(--primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 10px;
}

.btn-primary {
    background-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-outline {
    background-color: rgba(22, 22, 26, 0.03);
    color: var(--text-dark);
    border: 2px solid #ddd;
}

.btn-outline:hover {
    background-color: var(--text-dark);
    color: #fff;
    border-color: var(--text-dark);
    transform: translateY(-3px);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 11, 13, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

header.scrolled {
    padding: 8px 0;
    background: rgba(11, 11, 13, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo a {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: 1px;
    color: #fff;
}

.logo-sub {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--primary);
    margin-top: 3px;
    text-transform: uppercase;
}

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

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 0;
    position: relative;
    color: var(--text-light-muted);
}

.nav-link:hover, .nav-link.active {
    color: #fff;
}

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

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

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

.nav-contact-icon {
    width: 42px;
    height: 42px;
    background-color: rgba(214, 40, 40, 0.1);
    border: 1px solid rgba(214, 40, 40, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
}

.nav-contact-info {
    display: flex;
    flex-direction: column;
}

.nav-contact-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light-muted);
    font-weight: 600;
}

.nav-contact-number {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: var(--transition);
    background-color: #fff;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(214, 40, 40, 0.05) 0%, rgba(11, 11, 13, 0.92) 80%),
                linear-gradient(to right, rgba(11, 11, 13, 0.95) 40%, rgba(11, 11, 13, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    animation: slideUp 1s ease-out;
}

.hero-subtitle {
    display: inline-block;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-left: 3px solid var(--primary);
    padding-left: 12px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-light);
}

.hero-title span {
    color: var(--primary);
    display: block;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--text-light-muted);
    margin-bottom: 35px;
}

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

.hero-btns .btn-outline {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.hero-btns .btn-outline:hover {
    background-color: #fff;
    color: var(--bg-dark);
    border-color: #fff;
}

/* Hero Info Bar */
.hero-infobar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(18, 18, 21, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 2;
    padding: 30px 0;
}

.infobar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.infobar-icon {
    width: 48px;
    height: 48px;
    background: rgba(214, 40, 40, 0.1);
    border: 1px solid rgba(214, 40, 40, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.infobar-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 3px;
    color: var(--text-light);
}

.infobar-desc {
    font-size: 0.8rem;
    color: var(--text-light-muted);
}

/* Section Colors for Alternating Light & Dark */
.bg-light-section {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

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

.bg-light-section p {
    color: var(--text-dark-muted);
}

.bg-dark-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

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

.bg-dark-section p {
    color: var(--text-light-muted);
}

/* Services Section (Light Background) */
#hizmetlerimiz {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 45px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center; /* Centered layout matching reference image */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(214, 40, 40, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06), 0 0 20px rgba(214, 40, 40, 0.05);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%; /* Circular icon matching reference image */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 25px auto;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
    box-shadow: 0 0 15px var(--primary-glow);
}

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

.service-card-text {
    color: var(--text-dark-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Dark Service Card overrides for text readability */
.service-card.card-dark {
    background: linear-gradient(135deg, #121216 0%, #200507 100%) !important;
    border-color: rgba(214, 40, 40, 0.15);
}

.service-card.card-dark:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(214, 40, 40, 0.15);
}

.service-card.card-dark .service-card-title {
    color: var(--text-light) !important;
}

.service-card.card-dark .service-card-text {
    color: var(--text-light-muted) !important;
}

.service-card-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card:hover .service-card-link {
    color: var(--text-dark);
}

/* Stats Section (Dark Background) */
.stats {
    background: linear-gradient(rgba(11, 11, 13, 0.93), rgba(11, 11, 13, 0.93)), url('../images/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 85px 0;
    color: var(--text-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 20px var(--primary-glow);
}

.stat-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

/* About / Kurumsal Section (Light Background) */
#kurumsal {
    background-color: var(--bg-light);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    width: 85%;
    border: 1px solid var(--border-light);
}

.about-img-sub {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 45%;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border: 4px solid var(--bg-light);
    z-index: 2;
}

.about-content .section-title {
    margin-bottom: 25px;
}

.about-text {
    color: var(--text-dark-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature-icon {
    color: var(--primary);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(214, 40, 40, 0.1);
    border: 1px solid rgba(214, 40, 40, 0.2);
    font-size: 0.75rem;
}

.about-feature-text {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

/* Gallery Section (Light Background) */
#galeri {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 300px;
    border: 1px solid var(--border-light);
}

.gallery-item.col-4 { grid-column: span 4; }
.gallery-item.col-6 { grid-column: span 6; }
.gallery-item.col-8 { grid-column: span 8; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 11, 13, 0.95) 0%, rgba(11, 11, 13, 0.2) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-cat {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.gallery-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Testimonials / Müşteri Yorumları Section (Dark Background) */
#yorumlar {
    background-color: var(--bg-dark-alt);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.testimonial-card {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-dark);
    border-radius: var(--border-radius);
    padding: 40px 35px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(214, 40, 40, 0.2);
}

.testimonial-icon {
    font-size: 2.5rem;
    color: rgba(214, 40, 40, 0.15);
    position: absolute;
    top: 30px;
    right: 35px;
    line-height: 1;
}

.testimonial-stars {
    color: #ffb703;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text-light);
}

.testimonial-car {
    font-size: 0.8rem;
    color: var(--text-light-muted);
    margin-top: 2px;
}

/* Detail Pages Layout & Styling (Light Content, Dark Sidebar widgets) */
.page-header {
    background: linear-gradient(rgba(11, 11, 13, 0.85), rgba(11, 11, 13, 0.95)), url('../images/hero_bg.png');
    background-size: cover;
    background-position: center;
    padding: 160px 0 90px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-light);
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-light);
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light-muted);
}

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

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

.breadcrumbs span {
    color: var(--primary);
}

.detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    background-color: var(--bg-light);
}

.detail-content h2 {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    margin: 30px 0 15px 0;
    color: var(--text-dark);
}

.detail-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 25px 0 12px 0;
    color: var(--text-dark);
}

.detail-content h2:first-of-type {
    margin-top: 0;
}

.detail-content p {
    color: var(--text-dark-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.detail-content img {
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-light);
    width: 100%;
    max-height: 450px;
    object-fit: cover;
}

.detail-content ul {
    margin-bottom: 30px;
}

.detail-content li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--text-dark);
}

.detail-content li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
}

.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background-color: var(--bg-light-alt);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.01);
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    border-left: 3px solid var(--primary);
    padding-left: 12px;
    color: var(--text-dark);
}

.services-list-widget a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 8px;
    background-color: #fff;
    border: 1px solid var(--border-light);
    font-weight: 600;
    color: var(--text-dark-muted);
}

.services-list-widget a:hover, .services-list-widget a.active {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateX(5px);
}

.widget-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #800f13 100%);
    color: #fff;
    border: none;
    text-align: center;
    padding: 40px 30px;
}

.widget-cta .widget-title {
    color: #fff;
    border-left: none;
    padding-left: 0;
}

.widget-cta .btn-outline {
    background-color: #fff;
    color: var(--primary);
    border: none;
    width: 100%;
    margin-top: 25px;
}

.widget-cta .btn-outline:hover {
    background-color: var(--bg-dark);
    color: #fff;
}

/* Blog Page Styling (Light Grid) */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    background-color: var(--bg-light);
}

.blog-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(214, 40, 40, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.blog-img {
    height: 220px;
    overflow: hidden;
}

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

.blog-card:hover .blog-img img {
    transform: scale(1.08);
}

.blog-info {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--text-dark-muted);
    margin-bottom: 12px;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    color: var(--text-dark);
}

.blog-text {
    color: var(--text-dark-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.blog-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-card:hover .blog-link {
    color: var(--text-dark);
}

/* Contact Page Styling (Light Grid, Dark Form option) */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    background-color: var(--bg-light);
}

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

.contact-info-card {
    background-color: var(--bg-light-alt);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 1px solid var(--border-light);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background-color: rgba(214, 40, 40, 0.08);
    border: 1px solid rgba(214, 40, 40, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-details p {
    color: var(--text-dark-muted);
    font-size: 0.95rem;
}

.contact-form {
    background-color: var(--bg-light-alt);
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid var(--border-light);
}

.contact-form h3 {
    color: var(--text-dark);
}

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

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

.form-control {
    width: 100%;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 15px;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 8px rgba(214, 40, 40, 0.15);
}

textarea.form-control {
    resize: none;
}

.map-container {
    margin-top: 50px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-light);
    height: 400px;
}

/* Footer Section (Dark Background) */
footer {
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 85px 0 30px 0;
    color: var(--text-light-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-widget-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: var(--text-light);
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-about p {
    color: var(--text-light-muted);
    font-size: 0.95rem;
    margin: 20px 0 25px 0;
}

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

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-light);
}

.social-link:hover {
    background-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-light-muted);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-light-muted);
}

.footer-contact a {
    color: var(--text-light-muted);
}

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

.footer-contact-icon {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-light-muted);
}

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

.footer-bottom-links a {
    color: var(--text-light-muted);
}

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

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-btn {
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

.whatsapp-tooltip {
    background-color: rgba(18, 18, 22, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    pointer-events: none;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .infobar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-images {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-img-main {
        width: 80%;
    }
    
    .about-img-sub {
        bottom: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        gap: 0;
        flex-direction: column;
        background-color: var(--bg-dark);
        width: 100%;
        height: calc(100vh - 80px);
        text-align: center;
        transition: 0.3s;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        z-index: 99;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        display: block;
        padding: 20px 0;
        font-size: 1.1rem;
        color: var(--text-light-muted);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-contact {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero {
        padding-top: 130px;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: stretch;
    }
    
    .hero-content {
        margin: 40px 0;
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-text {
        font-size: 0.95rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-infobar {
        position: static;
        background: var(--bg-dark-alt);
        padding: 50px 0;
        margin-top: auto;
        width: 100%;
    }
    
    .infobar-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        gap: 15px;
    }
    
    .gallery-item.col-4, .gallery-item.col-6, .gallery-item.col-8 {
        grid-column: span 12;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .about-images {
        height: 300px;
    }
}
