/* ============================================
   Mercan Otomasyon - Ana CSS Dosyası
   ============================================ */

/* ---- ROOT VARIABLES ---- */
:root {
    --orange:      #f97316;
    --orange-dark: #ea6c0a;
    --navy:        #0d1b2a;
    --navy-mid:    #1a2e45;
    --navy-light:  #223350;
    --gray-dark:   #2d3748;
    --gray:        #718096;
    --gray-light:  #e2e8f0;
    --white:       #ffffff;
    --bg-light:    #f8fafc;
    --font-main:   'Roboto', sans-serif;
    --font-head:   'Montserrat', sans-serif;
    --transition:  all 0.3s ease;
    --shadow:      0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg:   0 10px 40px rgba(0,0,0,0.15);
    --radius:      8px;
    --radius-lg:   16px;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-dark);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
}

a { color: var(--orange); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--orange-dark); }

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

.text-orange { color: var(--orange) !important; }
.bg-navy  { background-color: var(--navy) !important; }
.bg-orange { background-color: var(--orange) !important; }

/* ---- BUTTONS ---- */
.btn-orange {
    background: var(--orange);
    color: var(--white);
    border: 2px solid var(--orange);
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-orange:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249,115,22,0.4);
}

.btn-outline-orange {
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-outline-orange:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
    border: 2px solid var(--white);
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: var(--font-head);
    font-weight: 700;
    transition: var(--transition);
}
.btn-white:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

/* ---- SECTION STYLES ---- */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.section-header {
    margin-bottom: 60px;
}
.section-header .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--orange);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-header .section-tag::before,
.section-header .section-tag::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--orange);
}
.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 16px;
}
.section-header p {
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 600px;
}
.section-header.text-center p { margin: 0 auto; }

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--orange);
    border-radius: 2px;
    margin: 16px 0;
}
.section-header.text-center .section-divider { margin: 16px auto; }

/* ---- TOP BAR ---- */
.topbar {
    background: var(--navy);
    padding: 10px 0;
    font-size: 0.82rem;
}
.topbar-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.topbar-item {
    color: rgba(255,255,255,0.75);
    display: flex;
    align-items: center;
    gap: 7px;
}
.topbar-item i { color: var(--orange); }
.topbar-item a { color: rgba(255,255,255,0.75); }
.topbar-item a:hover { color: var(--orange); }

.topbar-social a {
    color: rgba(255,255,255,0.6);
    margin-left: 12px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    font-size: 0.75rem;
    transition: var(--transition);
}
.topbar-social a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

.btn-topbar {
    background: var(--orange);
    color: var(--white) !important;
    padding: 5px 14px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 16px;
    transition: var(--transition);
}
.btn-topbar:hover { background: var(--orange-dark); color: var(--white) !important; }

/* ---- HEADER / NAVBAR ---- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}
.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.navbar { padding: 0; }

/* Logo */
.logo-wrap { display: flex; align-items: center; gap: 12px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--navy);
    letter-spacing: 2px;
}
.logo-sub {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.65rem;
    color: var(--orange);
    letter-spacing: 3px;
}

/* Nav Links */
.navbar-nav .nav-link {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
    padding: 26px 16px;
    position: relative;
    transition: var(--transition);
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--orange);
    border-radius: 2px 2px 0 0;
    transition: var(--transition);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 70%; }
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--orange); }

/* Dropdown */
.dropdown-menu {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    padding: 10px;
    min-width: 220px;
    margin-top: 0;
}
.dropdown-item {
    font-family: var(--font-head);
    font-size: 0.87rem;
    font-weight: 500;
    color: var(--gray-dark);
    padding: 10px 16px;
    border-radius: 6px;
    transition: var(--transition);
}
.dropdown-item:hover {
    background: rgba(249,115,22,0.08);
    color: var(--orange);
}

/* Toggler */
.navbar-toggler {
    border: none;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
}
.toggler-icon {
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}

/* ============================================
   HOME PAGE - HERO SLIDER
   ============================================ */
.hero-slider { position: relative; height: 100vh; min-height: 600px; max-height: 900px; }

.hero-slide {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 6s ease;
}
.swiper-slide-active .hero-bg { transform: scale(1); }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13,27,42,0.88) 0%, rgba(13,27,42,0.5) 60%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 0 20px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--orange);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.3s;
}
.hero-tag::before { content: ''; width: 40px; height: 2px; background: var(--orange); }

.swiper-slide-active .hero-tag {
    opacity: 1;
    transform: translateY(0);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.5s;
}
.hero-title span { color: var(--orange); }

.swiper-slide-active .hero-title {
    opacity: 1;
    transform: translateY(0);
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 560px;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.7s;
}
.swiper-slide-active .hero-desc {
    opacity: 1;
    transform: translateY(0);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.9s;
}
.swiper-slide-active .hero-buttons {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Slider Controls */
.hero-slider .swiper-pagination {
    bottom: 30px;
}
.hero-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
    border-radius: 5px;
    transition: var(--transition);
}
.hero-slider .swiper-pagination-bullet-active {
    background: var(--orange);
    width: 32px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--white) !important;
    background: rgba(255,255,255,0.15);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    backdrop-filter: blur(6px);
    transition: var(--transition);
}
.swiper-button-next::after,
.swiper-button-prev::after { font-size: 18px !important; }
.swiper-button-next:hover,
.swiper-button-prev:hover { background: var(--orange); }

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    letter-spacing: 1px;
    cursor: pointer;
}
.hero-scroll .mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 13px;
    margin: 0 auto 8px;
    position: relative;
}
.hero-scroll .mouse::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--orange);
    border-radius: 2px;
    animation: scrollDown 1.5s ease infinite;
}
@keyframes scrollDown {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ============================================
   FEATURES BAR
   ============================================ */
.features-bar {
    background: var(--navy);
    padding: 0;
    position: relative;
    z-index: 5;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 20px;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}
.feature-item:hover { background: rgba(249,115,22,0.1); }
.feature-item:last-child { border-right: none; }

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--orange);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    flex-shrink: 0;
    transition: var(--transition);
}
.feature-item:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
}
.feature-text h6 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.feature-text p {
    color: rgba(255,255,255,0.55);
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section { background: var(--white); }

.about-image-wrap {
    position: relative;
    padding: 20px 20px 20px 0;
}
.about-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-image-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}
.about-image-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--orange);
    color: var(--white);
    padding: 24px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    min-width: 150px;
    box-shadow: var(--shadow);
}
.about-image-badge .badge-number {
    font-family: var(--font-head);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    display: block;
}
.about-image-badge .badge-text {
    font-size: 0.8rem;
    opacity: 0.9;
    display: block;
}

.about-list { list-style: none; padding: 0; }
.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--gray-dark);
}
.about-list li i {
    color: var(--orange);
    width: 20px;
    flex-shrink: 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section { background: var(--bg-light); }

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    height: 100%;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid transparent;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--orange);
    transform: scaleX(0);
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--orange);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(249,115,22,0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--orange);
    margin-bottom: 24px;
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: var(--orange);
    color: var(--white);
    transform: rotateY(180deg);
}
.service-card h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}
.service-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.service-link {
    color: var(--orange);
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.service-link i { transition: var(--transition); }
.service-link:hover i { transform: translateX(4px); }

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section { background: var(--white); }

.product-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: var(--transition);
    background: var(--white);
    height: 100%;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-img img { transform: scale(1.06); }

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--orange);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}
.product-badge.new { background: #10b981; }

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,27,42,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }

.product-overlay a {
    width: 44px;
    height: 44px;
    background: var(--white);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    transform: translateY(10px);
    opacity: 0;
}
.product-card:hover .product-overlay a {
    transform: translateY(0);
    opacity: 1;
}
.product-card:hover .product-overlay a:nth-child(2) { transition-delay: 0.1s; }
.product-overlay a:hover { background: var(--orange); color: var(--white); }

.product-body { padding: 20px; }
.product-category {
    color: var(--orange);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.product-body h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.4;
}
.product-body p {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 16px;
}
.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--gray-light);
}
.product-model {
    color: var(--gray);
    font-size: 0.78rem;
}
.product-detail-link {
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Category Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}
.filter-tab {
    background: var(--white);
    border: 2px solid var(--gray-light);
    color: var(--gray-dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-head);
}
.filter-tab.active,
.filter-tab:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

/* ============================================
   STATS COUNTER
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 80px solid rgba(249,115,22,0.08);
}
.stats-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 60px solid rgba(249,115,22,0.06);
}

.stat-item {
    text-align: center;
    color: var(--white);
    padding: 20px;
    position: relative;
}
.stat-icon {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 16px;
    display: block;
}
.stat-number {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ============================================
   WHY US SECTION
   ============================================ */
.whyus-section { background: var(--bg-light); }

.whyus-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}
.whyus-icon {
    width: 56px;
    height: 56px;
    background: var(--orange);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    flex-shrink: 0;
}
.whyus-text h5 {
    font-size: 1rem;
    margin-bottom: 6px;
}
.whyus-text p {
    color: var(--gray);
    font-size: 0.88rem;
    margin: 0;
}

/* ============================================
   REFERENCES SECTION
   ============================================ */
.references-section { background: var(--white); }

.ref-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.ref-item {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 20px 30px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ref-item:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.ref-item img {
    max-height: 50px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}
.ref-item:hover img { filter: none; opacity: 1; }
.ref-item-text {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--gray);
    font-size: 1rem;
    letter-spacing: 1px;
}
.ref-item:hover .ref-item-text { color: var(--navy); }

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section { background: var(--bg-light); }

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: var(--transition);
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.blog-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}
.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.05); }

.blog-cat {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: var(--orange);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}
.blog-body { padding: 24px; }
.blog-meta {
    display: flex;
    gap: 16px;
    color: var(--gray);
    font-size: 0.8rem;
    margin-bottom: 12px;
}
.blog-meta i { color: var(--orange); margin-right: 4px; }
.blog-body h5 {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 10px;
}
.blog-body h5 a { color: var(--navy); }
.blog-body h5 a:hover { color: var(--orange); }
.blog-body p {
    color: var(--gray);
    font-size: 0.87rem;
    margin-bottom: 16px;
}
.blog-read-more {
    color: var(--orange);
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}
.blog-read-more i { transition: var(--transition); }
.blog-read-more:hover i { transform: translateX(4px); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--orange) 0%, #e05d0a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}
.cta-section h2 { color: var(--white); }
.cta-section p { color: rgba(255,255,255,0.9); font-size: 1.1rem; }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section {
    background: var(--navy);
    padding: 60px 0;
}
.newsletter-wrap { }
.newsletter-section h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 8px;
}
.newsletter-section h3 i { color: var(--orange); }
.newsletter-section p { color: rgba(255,255,255,0.7); margin: 0; }

.newsletter-form .form-control {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius) 0 0 var(--radius);
}
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form .form-control:focus {
    background: rgba(255,255,255,0.15);
    border-color: var(--orange);
    box-shadow: none;
    color: var(--white);
}
.newsletter-form .btn-orange {
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 14px 24px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: #0a1628; }

.footer-top { padding: 80px 0 40px; }

.footer-logo { }

.footer-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--orange);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.footer-links a i { color: var(--orange); font-size: 0.7rem; }
.footer-links a:hover { color: var(--orange); padding-left: 4px; }

.footer-contact-list {
    list-style: none;
    padding: 0;
}
.footer-contact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: rgba(255,255,255,0.6);
    font-size: 0.87rem;
    margin-bottom: 14px;
    line-height: 1.5;
}
.footer-contact-list li i {
    color: var(--orange);
    margin-top: 3px;
    width: 16px;
    flex-shrink: 0;
}
.footer-contact-list a { color: rgba(255,255,255,0.6); }
.footer-contact-list a:hover { color: var(--orange); }

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 20px 0;
}
.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin: 0;
}
.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}
.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--orange); }

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 80px solid rgba(249,115,22,0.1);
}
.page-hero-title {
    color: var(--white);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 12px;
}
.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}
.breadcrumb-item { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.breadcrumb-item a { color: rgba(255,255,255,0.7); }
.breadcrumb-item a:hover { color: var(--orange); }
.breadcrumb-item.active { color: var(--orange); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ============================================
   BACK TO TOP & WHATSAPP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 24px;
    width: 46px;
    height: 46px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    font-size: 0.85rem;
    box-shadow: var(--shadow);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--orange); transform: translateY(-3px); }

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    animation: pulse-green 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}
@keyframes pulse-green {
    0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info-box {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--white);
    height: 100%;
}
.contact-info-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 30px;
}
.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--orange);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    flex-shrink: 0;
}
.contact-info-text h6 { color: var(--white); font-size: 0.9rem; margin-bottom: 4px; }
.contact-info-text p { color: rgba(255,255,255,0.7); font-size: 0.88rem; margin: 0; }
.contact-info-text a { color: rgba(255,255,255,0.7); }
.contact-info-text a:hover { color: var(--orange); }

.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.form-control, .form-select {
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    padding: 12px 16px;
    font-size: 0.92rem;
    transition: var(--transition);
}
.form-control:focus, .form-select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}
.form-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--gray-dark);
    margin-bottom: 6px;
}

/* Map */
.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.map-wrap iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* ============================================
   PRODUCT DETAIL
   ============================================ */
.product-detail-gallery .main-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 16px;
}
.product-detail-gallery .main-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}
.product-detail-gallery .thumb-swiper .swiper-slide {
    cursor: pointer;
    border-radius: var(--radius);
    overflow: hidden;
    border: 3px solid transparent;
    transition: var(--transition);
}
.product-detail-gallery .thumb-swiper .swiper-slide-thumb-active {
    border-color: var(--orange);
}
.product-detail-gallery .thumb-swiper img {
    height: 80px;
    object-fit: cover;
    width: 100%;
}

.product-detail-info { }
.product-detail-category {
    color: var(--orange);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.product-detail-title { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 16px; }
.product-detail-model {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    color: var(--gray);
    margin-bottom: 20px;
}
.product-detail-model span { font-weight: 700; color: var(--navy); }

.product-tabs .nav-tabs { border-bottom: 2px solid var(--gray-light); margin-bottom: 30px; }
.product-tabs .nav-link {
    color: var(--gray);
    font-weight: 600;
    padding: 12px 20px;
    border: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    font-size: 0.9rem;
}
.product-tabs .nav-link.active {
    color: var(--orange);
    border-bottom-color: var(--orange);
    background: none;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: var(--transition);
    text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-overlay {
    position: absolute;
    inset: 0;
    background: rgba(249,115,22,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: var(--transition);
}
.team-card:hover .team-overlay { opacity: 1; }
.team-overlay a {
    width: 38px;
    height: 38px;
    background: var(--white);
    color: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.team-overlay a:hover { background: var(--navy); color: var(--white); }
.team-body { padding: 20px; }
.team-body h5 { font-size: 1rem; margin-bottom: 4px; }
.team-body p { color: var(--orange); font-size: 0.85rem; margin: 0; font-weight: 600; }

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-sidebar .widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    margin-bottom: 30px;
}
.widget-title {
    font-size: 1rem;
    font-weight: 700;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--orange);
    margin-bottom: 20px;
    display: inline-block;
}

.recent-post {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-light);
}
.recent-post:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.recent-post-img {
    width: 64px;
    height: 64px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}
.recent-post-img img { width: 100%; height: 100%; object-fit: cover; }
.recent-post-text h6 { font-size: 0.87rem; margin-bottom: 4px; line-height: 1.4; }
.recent-post-text h6 a { color: var(--navy); }
.recent-post-text h6 a:hover { color: var(--orange); }
.recent-post-date { color: var(--gray); font-size: 0.78rem; }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-item {
    background: var(--bg-light);
    color: var(--gray-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}
.tag-item:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }

/* ============================================
   TEKLIF AL PAGE
   ============================================ */
.quote-section { background: var(--bg-light); }

/* ============================================
   PAGINATION
   ============================================ */
.pagination .page-link {
    color: var(--navy);
    border-color: var(--gray-light);
    border-radius: var(--radius) !important;
    margin: 0 3px;
    padding: 10px 16px;
    font-weight: 600;
    transition: var(--transition);
}
.pagination .page-link:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}
.pagination .page-item.active .page-link {
    background: var(--orange);
    border-color: var(--orange);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-justify { text-align: justify; }

/* Loading skeleton */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 4px;
}
@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link { padding: 12px 0; border-bottom: 1px solid var(--gray-light); }
    .navbar-nav .nav-link::after { display: none; }
    .dropdown-menu { box-shadow: none; border: none; background: var(--bg-light); }
    .navbar-collapse { padding: 16px 0; }
    .topbar-left { gap: 10px; }
    .hero-slider, .hero-slide { height: 70vh; min-height: 500px; }
    .features-bar .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .about-image-main img { height: 320px; }
    .stat-number { font-size: 2.2rem; }
    .footer-bottom-links { justify-content: center; margin-top: 10px; }
    .footer-bottom p { text-align: center; }
}

@media (max-width: 767.98px) {
    .topbar { display: none; }
    .section-pad { padding: 60px 0; }
    .hero-slider, .hero-slide { height: 60vh; min-height: 450px; }
    .hero-title { font-size: 1.6rem; }
    .hero-desc { font-size: 0.95rem; }
    .hero-buttons { gap: 10px; }
    .about-image-badge { position: static; margin-top: 16px; display: inline-block; }
    .stats-section { padding: 50px 0; }
    .cta-section { padding: 60px 0; text-align: center; }
    .newsletter-section { text-align: center; }
    .contact-info-box, .contact-form-wrap { padding: 24px; }
    .swiper-button-next, .swiper-button-prev { display: none; }
}

@media (max-width: 575.98px) {
    .btn-orange, .btn-outline-orange { padding: 10px 20px; font-size: 0.85rem; }
    .hero-slider, .hero-slide { height: 100svh; max-height: 600px; }
}
