@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --primary-color: #0d1b2a;
    /* Dark Blue */
    --primary-light: #1b263b;
    --secondary-color: #d4af37;
    /* Gold */
    --secondary-hover: #e5c158;
    --text-dark: #1f2937;
    --text-light: #ffffff;
    --text-muted: #6b7280;
    --bg-light: #f8f9fa;
    --white: #ffffff;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --topbar-height: 40px;

    /* Shadows & Transitions */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Base Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    gap: 8px;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* ==========================================================================
   TOPBAR
   ========================================================================== */
.topbar {
    background-color: var(--primary-color);
    color: var(--text-light);
    font-size: 13px;
    padding: 10px 0;
    border-bottom: none;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
}

.topbar-info {
    display: flex;
    gap: 24px;
}

.topbar-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    opacity: 0.9;
    transition: var(--transition);
}

.topbar-info-item:hover {
    color: var(--secondary-color);
    opacity: 1;
}

.topbar-info-item i {
    color: var(--secondary-color);
    font-size: 14px;
}

.topbar-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-text {
    opacity: 0.8;
    margin-right: 5px;
    display: none;
}

@media (min-width: 768px) {
    .topbar-text {
        display: block;
    }
}

.topbar-social a {
    color: var(--text-light);
    font-size: 14px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.topbar-social a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .topbar-info {
        gap: 15px;
    }

    .topbar-info-item:not(:first-child) {
        display: none;
        /* Mobil ekranda sadece ik info-item kalsın */
    }
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 2px solid var(--secondary-color);
}

.header.scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    /* 80px */
    max-width: 1500px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: normal;
    word-break: break-word;
    line-height: 1.1;
}

.logo-icon {
    color: var(--secondary-color);
    font-size: 30px;
}

.nav-menu {
    display: flex;
    gap: 25px;
    /* Slightly tighter */
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-color);
    position: relative;
    padding: 8px 0;
    text-transform: uppercase;
    /* Modern touch */
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 3px;
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-btn {
    padding: 10px 20px;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.whatsapp-header-btn {
    border: 2px solid #25D366;
    color: #25D366;
    background: transparent;
}

.whatsapp-header-btn:hover {
    background-color: #25D366;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.quote-header-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.quote-header-btn i {
    color: var(--secondary-color);
}

.quote-header-btn:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.quote-header-btn:hover i {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    background: none;
    border: none;
}

@media (max-width: 1150px) {
    .nav-menu {
        gap: 15px;
    }

    .header-btn {
        padding: 8px 15px;
        font-size: 12px;
    }

    .logo {
        font-size: 20px;
    }

    .header-actions {
        gap: 8px;
    }
}

@media (max-width: 991px) {
    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex !important;
    }

    .whatsapp-header-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 576px) {
    .logo {
        font-size: 16px;
    }

    .logo img,
    .logo i {
        font-size: 22px;
    }

    .header-actions {
        gap: 20px;
        /* Increased from 10px to push search/phone icon to the left */
    }

    .quote-header-btn span {
        display: none;
        /* Only show icon on very small screens */
    }

    .quote-header-btn {
        padding: 8px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .quote-header-btn i {
        margin: 0;
        font-size: 14px;
    }

    .mobile-menu-btn {
        font-size: 20px;
    }
}

/* ==========================================================================
   FLOATING WHATSAPP
   ========================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #20b858;
}

.floating-whatsapp::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(37, 211, 102, 0.5);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 992px) {
    .topbar-info {
        display: none;
    }

    .topbar .container {
        justify-content: center;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--primary-color);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 20px;
        padding-bottom: 80px;
        gap: 0;
        transition: left 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 990;
        display: flex;
        overflow-y: auto;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu .nav-link {
        width: 100%;
        text-align: center;
        padding: 20px;
        color: var(--white);
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        opacity: 0;
        transform: translateX(-30px);
    }

    .nav-menu.active .nav-link {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active .nav-link:nth-child(1) {
        transition: all 0.4s ease 0.1s;
    }

    .nav-menu.active .nav-link:nth-child(2) {
        transition: all 0.4s ease 0.15s;
    }

    .nav-menu.active .nav-link:nth-child(3) {
        transition: all 0.4s ease 0.2s;
    }

    .nav-menu.active .nav-link:nth-child(4) {
        transition: all 0.4s ease 0.25s;
    }

    .nav-menu.active .nav-link:nth-child(5) {
        transition: all 0.4s ease 0.3s;
    }

    .nav-menu.active .nav-link:nth-child(6) {
        transition: all 0.4s ease 0.35s;
    }

    .nav-menu .nav-link.active,
    .nav-menu .nav-link:hover {
        color: var(--secondary-color);
        background-color: rgba(255, 255, 255, 0.02);
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    .header-actions .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }

}

/* ==========================================================================
   HERO SLIDER SECTION
   ========================================================================== */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--header-height));
    min-height: 600px;
    z-index: 1;
    /* Swiper below header */
}

.myHeroSwiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    overflow: hidden;
    height: 100%;
    display: block;
}

.hero-slide .container {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
}

.hero-slide img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(13, 27, 42, 0.9) 0%, rgba(13, 27, 42, 0.6) 100%);
    z-index: -1;
}

.hero-slide-content {
    position: relative;
    text-align: left;
    max-width: 800px;
    margin: 0;
    width: 100%;
    transform: translateY(40px);
    opacity: 0;
    color: var(--white);
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s;
}

.swiper-slide-active .hero-slide-content {
    transform: translateY(0);
    opacity: 1;
}

/* Swiper Navigation Customization */
.swiper-button-next,
.swiper-button-prev {
    color: var(--secondary-color) !important;
    background: rgba(255, 255, 255, 0.1);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--secondary-color);
    color: var(--primary-color) !important;
    border-color: var(--secondary-color);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px !important;
}

.swiper-pagination-bullet {
    background: white !important;
    opacity: 0.5 !important;
    width: 10px !important;
    height: 10px !important;
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color) !important;
    opacity: 1 !important;
    width: 30px !important;
    border-radius: 10px !important;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    background-image: url('../images/hero_bg.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 60px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(13, 27, 42, 0.95) 0%, rgba(13, 27, 42, 0.85) 50%, rgba(13, 27, 42, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-subtitle {
    color: var(--secondary-color);
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    display: block;
    margin-bottom: 20px;
    position: relative;
    padding-left: 50px;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.hero-title {
    font-size: 64px;
    margin-bottom: 30px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--white);
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
}

.text-gold {
    color: var(--secondary-color);
}

.hero-text {
    font-size: 20px;
    color: #f8fafc;
    margin-bottom: 40px;
    max-width: 650px;
    font-weight: 500;
    text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }

    .hero {
        min-height: 70vh;
        padding: 100px 0;
    }
}

/* ==========================================================================
   GLOBAL SECTION STYLES
   ========================================================================== */
.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.section-header {
    max-width: 600px;
    margin: 0 auto 50px;
}

.subtitle {
    color: var(--secondary-color);
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

.title {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.description {
    color: var(--text-muted);
    font-size: 16px;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover .service-title,
.service-card:hover .service-desc,
.service-card:hover .service-icon {
    color: var(--white);
}

.service-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-desc {
    color: var(--text-muted);
    margin-bottom: 25px;
    transition: var(--transition);
    line-height: 1.6;
}

.service-link {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* ==========================================================================
   WHY US (TRUST) SECTION
   ========================================================================== */
.bg-light {
    background-color: var(--bg-light);
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.trust-item {
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    min-width: 200px;
    flex: 1;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--secondary-color);
}

.trust-item i {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.trust-item h4 {
    color: var(--primary-color);
    font-size: 18px;
}

/* ==========================================================================
   PROCESS TIMELINE
   ========================================================================== */
.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(13, 27, 42, 0.1);
    z-index: 0;
}

.timeline-step {
    flex: 1;
    min-width: 150px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.timeline-step:hover .step-number {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.timeline-step h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.timeline-step p {
    font-size: 14px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .timeline::before {
        display: none;
    }

    .timeline-step {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* ==========================================================================
   SEO TEXT SECTION
   ========================================================================== */
.seo-content {
    background-color: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.seo-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 25px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 15px;
    display: inline-block;
}

.seo-content p {
    margin-bottom: 20px;
    color: var(--text-muted);
    line-height: 1.8;
}

.seo-content strong {
    color: var(--primary-light);
    font-weight: 600;
}

/* ==========================================================================
   QUOTE FORM SECTION
   ========================================================================== */
.quote-section {
    background-color: var(--primary-color);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(13, 27, 42, 0) 70%);
}

.quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quote-info h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--white);
}

.quote-info p {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.quote-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quote-features li {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quote-form-container {
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    position: relative;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.row {
    display: flex;
    gap: 20px;
}

.quote-form input,
.quote-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 16px;
    transition: var(--transition);
}

.form-group.row input {
    flex: 1;
}

.quote-form input:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.w-100 {
    width: 100%;
}

@media (max-width: 992px) {
    .quote-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .form-group.row {
        flex-direction: column;
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: var(--primary-light);
    color: #e2e8f0;
    padding: 80px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 20px;
}

.footer-about p {
    color: #cbd5e1;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #cbd5e1;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact i {
    color: var(--secondary-color);
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

.text-green {
    color: #25D366 !important;
}

.footer-bottom {
    background-color: var(--primary-color);
    padding: 25px 0;
    text-align: center;
    color: #cbd5e1;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   SERVICES DETAIL PAGE
   ========================================================================== */
.service-detail-section {
    padding: 80px 0;
    border-bottom: 1px solid #e2e8f0;
}

.service-detail-section:nth-child(even) {
    background-color: var(--bg-light);
}

.service-header-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
}

.service-detail-title {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 25px;
}

.service-detail-content p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-detail-content h4 {
    color: var(--primary-color);
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-detail-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-detail-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 16px;
}

.service-detail-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 2px;
}

/* FAQ Accordion */
.faq-section {
    margin-top: 50px;
}

.faq-title {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 25px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: var(--white);
    overflow: hidden;
}

.faq-item summary {
    padding: 20px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    position: relative;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary-color);
    transition: var(--transition);
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
}

.faq-item[open] summary {
    border-bottom: 1px solid #e2e8f0;
}

.faq-content {
    padding: 20px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Strong CTA between services */
.service-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.service-cta h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.service-cta p {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .service-header-img {
        height: 300px;
        margin-bottom: 30px;
    }

    .service-detail-title {
        font-size: 26px;
    }

    .faq-title {
        font-size: 20px;
    }
}

/* ==========================================================================
   SERVICE DETAIL GRID SYSTEM
   ========================================================================== */
.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

@media (max-width: 991px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==========================================================================
   BLOG GRID & CARD SYSTEM (Globalized)
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-bottom: 3px solid var(--secondary-color);
}

.blog-img {
    height: 220px;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 40px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-img img {
    transform: scale(1.08);
}

.blog-content {
    padding: 25px;
}

.blog-date {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
}

.blog-title {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-desc {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-link {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-link:hover {
    color: var(--secondary-color);
}