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

:root {
    --primary-red: #e53935;
    --primary-red-hover: #f44336;
    --primary-red-dark: #b71c1c;
    --bg-dark-1: #0a0a0a;
    --bg-dark-2: #121212;
    --bg-dark-3: #1a1a1a;
    --bg-dark-4: #242424;
    --text-white: #ffffff;
    --text-muted: #9e9e9e;
    --text-gray: #e0e0e0;
    --accent-gold: #ffb300;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 12px 30px rgba(0, 0, 0, 0.5);
    --border-color: rgba(255, 255, 255, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --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-dark-1);
    color: var(--text-gray);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

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

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

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

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

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

.btn-primary:hover {
    background-color: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(229, 57, 85, 0.3);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

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

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

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-red);
    margin: 15px auto 0;
    border-radius: 2px;
}

.text-left .section-title::after {
    margin: 15px 0 0 0;
}

/* Header */
.top-bar {
    background-color: var(--bg-dark-1);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info {
    display: flex;
    gap: 20px;
}

.top-bar-info li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}

.top-bar-info li a:hover {
    color: var(--primary-red);
}

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

.top-bar-socials a {
    color: var(--text-muted);
}

.top-bar-socials a:hover {
    color: var(--primary-red);
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

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

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

.logo-icon {
    width: 100px;
    height: 100px;
}

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

.logo-title {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

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

.logo-subtitle {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}

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

.nav-item {
    position: relative;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 0;
}

.nav-link:hover, .nav-item.active .nav-link {
    color: var(--primary-red);
}

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

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

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--bg-dark-2);
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--primary-red);
    min-width: 220px;
    border-radius: 0 0 6px 6px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-family: var(--font-heading);
    font-weight: 500;
}

.dropdown-link:hover {
    background-color: var(--bg-dark-3);
    color: var(--primary-red);
    padding-left: 25px;
}

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

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(229, 57, 85, 0.1);
    border: 1px solid rgba(229, 57, 85, 0.2);
    padding: 8px 16px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-white);
}

.header-phone svg {
    color: var(--primary-red);
    animation: pulse 2s infinite;
}

.header-phone:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

.header-phone:hover svg {
    color: var(--text-white);
}

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

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--text-white);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: url('../images/hero-banner.png') no-repeat center center/cover;
    padding: 100px 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.8) 50%, rgba(10, 10, 10, 0.4) 100%);
    z-index: 1;
}

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

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

.hero-tagline {
    font-size: 1.1rem;
    color: var(--primary-red);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

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

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

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

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

/* Feature Strips */
.features-strip {
    background-color: var(--bg-dark-2);
    border-bottom: 1px solid var(--border-color);
    padding: 30px 0;
}

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

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

.feature-icon-box {
    width: 100px;
    height: 100px;
    background-color: rgba(229, 57, 85, 0.08);
    border: 1px solid rgba(229, 57, 85, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-box svg {
    color: var(--primary-red);
    width: 24px;
    height: 24px;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.feature-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

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

.service-card {
    background-color: var(--bg-dark-2);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.service-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.service-icon-floating {
    position: absolute;
    bottom: -25px;
    right: 25px;
    width: 100px;
    height: 100px;
    background-color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.service-icon-floating svg {
    color: var(--text-white);
    width: 24px;
    height: 24px;
}

.service-body {
    padding: 35px 25px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

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

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

.service-card-btn {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-red);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-card-btn svg {
    transition: var(--transition);
}

.service-card:hover .service-card-btn svg {
    transform: translateX(5px);
}

/* Process (How it works) */
.process-section {
    background-color: var(--bg-dark-2);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

.process-card {
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-icon-wrap {
    width: 80px;
    height: 80px;
    background-color: var(--bg-dark-3);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    transition: var(--transition);
}

.process-card:hover .process-icon-wrap {
    border-color: var(--primary-red);
    background-color: rgba(229, 57, 85, 0.05);
    transform: scale(1.05);
}

.process-icon-wrap svg {
    color: var(--primary-red);
    width: 32px;
    height: 32px;
}

.process-step {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    background-color: var(--primary-red);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-dark-2);
}

.process-card-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.process-card-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Why Choose Us (Farkımız) */
.why-section {
    background-color: var(--bg-dark-1);
}

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

.why-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-logo-bg {
    background-color: var(--bg-dark-2);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.why-logo-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(229, 57, 85, 0.08) 0%, transparent 70%);
}

.why-logo-bg svg {
    width: 280px;
    height: 280px;
    position: relative;
    z-index: 2;
}

.why-list {
    margin-top: 30px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.why-item-icon {
    width: 24px;
    height: 24px;
    background-color: rgba(229, 57, 85, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
}

.why-item-icon svg {
    color: var(--primary-red);
    width: 14px;
    height: 14px;
}

.why-item-text h4 {
    font-size: 1.15rem;
    margin-bottom: 5px;
}

.why-item-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials-section {
    background-color: var(--bg-dark-2);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 40px auto 0;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.testimonial-content {
    background-color: var(--bg-dark-3);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
}

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

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

.testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--bg-dark-4);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-red);
}

.testimonial-avatar svg {
    color: var(--text-muted);
    width: 24px;
    height: 24px;
}

.testimonial-info h4 {
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--bg-dark-3);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-arrow:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

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

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

/* Call to Action Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-red-dark) 0%, var(--primary-red) 100%);
    padding: 60px 0;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
}

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

.cta-banner-content {
    max-width: 700px;
}

.cta-banner-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-banner-desc {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-banner-actions {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

.btn-cta-phone {
    background-color: var(--text-white);
    color: var(--primary-red-dark);
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: var(--shadow-md);
}

.btn-cta-phone:hover {
    background-color: var(--bg-dark-1);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Footer */
footer {
    background-color: var(--bg-dark-1);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px;
}

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

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

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

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

.footer-social-btn {
    width: 40px;
    height: 40px;
    background-color: var(--bg-dark-2);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-social-btn:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--text-white);
    transform: translateY(-3px);
}

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

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background-color: var(--primary-red);
    border-radius: 2px;
}

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

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

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

.footer-links a svg {
    width: 12px;
    height: 12px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

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

.footer-contact-text h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.footer-contact-text p, .footer-contact-text a {
    color: var(--text-white);
}

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

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

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

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

/* Floating WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    position: relative;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
}

.whatsapp-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background-color: var(--primary-red);
    color: var(--text-white);
    font-size: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--text-white);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%) scale(0.9);
    background-color: var(--bg-dark-2);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.whatsapp-widget:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
}

/* Page Headers (Breadcrumb Sections) */
.page-header {
    background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.95)), url('../images/hero-banner.png') no-repeat center center/cover;
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

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

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

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

/* About Page Styles */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

.about-feat-box {
    background-color: var(--bg-dark-2);
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.about-feat-box svg {
    color: var(--primary-red);
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.about-feat-box h4 {
    margin-bottom: 8px;
}

.about-feat-box p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--border-color);
}

.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-color: rgba(229, 57, 85, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    padding: 20px;
    text-align: center;
    color: var(--text-white);
}

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

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

.gallery-overlay svg {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
}

/* Blog List and SEO Content */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: var(--bg-dark-2);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
}

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

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

.blog-card-body {
    padding: 25px;
}

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

.blog-card-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

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

.blog-card-link {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.9rem;
}

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

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

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

.contact-icon-box {
    width: 100px;
    height: 100px;
    background-color: rgba(229, 57, 85, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    flex-shrink: 0;
}

.contact-icon-box svg {
    width: 24px;
    height: 24px;
}

.contact-card-text h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

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

.contact-card-text a {
    font-weight: 600;
}

.contact-form-wrap {
    background-color: var(--bg-dark-2);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-control {
    width: 100%;
    background-color: var(--bg-dark-3);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    border-radius: 6px;
    color: var(--text-white);
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-red);
    outline: none;
    background-color: var(--bg-dark-4);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-map-wrap {
    margin-top: 50px;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.contact-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Service Detail and SEO Pages Content Layout */
.content-detail-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 50px;
}

.detail-main-content h3 {
    font-size: 1.8rem;
    margin: 30px 0 15px;
}

.detail-main-content p {
    margin-bottom: 20px;
    color: var(--text-gray);
}

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

.detail-main-content li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.detail-main-content li svg {
    color: var(--primary-red);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.sidebar-widget {
    background-color: var(--bg-dark-2);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 10px;
    position: relative;
}

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

.sidebar-links li {
    margin-bottom: 10px;
}

.sidebar-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background-color: var(--bg-dark-3);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
}

.sidebar-links a:hover, .sidebar-links .active a {
    background-color: var(--primary-red);
    color: var(--text-white);
    border-color: var(--primary-red);
}

.sidebar-cta-widget {
    background: linear-gradient(145deg, var(--bg-dark-2) 0%, var(--bg-dark-3) 100%);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sidebar-cta-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-red);
}

.sidebar-cta-icon {
    width: 65px;
    height: 65px;
    background-color: rgba(229, 57, 85, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-red);
}

.sidebar-cta-icon svg {
    width: 28px;
    height: 28px;
}

.sidebar-cta-widget h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.sidebar-cta-widget p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.sidebar-cta-widget .btn {
    width: 100%;
}

/* FAQ Accordion (SEO targeting) */
.faq-container {
    margin-top: 40px;
}

.faq-item {
    background-color: var(--bg-dark-2);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(229, 57, 85, 0.3);
}

.faq-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-header h4 {
    font-size: 1.05rem;
    font-weight: 600;
}

.faq-icon-box {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-icon-box svg {
    width: 18px;
    height: 18px;
    color: var(--primary-red);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: rgba(0, 0, 0, 0.15);
}

.faq-content {
    padding: 20px 25px;
    border-top: 1px solid var(--border-color);
    font-size: 0.92rem;
    color: var(--text-muted);
}

.faq-item.active .faq-body {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

.faq-item.active .faq-icon-box {
    transform: rotate(180deg);
}

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

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(229, 57, 85, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(229, 57, 85, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(229, 57, 85, 0);
    }
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    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);
    }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-image-wrap {
        order: 2;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .about-grid, .contact-grid, .content-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gallery-grid, .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none; /* Hide top bar on mobile */
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background-color: var(--bg-dark-1);
        flex-direction: column;
        align-items: stretch;
        padding: 40px;
        gap: 20px;
        overflow-y: auto;
        transition: var(--transition);
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        font-size: 1.2rem;
        display: block;
        padding: 10px 0;
    }
    
    .dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background-color: var(--bg-dark-2);
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--primary-red);
        margin-top: 10px;
        padding-left: 15px;
        display: none;
    }
    
    .nav-item:hover .dropdown {
        transform: none;
    }
    
    .nav-item.dropdown-active .dropdown {
        display: block;
    }
    
    .header-cta {
        display: none; /* Hide desktop cta button on mobile, will be in menu */
    }
    
    .hero {
        min-height: 70vh;
        text-align: center;
    }
    
    .hero::before {
        background: rgba(10, 10, 10, 0.85);
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .cta-banner .container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-banner-actions {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .features-grid, .services-grid, .process-grid, .gallery-grid, .blog-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }
}
