/* 
   DurakTUR - Bursa Lüks Turizm & Taşımacılık
   Global Tasarım Sistemi ve Stil Dosyası
*/

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

:root {
    /* Renk Paleti */
    --primary-blue: #1C3D75;      /* Kurumsal Derin Mavi (Logo ile uyumlu) */
    --primary-blue-light: #254F96;
    --primary-blue-glow: rgba(28, 61, 117, 0.15);
    
    --accent-orange: #FF6B35;     /* Dinamik Turuncu */
    --accent-orange-hover: #E85A24;
    --accent-orange-glow: rgba(255, 107, 53, 0.3);
    
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --light-gray: #F1F5F9;
    --border-gray: #E2E8F0;
    
    --text-dark: #0F172A;         /* Slate 900 */
    --text-medium: #334155;       /* Slate 700 */
    --text-light: #64748B;        /* Slate 500 */
    
    --success: #10B981;
    --star-gold: #F59E0B;
    
    /* Font Tanımları */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Tasarım Tokenları */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 8px 16px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 32px rgba(15, 23, 42, 0.12);
    --shadow-glow: 0 0 20px rgba(255, 107, 53, 0.4);
    
    --max-width: 1280px;
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

html {
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary-blue);
}

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

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

/* Layout Utilities */
.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 5rem 0;
    overflow-x: hidden;
}

.section-bg {
    background-color: var(--white);
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: var(--primary-blue-glow);
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Flex & Grid helpers */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Custom Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    font-family: var(--font-heading);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: var(--transition-normal);
    z-index: -1;
}

.btn:hover::after {
    transform: translateX(0);
}

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

.btn-primary:hover {
    background-color: var(--accent-orange-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

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

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

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

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

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: #20BA5A;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background-color: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: var(--transition-normal);
    animation: whatsappPulse 2s infinite;
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(10deg);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Header & Navigation Styling */
app-header {
    display: block;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-gray);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.header-container.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-md);
    border-bottom-color: rgba(226, 232, 240, 0.8);
}

.header-top {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 0;
    font-size: 0.85rem;
    transition: all var(--transition-normal);
    max-height: 40px;
    opacity: 1;
    overflow: hidden;
}

.header-container.scrolled .header-top {
    max-height: 0;
    padding: 0;
    opacity: 0;
}

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

.header-info-list {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.header-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-info-item svg {
    width: 16px;
    height: 16px;
    fill: var(--accent-orange);
}

.header-main {
    padding: 1rem 0;
    transition: all var(--transition-normal);
}

.header-container.scrolled .header-main {
    padding: 0.6rem 0;
}

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

.logo-link img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: all var(--transition-normal);
}

.header-container.scrolled .logo-link img {
    height: 48px;
}

.nav-menu {
    display: flex;
    gap: 2.2rem;
    list-style: none;
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark);
    font-family: var(--font-heading);
    padding: 0.5rem 0;
    position: relative;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--accent-orange);
    transition: width var(--transition-normal);
    border-radius: var(--radius-full);
}

.nav-link:hover {
    color: var(--accent-orange);
}

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

.nav-link.active {
    color: var(--accent-orange);
}

/* Header CTA Button */
.header-cta {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    cursor: pointer;
    z-index: 1010;
    order: 3;
}

.mobile-nav-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--primary-blue);
    transition: var(--transition-normal);
    border-radius: var(--radius-full);
}

.mobile-nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
}

/* Footer Styling - Modern Compact Design */
app-footer {
    display: block;
    background-color: var(--primary-blue);
    color: var(--white);
}

.footer-accent-line {
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--primary-blue-light), var(--accent-orange));
    background-size: 200% 100%;
    animation: footerGradient 6s ease infinite;
}

@keyframes footerGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.footer-main {
    padding: 3.5rem 0 2rem;
}

.footer-new-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1.3fr;
    gap: 3rem;
    align-items: start;
}

/* Brand Column */
.footer-col-brand {}

.footer-brand-link {
    display: inline-block;
    margin-bottom: 1.25rem;
}

.footer-logo-new {
    height: 55px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: var(--transition-fast);
}

.footer-brand-link:hover .footer-logo-new {
    opacity: 1;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
}

.footer-logo-accent {
    color: var(--accent-orange);
}

.footer-brand-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-socials-new {
    display: flex;
    gap: 0.6rem;
}

.footer-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--white);
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-social-btn:hover {
    background-color: var(--accent-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.35);
}

.footer-social-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Links Column */
.footer-col-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    padding-bottom: 0.6rem;
    position: relative;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background-color: var(--accent-orange);
    border-radius: var(--radius-full);
}

.footer-link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-link-list a {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    padding: 0.15rem 0;
}

.footer-link-list a:hover {
    color: var(--accent-orange);
    padding-left: 6px;
}

/* Contact Column */
.footer-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.footer-contact-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0.85rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition-fast);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.footer-contact-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 107, 53, 0.2);
}

.footer-contact-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact-icon svg {
    width: 16px;
    height: 16px;
    fill: var(--white);
}

.footer-contact-label {
    display: block;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.footer-contact-value {
    display: block;
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.3;
}

.footer-hours-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 107, 53, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-full);
    color: var(--accent-orange);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Footer Bottom */
.footer-bottom-new {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-content p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--accent-orange);
}

.footer-bottom-sep {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.7rem;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-new-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .footer-col-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 2.5rem 0 1.5rem;
    }
    .footer-new-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-col-brand {
        grid-column: auto;
        text-align: center;
    }
    .footer-brand-link {
        display: flex;
        justify-content: center;
    }
    .footer-brand-desc {
        max-width: 320px;
        margin: 0 auto 1.25rem;
    }
    .footer-socials-new {
        justify-content: center;
    }
    .footer-col-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-col-links,
    .footer-col-contact {
        text-align: center;
    }
    .footer-link-list {
        align-items: center;
    }
    .footer-hours-badge {
        margin: 0 auto;
    }
    .footer-bottom-content {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Animations using Intersection Observer */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Hero Section */
.hero {
    height: 60vh;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.85) 0%, rgba(15, 23, 42, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.15;
    font-weight: 800;
}

.hero h1 span {
    color: var(--accent-orange);
    position: relative;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
}

/* Service Cards Grid */
.services-grid {
    margin-top: 1rem;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--border-gray);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

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

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

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

.service-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-orange);
    color: var(--white);
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

.service-card-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    transition: var(--transition-fast);
}

.service-card:hover .service-card-title {
    color: var(--accent-orange);
}

.service-card-text {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    font-family: var(--font-heading);
}

.service-card-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: var(--transition-fast);
}

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

/* Service Detail Page Layout */
.service-detail-hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    color: var(--white);
    text-align: center;
}

.service-detail-hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-breadcrumbs {
    display: inline-flex;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
}

.service-breadcrumbs a {
    color: var(--accent-orange);
}

.service-detail-content {
    padding: 5rem 0;
}

.service-detail-main {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 3rem;
}

.service-info-text p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    font-size: 1.05rem;
}

.service-info-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 2.5rem;
    border: 4px solid var(--white);
}

.service-features-list {
    margin: 2rem 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
}

.service-feature-item svg {
    width: 24px;
    height: 24px;
    fill: var(--accent-orange);
}

/* Sidebar Inquiry Form */
.sidebar-box {
    background-color: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 120px;
}

.sidebar-title {
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent-orange);
}

.sidebar-services-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-services-nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1rem;
    background-color: var(--off-white);
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--text-medium);
}

.sidebar-services-nav a:hover,
.sidebar-services-nav a.active {
    background-color: var(--primary-blue);
    color: var(--white);
}

.sidebar-services-nav a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* About Page & Why Choose Us */
.features-grid {
    margin-top: 3rem;
}

.feature-box {
    background-color: var(--off-white);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid var(--border-gray);
}

.feature-box:hover {
    background-color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-orange-glow);
}

.feature-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-blue-glow);
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.feature-box:hover .feature-icon-wrapper {
    background-color: var(--accent-orange-glow);
    color: var(--accent-orange);
}

.feature-icon-wrapper svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

.feature-box h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-box p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Stars Rating Card Style (Customer Reviews) */
.reviews-grid {
    margin-top: 3rem;
}

.review-card {
    background-color: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition-normal);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-orange-glow);
}

.review-quote-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 4rem;
    color: rgba(26, 54, 93, 0.05);
    line-height: 1;
    font-family: Georgia, serif;
    pointer-events: none;
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.review-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--star-gold);
}

.review-text {
    color: var(--text-medium);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: var(--font-heading);
}

.review-author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.15rem;
}

.review-author-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* FAQ Accordion Section */
.faq-accordion {
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-header {
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.faq-header:hover {
    background-color: var(--off-white);
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--light-gray);
    transition: var(--transition-normal);
    position: relative;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--primary-blue);
    transition: var(--transition-normal);
}

.faq-icon::before {
    width: 12px;
    height: 2px;
}

.faq-icon::after {
    width: 2px;
    height: 12px;
}

.faq-item.open .faq-icon {
    background-color: var(--accent-orange);
    transform: rotate(45deg);
}

.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after {
    background-color: var(--white);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-body {
    max-height: 300px;
}

.faq-content {
    padding: 0 2rem 1.5rem;
    color: var(--text-medium);
    font-size: 0.95rem;
    border-top: 1px solid transparent;
}

.faq-item.open .faq-content {
    border-top-color: var(--border-gray);
}

/* Image Gallery Style */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 4px solid var(--white);
    transition: var(--transition-normal);
}

.gallery-item:hover {
    transform: scale(1.03) translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-orange);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(26,54,93,0.85) 0%, rgba(26,54,93,0.2) 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: var(--transition-normal);
}

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

.gallery-overlay h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.gallery-overlay p {
    color: var(--accent-orange);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border: 4px solid var(--white);
    object-fit: contain;
}

.lightbox-caption {
    color: var(--white);
    margin-top: 1rem;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--accent-orange);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.lightbox-nav:hover {
    background-color: var(--accent-orange);
}

.lightbox-nav svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

/* Contact Page Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-gray);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.contact-card h3 {
    margin-bottom: 1.5rem;
}

.contact-info-blocks {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-block {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-info-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--primary-blue-glow);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.contact-info-details h4 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.contact-info-details p,
.contact-info-details a {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.contact-info-details a:hover {
    color: var(--accent-orange);
}

/* Form Styles with WhatsApp Rating integration */
.contact-form-wrapper {
    background-color: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-gray);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h3 {
    margin-bottom: 1.5rem;
}

.form-group-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: var(--off-white);
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary-blue);
    background-color: var(--white);
    box-shadow: 0 0 0 3px var(--primary-blue-glow);
}

textarea.form-control {
    height: 120px;
    resize: none;
}

/* Interactive Star Rating in Form */
.form-rating-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--off-white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-gray);
}

.form-rating-label {
    font-weight: 600;
    font-size: 0.9rem;
}

.form-stars-picker {
    display: flex;
    gap: 0.35rem;
}

.form-star-item {
    cursor: pointer;
    color: var(--border-gray);
    transition: var(--transition-fast);
}

.form-star-item svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

.form-star-item.selected,
.form-star-item:hover,
.form-star-item:hover ~ .form-star-item {
    color: var(--star-gold);
}

/* Leaflet Map Styling */
.map-container {
    height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-gray);
    margin-top: 3rem;
    box-shadow: var(--shadow-sm);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-detail-main {
        grid-template-columns: 1fr;
    }
    .sidebar-box {
        position: static;
        margin-top: 2rem;
    }
    .lightbox-prev {
        left: 20px;
    }
    .lightbox-next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .hero {
        height: auto;
        padding: 6rem 0;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-btns {
        flex-direction: column;
        gap: 0.75rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    /* Navigation toggle */
    .mobile-nav-toggle {
        display: flex;
        margin-left: auto;
    }
    .header-cta {
        display: none !important;
    }
    nav {
        order: 10;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 2rem 1.5rem;
        transition: var(--transition-slow);
        box-shadow: -4px 0 20px rgba(15, 23, 42, 0.15);
        z-index: 999;
        border-left: 1px solid var(--border-gray);
    }
    .nav-menu.open {
        right: 0;
    }
    .nav-menu .nav-link {
        padding: 0.85rem 1rem;
        font-size: 1.05rem;
        border-radius: var(--radius-sm);
        width: 100%;
        display: block;
    }
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        background-color: var(--off-white);
    }
    .nav-menu .nav-link::after {
        display: none;
    }
    .header-top {
        display: none;
    }
}

/* SVG Wave Divider for Footer */
.footer-shape-divider {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    margin-top: 4rem;
}

.footer-shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.footer-shape-divider .shape-fill {
    fill: var(--primary-blue);
}

.footer-section {
    background-color: var(--primary-blue);
    color: var(--white);
    position: relative;
}

/* About Section with Tabs Styles */
.about-section {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-gray);
}

.about-tabs-container {
    background-color: var(--off-white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.about-tab-header {
    display: flex;
    gap: 1rem;
    border-bottom: 2px solid var(--border-gray);
    margin-bottom: 2rem;
}

.about-tab-btn {
    padding: 1rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-light);
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: var(--transition-fast);
    font-size: 1.1rem;
    border: none;
    outline: none;
}

.about-tab-btn:hover {
    color: var(--primary-blue);
}

.about-tab-btn.active {
    color: var(--accent-orange);
}

.about-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--accent-orange);
    transition: var(--transition-fast);
}

.about-tab-btn.active::after {
    width: 100%;
}

.about-tab-content-wrapper {
    position: relative;
    min-height: 200px;
}

.about-tab-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out forwards;
}

.about-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-tab-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.about-tab-content p {
    color: var(--text-medium);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.about-value-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-gray);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-value-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent-orange-glow);
    color: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-value-icon svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
}

.about-value-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.about-value-text p {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-tab-header {
        flex-direction: column;
        gap: 0;
    }
    .about-tab-btn {
        width: 100%;
        text-align: left;
        padding: 0.75rem 1rem;
    }
    .about-values-grid {
        grid-template-columns: 1fr;
    }
}

