@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* CSS Custom Properties / Design Tokens */
:root {
    --primary: #0d2847;
    --primary-light: #1a3c61;
    --primary-dark: #07192e;
    --secondary: #f25c05;
    --secondary-hover: #d35400;
    --accent: #25d366; /* WhatsApp Green */
    --text-dark: #22252a;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --bg-white: #ffffff;
    --bg-light: #f8fafd;
    --bg-dark: #071322;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --font-heading: 'Outfit', 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.02);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

/* Base Resets */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

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

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

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

ul {
    list-style: none;
}

/* Global Typography & Utilities */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary);
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--bg-white); }
.text-accent { color: var(--secondary); }

.section-padding {
    padding: 100px 0;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px;
    padding-left: 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    outline: none;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 92, 5, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 40, 71, 0.2);
}

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

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

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

/* Header & Navigation */
header {
    width: 100%;
    position: relative;
    z-index: 1000;
}

/* Topbar */
.topbar {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 400;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.topbar-info span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.topbar-socials a:hover {
    color: var(--secondary);
}

/* Navbar */
.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: var(--shadow-md);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 48px;
}

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

.nav-menu a {
    font-weight: 500;
    color: var(--primary);
    font-family: var(--font-heading);
    position: relative;
    font-size: 0.95rem;
}

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary);
}

.nav-btn {
    display: inline-block;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary);
}

/* Hero Section */
.hero {
    background-color: var(--bg-light);
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--secondary);
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 20px;
}

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

.hero-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-bullet-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.95rem;
}

.hero-bullet-item i,
.hero-bullet-item svg {
    color: var(--secondary);
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

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

.hero-image-wrapper img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    width: 100%;
}

.hero-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
}

.hero-badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.hero-badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

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

.section-header {
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

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

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

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    margin-bottom: 25px;
    transition: var(--transition);
}

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

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

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

.service-link {
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary);
}

.service-link:hover {
    color: var(--secondary);
}

/* Hakkımızda Section */
.about-section {
    background-color: var(--bg-light);
}

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

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.about-experience-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background-color: var(--secondary);
    color: var(--bg-white);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.about-experience-badge span {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.about-experience-badge text {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-text h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.about-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.about-bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-bullet-icon {
    width: 24px;
    height: 24px;
    background-color: rgba(242, 92, 5, 0.1);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-bullet-item h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.about-bullet-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Stats Counter Section */
.stats-section {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 70px 0;
}

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

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

/* Taşıma Sürecimiz Section */
.process-section {
    background-color: var(--bg-white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: var(--border-light);
    z-index: 1;
}

.process-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-step {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 3px solid var(--border-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.process-item:hover .process-step {
    border-color: var(--secondary);
    color: var(--secondary);
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.process-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.process-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
    max-width: 180px;
}

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

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

.review-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-quote {
    color: var(--secondary);
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 15px;
    opacity: 0.3;
}

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

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
}

.review-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.review-author-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.review-author-info p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Blog Section */
.blog-section {
    background-color: var(--bg-white);
}

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

.blog-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

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

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

.blog-card-content {
    padding: 30px;
}

.blog-card-date {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.blog-card-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.35;
}

.blog-card-title a:hover {
    color: var(--secondary);
}

.blog-card-link {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

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

/* Call to Action Section */
.cta-section {
    background-color: var(--primary-dark);
    position: relative;
    padding: 80px 0;
    color: var(--bg-white);
    overflow: hidden;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-color: var(--primary);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
    opacity: 0.3;
    z-index: 1;
}

.cta-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-text {
    max-width: 700px;
}

.cta-title {
    font-size: 2.25rem;
    color: var(--bg-white);
    margin-bottom: 15px;
}

.cta-desc {
    color: var(--text-light);
    font-size: 1.1rem;
}

.cta-actions {
    flex-shrink: 0;
}

/* Inner Page Layout Banner */
.page-banner {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.page-banner h1 {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

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

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

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

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

/* Inner Pages Content Styling */
.page-content-wrapper {
    padding: 80px 0;
}

/* Contact Page specific */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
}

.contact-info-box {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-md);
}

.contact-info-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-details h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

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

.contact-form-box {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(242, 92, 5, 0.15);
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

.map-wrapper {
    margin-top: 50px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 400px;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 250px;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 40, 71, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--bg-white);
    padding: 20px;
    text-align: center;
}

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

.gallery-overlay h4 {
    color: var(--bg-white);
    font-size: 1.1rem;
    transform: translateY(10px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay h4 {
    transform: translateY(0);
}

/* Blog Detail Page specific */
.blog-detail-grid {
    display: grid;
    grid-template-columns: 2.3fr 0.7fr;
    gap: 40px;
}

.blog-detail-content {
    background-color: var(--bg-white);
}

.blog-detail-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.blog-detail-title {
    font-size: 2rem;
    margin-bottom: 25px;
}

.blog-text p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.blog-text h3 {
    font-size: 1.5rem;
    margin: 35px 0 15px 0;
}

.blog-text ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.blog-text li {
    margin-bottom: 8px;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.recent-posts-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.recent-posts-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-link {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--primary);
    line-height: 1.3;
    display: block;
}

.recent-post-link:hover {
    color: var(--secondary);
}

.recent-post-date {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 5px;
    display: block;
}

/* Footer Section */
footer {
    background-color: var(--bg-dark);
    color: var(--bg-white);
    padding: 80px 0 0 0;
    font-size: 0.9rem;
}

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

.footer-col h4 {
    color: var(--bg-white);
    font-size: 1.15rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-col-desc {
    color: var(--text-light);
    margin-top: 20px;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-socials a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

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

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

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

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

.footer-contact i,
.footer-contact svg {
    color: var(--secondary);
    flex-shrink: 0;
}

.footer-bottom {
    background-color: rgba(0,0,0,0.25);
    padding: 25px 0;
    font-size: 0.8rem;
    color: var(--text-light);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--accent);
    color: var(--bg-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    font-size: 2rem;
    animation: pulse 2s infinite, bounce-effect 5s infinite;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes bounce-effect {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* SEO District Page Grid */
.districts-section {
    background-color: var(--bg-light);
}

.districts-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.district-link-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    padding: 12px 10px;
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.district-link-card:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-grid, .about-grid, .contact-grid, .blog-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
    .hero-badge {
        left: 0;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .process-grid::before {
        display: none;
    }
    .process-item p {
        max-width: 100%;
    }
    .reviews-slider, .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .districts-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    .topbar {
        display: none;
    }
    .mobile-nav-toggle {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 78px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 78px);
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 30px;
        gap: 20px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-menu a {
        font-size: 1.1rem;
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid var(--border-light);
    }
    .nav-btn {
        width: 100%;
        margin-top: 20px;
    }
    .nav-btn .btn {
        width: 100%;
    }
    .hero-title {
        font-size: 2.25rem;
    }
    .hero-desc {
        font-size: 1rem;
    }
    .hero-bullets {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .reviews-slider, .blog-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .districts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-bottom-wrapper {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .districts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item h3 {
        font-size: 2.5rem;
    }
    .cta-wrapper {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
    }
    .cta-actions {
        width: 100%;
    }
    .cta-actions .btn {
        width: 100%;
    }
}
