/* ==========================================================================
   BANDIRMA OTO KURTARMA - STYLE.CSS
   Modern, Premium, Responsive Stylesheet
   ========================================================================== */

/* 1. DESIGN TOKENS & CUSTOM PROPERTIES */
:root {
    --color-primary: #e53935;         /* Bandırma Kırmızısı */
    --color-primary-hover: #b71c1c;   
    --color-secondary: #25d366;       /* WhatsApp Yeşili */
    --color-secondary-hover: #128c7e;
    --color-dark: #0f111a;             /* Koyu Slate Arka Plan */
    --color-dark-light: #161a29;       /* Kartlar ve Alt Bölümler */
    --color-dark-lighter: #22283e;     
    --color-light: #f5f7fa;            /* Açık Gri Bölümler */
    --color-white: #ffffff;
    --color-text: #454d66;             /* Koyu Yazı Rengi */
    --color-text-muted: #808a9f;       /* Silik Yazı Rengi */
    --font-main: 'Outfit', sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
    
    /* Shadows & Border Radius */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 12px 24px rgba(15, 17, 26, 0.08);
    --shadow-lg: 0 20px 40px rgba(15, 17, 26, 0.15);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. BASE & RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--color-white);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

input, textarea, button {
    font-family: var(--font-main);
    border: none;
    outline: none;
}

/* 3. REUSABLE COMPONENTS & UTILITIES */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

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

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

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

.btn-secondary:hover {
    background-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 17, 26, 0.15);
}

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

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-light {
    background-color: var(--color-white);
    color: var(--color-dark);
}

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

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
    border-radius: var(--radius-sm);
}

.w-100 {
    width: 100%;
}

.mt-20 {
    margin-top: 20px;
}

/* Sections */
section {
    padding: 100px 0;
}

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

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

.section-badge {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.section-badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 2px;
}

.text-center .section-badge::before {
    display: none;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

/* Color classes */
.color-primary {
    color: var(--color-primary) !important;
}

.text-white {
    color: var(--color-white) !important;
}


/* 4. TOP BAR */
.top-bar {
    background-color: #0b0d14;
    color: var(--color-white);
    padding: 10px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.contact-info {
    display: flex;
    gap: 24px;
}

.contact-info a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
}

.contact-info a:hover {
    color: var(--color-primary);
}

.contact-info i {
    color: var(--color-primary);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

.social-links a:hover {
    color: var(--color-white);
    background-color: var(--color-primary);
    transform: translateY(-2px);
}


/* 5. MAIN HEADER & NAVIGATION */
.main-header {
    background-color: transparent;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: var(--transition-normal);
    padding: 20px 0;
}

/* Sticky Header Style via JS */
.main-header.sticky {
    position: fixed;
    top: 0;
    background-color: rgba(15, 17, 26, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

/* Logo Design */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transform: skewX(-10deg);
}

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

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: 1px;
    line-height: 1;
}

.brand-sub {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 1.5px;
    margin-top: 4px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-white);
}

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

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

.nav-cta-btn {
    padding: 10px 24px;
    border-radius: var(--radius-sm);
}

/* Hamburger menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    cursor: pointer;
    z-index: 110;
}

.hamburger-menu .bar {
    height: 3px;
    width: 100%;
    background-color: var(--color-white);
    border-radius: 10px;
    transition: var(--transition-normal);
}


/* 6. HERO SECTION */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

/* Default Background Placeholder if user's image is not loaded yet */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #171d2b;
    z-index: -2;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 17, 26, 0.75) 0%, rgba(15, 17, 26, 0.35) 100%);
    z-index: -1;
}

.hero-container {
    margin-top: 60px;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.hero-content {
    color: var(--color-white);
}

.hero-image-box {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
    border: 3px solid rgba(255, 255, 255, 0.15);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: var(--transition-slow);
}

.hero-image-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 17, 26, 0.3), transparent);
    z-index: 1;
}

.hero-image-box:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.03);
    box-shadow: 0 30px 60px rgba(229, 57, 53, 0.3);
    border-color: var(--color-primary);
}

.hero-featured-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.hero-badge {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Diagonal Divider */
.diagonal-separator {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.diagonal-separator svg {
    position: relative;
    display: block;
    width: 100%;
    height: 80px;
}

.diagonal-separator .shape-fill {
    fill: var(--color-white);
}


/* 7. FLOATING ELEMENTS */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px; /* Moved to right */
    height: 56px;
    width: 56px; /* Circle initially */
    background-color: var(--color-secondary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 14px 15px; /* compact padding to center icon */
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
    z-index: 99;
    cursor: pointer;
    overflow: hidden; /* Hide text when closed */
    white-space: nowrap;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color var(--transition-normal), transform var(--transition-normal), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-whatsapp:hover {
    width: 235px; /* Expands to show text */
    background-color: var(--color-secondary-hover);
    transform: translateY(-5px);
    padding: 14px 24px;
}

.whatsapp-icon {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    animation: shake 2.5s infinite;
}

.whatsapp-text {
    margin-left: 10px;
    opacity: 0;
    font-size: 0.95rem;
    transition: opacity 0.3s ease 0.15s;
}

.floating-whatsapp:hover .whatsapp-text {
    opacity: 1;
}

/* Floating Call Button for Mobiles Only */
.floating-call-btn {
    display: none; /* Desktop default: none */
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 24px rgba(229, 57, 53, 0.4);
    z-index: 99;
    transition: var(--transition-normal);
}

.floating-call-btn:hover {
    background-color: var(--color-primary-hover);
    transform: scale(1.1) translateY(-5px);
}


/* 8. STATS SECTION */
.stats-section {
    padding: 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    background-color: var(--color-white);
    padding: 30px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    border-bottom: 4px solid transparent;
    transition: var(--transition-normal);
}

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

.stat-icon {
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.stat-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.stat-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 600;
}


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

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

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 17, 26, 0.4), transparent);
}

.about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.badge-num {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

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

.about-content {
    padding-right: 20px;
}

.about-lead {
    font-size: 1.2rem;
    color: var(--color-dark);
    font-weight: 600;
    margin-bottom: 20px;
}

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

.about-list {
    margin-bottom: 35px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.about-list i {
    color: var(--color-primary);
    font-size: 1.1rem;
}


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

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

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-dark);
    z-index: -1;
    transform: translateY(102%);
    transition: var(--transition-normal);
}

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

.service-card:hover::before {
    transform: translateY(0);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(229, 57, 53, 0.1);
    color: var(--color-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
    transition: var(--transition-normal);
}

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

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
    transition: var(--transition-normal);
}

.service-card:hover h3 {
    color: var(--color-white);
}

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

.service-card:hover p {
    color: rgba(255, 255, 255, 0.7);
}

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

.service-link i {
    transition: var(--transition-fast);
}

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

.service-card:hover .service-link i {
    transform: translateX(4px);
}


/* 11. CALL TO ACTION SECTION */
.cta-section {
    position: relative;
    background-image: url('img/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: var(--color-white);
    z-index: 1;
}

/* Fallback background block */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-dark);
    z-index: -2;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 17, 26, 0.9);
    z-index: -1;
}

.cta-container {
    max-width: 800px;
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}


/* 12. BLOG / GALLERY SECTION */
.blog-section {
    background-color: var(--color-white);
}

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

.blog-card {
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 17, 26, 0.05);
    transition: var(--transition-normal);
}

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

.blog-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

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

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

.blog-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

.blog-content {
    padding: 30px;
}

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

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.3;
    margin-bottom: 14px;
}

.blog-content h3 a:hover {
    color: var(--color-primary);
}

.blog-content p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-dark);
}

.read-more i {
    transition: var(--transition-fast);
}

.blog-card:hover .read-more {
    color: var(--color-primary);
}

.blog-card:hover .read-more i {
    transform: translateX(4px);
}


/* 13. CONTACT SECTION */
.contact-section {
    background-color: var(--color-light);
}

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

.info-card {
    background-color: var(--color-white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-normal);
    border-bottom: 3px solid transparent;
}

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

.info-card-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(229, 57, 53, 0.08);
    color: var(--color-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 24px auto;
    transition: var(--transition-normal);
}

.info-card:hover .info-card-icon {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.05);
}

.info-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.info-card p {
    color: var(--color-text-muted);
    font-size: 1rem;
    font-weight: 600;
}

.info-card a {
    color: var(--color-dark);
    transition: var(--transition-fast);
}

.info-card a:hover {
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
}


/* 14. MAP SECTION */
.map-section {
    padding: 0;
    line-height: 0;
}


/* 15. FOOTER */
.site-footer {
    background-color: #0b0d14;
    color: #a3a8b5;
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-col h3 {
    color: var(--color-white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

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

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

.footer-about p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links ul, .footer-services ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a, .footer-services a {
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before, .footer-services a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--color-primary);
    transition: var(--transition-fast);
}

.footer-links a:hover, .footer-services a:hover {
    color: var(--color-white);
    padding-left: 6px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.footer-contact a:hover {
    color: var(--color-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
    font-size: 0.85rem;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* 15.5 GALLERY & FLEET SECTION */
.gallery-section {
    background-color: var(--color-white);
    padding: 100px 0 0 0; /* No bottom padding so images touch the separator */
    overflow: hidden;
}

.carousel-container-full {
    position: relative;
    width: 100%;
    margin-top: 50px;
    padding: 0;
    display: flex;
    align-items: center;
}

.carousel-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 15px; /* Compact gap */
    transition: transform var(--transition-normal);
}

.carousel-slide {
    flex: 0 0 calc((100% - 30px) / 3); /* Shows 3 items on desktop */
    height: 520px; /* Much larger height */
    border-radius: 0; /* Sharp edges for seamless horizontal grid */
    overflow: hidden;
    transition: var(--transition-normal);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
}

.carousel-slide:hover img {
    transform: scale(1.05); /* Soft zoom on hover */
}

/* Floating overlay buttons at the screen edges */
.carousel-container-full .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(15, 17, 26, 0.75);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 1.3rem;
    border: none;
    backdrop-filter: blur(5px);
    transition: var(--transition-fast);
}

.carousel-container-full .carousel-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-50%) scale(1.08);
}

.carousel-container-full .prev-btn {
    left: 20px;
}

.carousel-container-full .next-btn {
    right: 20px;
}


/* 16. RESPONSIVE MEDIA QUERIES */

/* Large Tablets & Small Desktops (max-width: 1024px) */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-content {
        max-width: 750px;
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-box {
        display: none; /* Hide floating photo card on smaller screens */
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-img {
        height: 380px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .carousel-slide {
        flex: 0 0 calc((100% - 15px) / 2); /* Shows 2 items */
        height: 420px;
    }
}

/* Tablets (max-width: 768px) */
@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    
    .top-bar {
        display: none; /* Hide top bar on mobile */
    }
    
    .main-header {
        position: fixed;
        background-color: #0f111a;
        padding: 15px 0;
    }
    
    .hero-section {
        height: auto;
        padding: 160px 0 100px 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }
    
    /* Navigation Hamburger Menu Logic */
    .hamburger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 74px; /* Header height offset */
        width: 100%;
        height: calc(100vh - 74px);
        background-color: #0f111a;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 30px;
        padding-top: 50px;
        transition: var(--transition-normal);
        z-index: 100;
        overflow-y: auto;
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .nav-cta-btn {
        width: 80%;
        text-align: center;
        font-size: 1.1rem;
        margin-top: 20px;
    }
    
    /* Hamburger Transform to X */
    .hamburger-menu.open .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger-menu.open .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.open .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    /* Floating Call Button Activation */
    .floating-call-btn {
        display: flex;
    }
    
    .floating-whatsapp {
        right: 20px;
        left: auto;
        width: 50px;
        height: 50px;
        padding: 12px;
        bottom: 20px;
    }
    
    .floating-whatsapp .whatsapp-text {
        display: none; /* Hide text on mobile to avoid overlapping */
    }
    
    .floating-call-btn {
        left: 20px;
        right: auto;
        bottom: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .carousel-slide {
        flex: 0 0 100%; /* Shows 1 item */
        height: 360px;
    }
    
    .carousel-container-full .prev-btn {
        left: 10px;
    }
    
    .carousel-container-full .next-btn {
        right: 10px;
    }
    
    .carousel-container-full .carousel-btn {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
}

/* Mobiles (max-width: 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
}


/* 17. ANIMATIONS */
@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-8deg); }
    20%, 40%, 60%, 80% { transform: rotate(8deg); }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-whatsapp {
    animation: pulse 2.5s infinite;
}


/* 18. SUB-PAGE COMMON STYLES */
.page-header {
    position: relative;
    height: 260px;
    background-color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px; /* Offset for sticky header */
    overflow: hidden;
    z-index: 1;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
    opacity: 0.15; /* subtle photo texture */
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 17, 26, 0.92) 0%, rgba(229, 57, 53, 0.45) 100%);
    z-index: -1;
}

.page-header-content {
    color: var(--color-white);
}

.page-header h1 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.page-header-breadcrumbs {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.page-header-breadcrumbs a {
    color: rgba(255, 255, 255, 0.85);
}

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

.page-header-breadcrumbs span {
    color: var(--color-primary);
}

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

/* Sub-page header fixes */
.main-header.sub-page-header {
    background-color: rgba(15, 17, 26, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: fixed;
    top: 0;
}

