/* =====================================================
  RS Sağıroğlu Oto - Ana Stil Dosyası
   rssagirogluoto.com
   ===================================================== */

/* ── CSS Variables ── */
:root {
    --primary: #c0392b;
    --primary-dark: #a93226;
    --primary-light: #e74c3c;
    --secondary: #2c3e50;
    --secondary-dark: #1a252f;
    --accent: #f39c12;
    --dark: #1a1a2e;
    --dark-2: #16213e;
    --gray-900: #212529;
    --gray-800: #343a40;
    --gray-700: #495057;
    --gray-600: #6c757d;
    --gray-500: #adb5bd;
    --gray-400: #ced4da;
    --gray-300: #dee2e6;
    --gray-200: #e9ecef;
    --gray-100: #f8f9fa;
    --white: #ffffff;
    --whatsapp: #25d366;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 80px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
}

ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container--narrow { max-width: 800px; }
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

/* ── Top Bar ── */
.top-bar {
    background: var(--secondary-dark);
    color: var(--gray-400);
    font-size: 0.8rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar__left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar__item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-400);
    transition: var(--transition);
}

.top-bar__item:hover { color: var(--white); }
.top-bar__item i { color: var(--primary-light); font-size: 0.75rem; }

.top-bar__social {
    display: flex;
    gap: 12px;
}

.top-bar__social a {
    color: var(--gray-400);
    font-size: 0.85rem;
    transition: var(--transition);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.top-bar__social a:hover {
    color: var(--white);
    background: var(--primary);
    transform: translateY(-2px);
}

/* ── Header ── */
.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.header__logo img {
    height: 50px;
    width: auto;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu__item > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    color: var(--gray-800);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
}

.nav-menu__item > a:hover,
.nav-menu__item.active > a {
    color: var(--primary);
    background: rgba(192, 57, 43, 0.06);
}

.nav-menu__item > a i { font-size: 0.65rem; transition: var(--transition); }

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    border: 1px solid var(--gray-200);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:hover > a i { transform: rotate(180deg); }

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--gray-700);
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: 6px;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: var(--gray-100);
    color: var(--primary);
    padding-left: 18px;
}

.dropdown-menu li a i { width: 18px; text-align: center; color: var(--gray-500); }
.dropdown-menu li a:hover i { color: var(--primary); }

/* Header CTA */
.header__cta {
    margin-left: 12px;
}

/* Hamburger */
.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.header__hamburger span {
    width: 26px;
    height: 2.5px;
    background: var(--gray-800);
    border-radius: 3px;
    transition: var(--transition);
}

.header__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__hamburger.active span:nth-child(2) { opacity: 0; }
.header__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.active { opacity: 1; visibility: visible; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    line-height: 1.4;
}

.btn--primary {
    background: var(--primary);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(192, 57, 43, 0.35);
}

.btn--outline {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn--outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--light {
    background: var(--white);
    color: var(--primary);
}

.btn--light:hover {
    background: var(--gray-100);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn--whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}

.btn--whatsapp:hover {
    background: #1da851;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn--lg { padding: 15px 36px; font-size: 1rem; }
.btn--sm { padding: 8px 18px; font-size: 0.82rem; }
.btn--block { width: 100%; }

/* ── Hero Slider ── */
.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slider__slide {
    height: 75vh;
    min-height: 500px;
    max-height: 800px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slider__slide--default {
    background: linear-gradient(135deg, var(--secondary-dark), var(--dark));
}

.hero-slider__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85), rgba(44, 62, 80, 0.6));
}

.hero-slider__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-slider__title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.15;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-slider__subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
    font-weight: 400;
    line-height: 1.6;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 36px;
    border-radius: 6px;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
    color: var(--white);
    background: rgba(255,255,255,0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.hero-slider .swiper-button-prev:after,
.hero-slider .swiper-button-next:after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.1rem;
}

.hero-slider .swiper-button-prev:after { content: "\f053"; }
.hero-slider .swiper-button-next:after { content: "\f054"; }

.hero-slider .swiper-button-prev:hover,
.hero-slider .swiper-button-next:hover { background: var(--primary); }

/* ── 7/24 Road Assist Banner ── */
.road-assist-banner {
    background: linear-gradient(135deg, #1d2b64 0%, #182848 100%);
    border-radius: var(--radius-lg);
    padding: 36px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.road-assist-banner__content h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 8px;
    color: var(--white);
}

.road-assist-banner__content p {
    color: rgba(255,255,255,0.9);
}

.road-assist-banner .section__subtitle {
    color: var(--white);
    background: rgba(255,255,255,0.15);
}

.road-assist-banner .btn--outline {
    color: var(--white);
    border-color: rgba(255,255,255,0.7);
}

.road-assist-banner .btn--outline:hover {
    color: #182848;
    background: var(--white);
    border-color: var(--white);
}

.road-assist-banner__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ── Features Bar ── */
.features-bar {
    background: var(--white);
    padding: 0;
    position: relative;
    z-index: 10;
    margin-top: -40px;
}

.features-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.features-bar__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 28px 24px;
    border-right: 1px solid var(--gray-200);
    transition: var(--transition);
}

.features-bar__item:last-child { border-right: none; }

.features-bar__item:hover {
    background: var(--gray-100);
}

.features-bar__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(192, 57, 43, 0.08);
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.features-bar__text strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--gray-900);
}

.features-bar__text span {
    font-size: 0.82rem;
    color: var(--gray-600);
}

/* ── Sections ── */
.section {
    padding: 80px 0;
}

.section__header {
    text-align: center;
    margin-bottom: 50px;
}

.section__subtitle {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section__title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    position: relative;
}

.section__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 16px auto 0;
    border-radius: 2px;
}

.section__desc {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* ── Service Cards ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--card-color, var(--primary));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
    color: inherit;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(192,57,43,0.08), rgba(192,57,43,0.02));
    font-size: 1.6rem;
    color: var(--card-color, var(--primary));
    transition: var(--transition);
}

.service-card:hover .service-card__icon {
    background: var(--card-color, var(--primary));
    color: var(--white);
    transform: scale(1.1);
}

.service-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.service-card__desc {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 18px;
    line-height: 1.6;
}

.service-card__link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-card:hover .service-card__link i { transform: translateX(4px); }
.service-card__link i { transition: var(--transition); }

/* Service Card Horizontal */
.services-grid--large {
    grid-template-columns: 1fr;
    gap: 24px;
}

.service-card--horizontal {
    display: grid;
    grid-template-columns: 360px 1fr;
    text-align: left;
    padding: 0;
}

.service-card--horizontal .service-card__image {
    overflow: hidden;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.service-card--horizontal .service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card--horizontal:hover .service-card__image img { transform: scale(1.05); }

.service-card--horizontal .service-card__body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card--horizontal .service-card__icon {
    margin: 0 0 16px;
    width: 56px;
    height: 56px;
    font-size: 1.3rem;
}

.service-card--horizontal .service-card__title { font-size: 1.3rem; }

/* ── About Section ── */
.about-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-section__image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-section__image img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.about-section__badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--primary);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-section__badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.about-section__badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about-section__content p {
    margin-bottom: 16px;
    font-size: 1rem;
    color: var(--gray-700);
}

.about-section__stats {
    display: flex;
    gap: 32px;
    margin: 32px 0;
    padding: 24px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.stat-item { text-align: center; }

.stat-item__number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-item__label {
    display: block;
    font-size: 0.82rem;
    color: var(--gray-600);
    margin-top: 4px;
}

/* ── Why Us ── */
.why-us-section { background: var(--gray-100); }

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-us-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.why-us-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.why-us-card__number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(192, 57, 43, 0.1);
    line-height: 1;
    margin-bottom: 16px;
}

.why-us-card:hover .why-us-card__number { color: var(--primary); }

.why-us-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--gray-900);
}

.why-us-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ── Gallery ── */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 36px;
}

.gallery-filter {
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gray-700);
    background: var(--gray-100);
    border: 2px solid transparent;
    transition: var(--transition);
}

.gallery-filter:hover,
.gallery-filter--active {
    color: var(--primary);
    background: rgba(192,57,43,0.08);
    border-color: var(--primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-grid--full { grid-template-columns: repeat(4, 1fr); }

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,46,0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: var(--transition);
    color: var(--white);
}

.gallery-item__overlay i { font-size: 1.5rem; }
.gallery-item__overlay span { font-size: 0.85rem; font-weight: 600; }

.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-item__overlay { opacity: 1; }

/* ── FAQ ── */
.faq-section { background: var(--gray-100); }

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover,
.faq-item--active { border-color: var(--primary); box-shadow: var(--shadow-sm); }

.faq-item__question {
    width: 100%;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-900);
    text-align: left;
    background: none;
}

.faq-item__question i {
    color: var(--primary);
    font-size: 0.8rem;
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item--active .faq-item__question i { transform: rotate(180deg); }

.faq-item__answer {
    display: none;
    padding: 0 24px 18px;
    color: var(--gray-600);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ── Blog Cards ── */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.blog-card__image {
    display: block;
    overflow: hidden;
    aspect-ratio: 16/10;
    position: relative;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card__image img { transform: scale(1.05); }

.blog-card__category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-card__content { padding: 24px; }

.blog-card__meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.blog-card__meta i { margin-right: 4px; }

.blog-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card__title a { color: var(--gray-900); }
.blog-card__title a:hover { color: var(--primary); }

.blog-card__excerpt {
    font-size: 0.88rem;
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.6;
}

.blog-card__link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-card__link i { transition: var(--transition); }
.blog-card:hover .blog-card__link i { transform: translateX(4px); }

/* ── Page Header ── */
.page-header {
    background: linear-gradient(135deg, var(--secondary-dark), var(--dark));
    padding: 60px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><defs><pattern id="p" patternUnits="userSpaceOnUse" width="60" height="60"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect fill="url(%23p)" width="60" height="60"/></svg>');
}

.page-header__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    font-size: 1.6rem;
    color: var(--white);
}

.page-header__title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--white);
    position: relative;
    margin-bottom: 12px;
}

.page-header__desc {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    position: relative;
}

.page-header__badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
}

/* ── Breadcrumb ── */
.breadcrumb {
    background: var(--gray-100);
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb__item {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.breadcrumb__item a {
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 4px;
}

.breadcrumb__item a:hover { color: var(--primary); }

.breadcrumb__item:not(:last-child)::after {
    content: '/';
    color: var(--gray-400);
    margin-left: 6px;
}

.breadcrumb__item--active { color: var(--primary); font-weight: 600; }

/* ── Contact ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-info__card {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.contact-info__item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
}

.contact-info__item:last-child { border-bottom: none; }

.contact-info__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info__item h3 {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.contact-info__item p,
.contact-info__item a {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.contact-map {
    margin-top: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* ── Forms ── */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-row--3 { grid-template-columns: repeat(3, 1fr); }

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--gray-800);
    margin-bottom: 6px;
}

.form-group .required { color: var(--danger); }

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-section {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 24px;
}

.form-section h3 {
    font-size: 1.05rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-200);
    color: var(--gray-900);
}

.form-section h3 i { color: var(--primary); margin-right: 8px; }

.quote-form-wrapper { max-width: 800px; margin: 0 auto; }

/* ── Alerts ── */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
}

.alert i { font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }

.alert--success {
    background: rgba(40, 167, 69, 0.08);
    border: 1px solid rgba(40, 167, 69, 0.2);
    color: #155724;
}

.alert--error {
    background: rgba(220, 53, 69, 0.08);
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: #721c24;
}

.alert--lg { padding: 24px 28px; }

/* ── CTA Section ── */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 60px 0;
}

.cta-section__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cta-section__content h2 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 8px;
}

.cta-section__content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
}

.cta-section__actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ── Footer ── */
.footer {
    background: var(--secondary-dark);
    color: var(--gray-400);
    padding: 60px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer__logo { margin-bottom: 16px; }
.footer__logo img { height: 56px; width: auto; }
.footer__logo .footer__logo-img--white { filter: brightness(0) invert(1); }

.footer__desc { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }

.footer__social {
    display: flex;
    gap: 10px;
}

.footer__social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: var(--gray-400);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer__social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer__title {
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 12px;
    position: relative;
}

.footer__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer__links li { margin-bottom: 10px; }

.footer__links a {
    color: var(--gray-400);
    font-size: 0.88rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer__links a::before {
    content: '›';
    color: var(--primary);
    font-weight: bold;
}

.footer__links a:hover { color: var(--white); padding-left: 6px; }

.footer__contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.88rem;
}

.footer__contact i {
    color: var(--primary);
    margin-top: 4px;
    flex-shrink: 0;
    width: 16px;
}

.footer__contact a { color: var(--gray-400); }
.footer__contact a:hover { color: var(--white); }

.footer__map {
    margin-top: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.footer__bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    font-size: 0.82rem;
}

/* ── WhatsApp & Phone Float ── */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--whatsapp);
    color: var(--white);
    padding: 14px 20px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    animation: floatBounce 3s ease-in-out infinite;
}

.whatsapp-float i { font-size: 1.4rem; }
.whatsapp-float:hover { transform: scale(1.05); color: var(--white); box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5); }

.phone-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999;
    width: 52px;
    height: 52px;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(192, 57, 43, 0.4);
    font-size: 1.2rem;
    animation: floatBounce 3s ease-in-out infinite;
}

@keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ── Scroll to Top ── */
.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 28px;
    z-index: 998;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    font-size: 0.9rem;
}

.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--primary); transform: translateY(-3px); }

/* ── Cookie Banner ── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--secondary-dark);
    padding: 16px 0;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.visible { display: block; }

.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-banner p {
    color: var(--gray-400);
    font-size: 0.85rem;
    margin: 0;
}

.cookie-banner a { color: var(--primary-light); text-decoration: underline; }

/* ── Service Detail ── */
.page-header--service {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(44,62,80,0.98), rgba(26,37,47,0.98));
    color: var(--white);
}

.page-header--service::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(700px 300px at 15% 20%, rgba(192,57,43,0.35), transparent 60%),
        radial-gradient(700px 300px at 85% 30%, rgba(243,156,18,0.25), transparent 60%);
    pointer-events: none;
}

.page-header--service .page-header__icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

.page-header--service .page-header__icon i { font-size: 1.5rem; color: var(--white); }
.page-header--service .page-header__title { color: var(--white); }
.page-header--service .page-header__desc { color: rgba(255,255,255,0.75); max-width: 920px; margin-left: auto; margin-right: auto; }

.service-detail__grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
}

.service-detail__main { min-width: 0; }

.service-detail__card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.service-detail__card + .service-detail__card { margin-top: 18px; }

.service-detail__card--soft {
    background: linear-gradient(180deg, rgba(248,249,250,0.9), rgba(248,249,250,0.7));
    border: 1px solid var(--gray-200);
}

.service-detail__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 28px;
}

.service-detail__image img { width: 100%; height: auto; }

.service-detail__content.prose { line-height: 1.85; }
.service-detail__content.prose h2 { font-size: 1.5rem; margin: 28px 0 14px; }
.service-detail__content.prose h3 { font-size: 1.2rem; margin: 24px 0 12px; }
.service-detail__content.prose p { margin-bottom: 16px; }
.service-detail__content.prose ul { padding-left: 20px; margin-bottom: 16px; }
.service-detail__content.prose ul li { margin-bottom: 8px; position: relative; padding-left: 16px; }
.service-detail__content.prose ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.service-detail__cta {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-top: 32px;
    text-align: center;
}

.service-detail__cta h3 { font-size: 1.2rem; margin-bottom: 8px; }
.service-detail__cta p { color: var(--gray-600); margin-bottom: 20px; }
.service-detail__cta-actions { display: flex; gap: 16px; justify-content: center; }

/* Sidebar */
.service-detail__sidebar { position: sticky; top: calc(var(--header-height) + 20px); align-self: start; }
.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid var(--gray-200);
}

.sidebar-widget--contact {
    background: var(--gray-100);
    border: none;
}

.sidebar-widget__title {
    font-size: 1.05rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-200);
}

.sidebar-services li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 8px;
    color: var(--gray-700);
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition);
}

.sidebar-services li:last-child a { border-bottom: none; }
.sidebar-services li a:hover { color: var(--primary); padding-left: 14px; }
.sidebar-services li a i:first-child { width: 20px; text-align: center; }
.sidebar-services li a span { flex: 1; }
.sidebar-services li a i:last-child { font-size: 0.7rem; color: var(--gray-400); }

.sidebar-widget p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.sidebar-widget p i {
    color: var(--primary);
    width: 20px;
    margin-right: 8px;
}

.service-detail__faq h3 { margin-bottom: 12px; }

/* ── Blog Detail ── */
.blog-detail__grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
}

.blog-detail__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 28px;
}

.blog-detail__content.prose { line-height: 1.8; }
.blog-detail__meta {
    display: flex;
    gap: 20px;
    margin-top: 12px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    position: relative;
}

.blog-detail__meta i { margin-right: 4px; }

.blog-detail__tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.tag {
    background: var(--gray-100);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--gray-600);
}

.blog-detail__share {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.blog-detail__share span { font-weight: 600; font-size: 0.9rem; }

.share-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 0.9rem;
    transition: var(--transition);
}

.share-btn:hover { transform: translateY(-3px); color: var(--white); }
.share-btn--facebook { background: #3b5998; }
.share-btn--twitter { background: #1da1f2; }
.share-btn--whatsapp { background: var(--whatsapp); }

.sidebar-post {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
}

.sidebar-post__img {
    width: 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-post__img img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-post__info h4 { font-size: 0.82rem; margin-bottom: 4px; color: var(--gray-800); line-height: 1.3; }
.sidebar-post__info span { font-size: 0.75rem; color: var(--gray-500); }
.sidebar-post:hover h4 { color: var(--primary); }

/* ── About Page ── */
.about-page__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

.about-page__image { border-radius: var(--radius-lg); overflow: hidden; }

.about-page__stats-card {
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-top: 24px;
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.92rem;
}

.stat-row:last-child { border-bottom: none; }

.stat-row__number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--primary);
    min-width: 70px;
}

/* ── Pagination ── */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination__item {
    padding: 10px 16px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--gray-700);
    background: var(--gray-100);
    transition: var(--transition);
}

.pagination__item:hover,
.pagination__item--active {
    background: var(--primary);
    color: var(--white);
}

/* ── 404 ── */
.error-page {
    padding: 100px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-page__code {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 900;
    color: var(--gray-200);
    line-height: 1;
}

.error-page__title { font-size: 2rem; margin-bottom: 16px; }
.error-page__desc { color: var(--gray-600); margin-bottom: 32px; font-size: 1.05rem; }
.error-page__actions { display: flex; gap: 16px; justify-content: center; }

/* ── Empty State ── */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-500);
}

.empty-state i { font-size: 3rem; margin-bottom: 16px; opacity: 0.4; }
.empty-state p { font-size: 1rem; }

/* ── Prose (Content) ── */
.prose { color: var(--gray-700); }
.prose h2 { font-size: 1.5rem; margin: 28px 0 14px; }
.prose h3 { font-size: 1.2rem; margin: 24px 0 12px; }
.prose p { margin-bottom: 16px; line-height: 1.8; }

/* ── Animations ── */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"].aos-animate,
[data-aos="fade-right"].aos-animate,
[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translate(0);
}

[data-aos="fade-right"] { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos="fade-left"] { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
