/* ==========================================================================
   DESIGN SYSTEM - HIZLI TESİSAT KAYSERİ
   ========================================================================== */

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

:root {
    /* Color Palette */
    --color-primary: #0066cc;        /* Pure plumbing blue */
    --color-primary-dark: #004da0;   /* Deep ocean blue */
    --color-primary-light: #e6f0fa;  /* Light background tint */
    --color-accent: #ff8c00;         /* Warning/action orange */
    --color-accent-dark: #cc7000;    /* Dark orange for active states */
    --color-text-dark: #1e293b;      /* Slate dark text */
    --color-text-muted: #64748b;     /* Muted grey text */
    --color-bg-light: #f8fafc;       /* Off-white background */
    --color-bg-white: #ffffff;       /* Pure white */
    --color-success: #10b981;        /* Success green */
    --color-border: #e2e8f0;         /* Light border color */
    
    /* Layout Tokens */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --header-height: 80px;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 20px;
    --box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    --box-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-light);
    color: var(--color-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(--color-text-dark);
}

p {
    color: var(--color-text-muted);
}

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

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

ul {
    list-style: none;
}

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

/* Common Layout Components */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

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

.section-tint {
    background-color: var(--color-primary-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-subtitle {
    color: var(--color-primary);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 12px;
    padding: 4px 12px;
    background-color: var(--color-primary-light);
    border-radius: 20px;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

.btn-secondary:hover {
    background-color: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-lg);
}

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

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

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

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-lg);
}

/* ==========================================================================
   HEADER SECTION & NAV MENU (WITH DROPDOWNS)
   ========================================================================== */

.header {
    height: var(--header-height);
    background-color: var(--color-bg-white);
    border-bottom: 1px solid var(--color-border);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    height: 70px;
    box-shadow: var(--box-shadow);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.35rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--color-primary);
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: var(--box-shadow);
}

/* Navigation Links */
.nav {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 100%;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--color-text-dark);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

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

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 270px;
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: var(--box-shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    padding: 10px 0;
    max-height: 450px;
    overflow-y: auto;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item a {
    display: block;
    padding: 10px 24px;
    font-size: 0.925rem;
    font-weight: 500;
    color: var(--color-text-dark);
    border-left: 3px solid transparent;
}

.dropdown-item a:hover {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    border-left-color: var(--color-primary);
}

.header-action {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-action {
    text-align: right;
    display: flex;
    flex-direction: column;
}

.phone-action span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.phone-action a {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-primary);
}

.menu-btn {
    display: none;
    width: 30px;
    height: 30px;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 1100;
}

.menu-btn-burger {
    width: 100%;
    height: 3px;
    background-color: var(--color-text-dark);
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
}

.menu-btn-burger::before, .menu-btn-burger::after {
    content: '';
    width: 100%;
    height: 3px;
    background-color: var(--color-text-dark);
    position: absolute;
    left: 0;
    transition: var(--transition);
}

.menu-btn-burger::before { top: -8px; }
.menu-btn-burger::after { top: 8px; }

/* Menu open state */
.menu-btn.open .menu-btn-burger {
    background-color: transparent;
}
.menu-btn.open .menu-btn-burger::before {
    transform: rotate(45deg);
    top: 0;
}
.menu-btn.open .menu-btn-burger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ==========================================================================
   HERO & HERO BACKGROUND
   ========================================================================== */

.hero {
    margin-top: var(--header-height);
    background: url('../images/hero_bg.webp') no-repeat center center/cover;
    padding: 120px 0;
    color: var(--color-bg-white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 30, 61, 0.88), rgba(0, 77, 160, 0.82));
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    color: var(--color-bg-white);
    margin-bottom: 24px;
}

.hero-title span {
    color: var(--color-accent);
}

.hero-desc {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 36px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 24px;
}

.stat-item h3 {
    font-size: 2.25rem;
    color: var(--color-accent);
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 0.9rem;
    color: #cbd5e1;
}

.hero-badge-container {
    display: flex;
    justify-content: flex-end;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-lg);
    max-width: 320px;
    animation: float 6s ease-in-out infinite;
}

.hero-badge-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-badge-desc {
    font-size: 0.9rem;
    color: #e2e8f0;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* ==========================================================================
   SERVICES GRID (14 SERVICES)
   ========================================================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius);
    padding: 32px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.service-card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-primary-light);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 24px;
    transition: var(--transition);
}

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

.service-card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card-desc {
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.service-card-link svg {
    transition: var(--transition);
}

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

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */

.about-section {
    padding: 100px 0;
}

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

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

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.about-experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--color-accent);
    color: var(--color-bg-white);
    padding: 20px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow-lg);
}

.about-experience-badge h4 {
    font-size: 2rem;
    line-height: 1;
}

.about-experience-badge p {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
}

.about-features {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.about-feature-icon {
    color: var(--color-success);
}

/* ==========================================================================
   TESTIMONIALS SECTION (16 HAPPY CLIENTS)
   ========================================================================== */

.testimonials-container {
    max-height: 600px;
    overflow-y: auto;
    padding: 15px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    background-color: var(--color-bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 20px;
}

.testimonial-card {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius);
    padding: 24px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--color-primary-light);
    box-shadow: var(--box-shadow-lg);
}

.testimonial-stars {
    color: #fbbf24;
    margin-bottom: 12px;
    display: flex;
    gap: 2px;
}

.testimonial-text {
    font-size: 0.925rem;
    margin-bottom: 16px;
    color: var(--color-text-dark);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.author-name {
    font-size: 0.95rem;
    font-weight: 700;
}

.author-location {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.faq-question {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    user-select: none;
}

.faq-question:hover {
    background-color: var(--color-bg-light);
    color: var(--color-primary);
}

.faq-icon {
    font-size: 0.8rem;
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 24px;
    background-color: var(--color-bg-white);
}

.faq-answer p {
    padding: 0 0 20px;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* Open state */
.faq-item.active {
    border-color: var(--color-primary);
}
.faq-item.active .faq-question {
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-border);
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
.faq-item.active .faq-answer {
    max-height: 200px; /* arbitrary height to slide open */
}

/* ==========================================================================
   CONTACT FORM & INFO
   ========================================================================== */

.contact-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
}

.contact-info-card {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-header h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.contact-info-header p {
    color: #cbd5e1;
    margin-bottom: 30px;
}

.info-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-link-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.info-link-icon {
    width: 46px;
    height: 46px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.info-link-details span {
    font-size: 0.8rem;
    color: #94a3b8;
    display: block;
}

.info-link-details a, .info-link-details p {
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
}

.contact-form-card {
    background-color: var(--color-bg-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--color-border);
}

.form-title {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.form-desc {
    margin-bottom: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-full {
    grid-column: span 2;
}

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

.form-control {
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    transition: var(--transition);
    color: var(--color-text-dark);
}

.form-control:focus {
    border-color: var(--color-primary);
    background-color: var(--color-bg-white);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.15);
}

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

/* KVKK Checkbox field */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.checkbox-label a {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 500;
}

.checkbox-error {
    border: 2px solid #ef4444 !important;
}

/* ==========================================================================
   REGIONS SECTION (DISTRICTS IN FOOTER / SERVICE SECTION)
   ========================================================================== */

.districts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.district-link-card {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: 16px;
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
    display: block;
}

.district-link-card:hover {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */

.footer {
    background-color: #0b132b;
    color: #cbd5e1;
    padding: 80px 0 30px;
    border-top: 4px solid var(--color-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

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

.footer-desc {
    font-size: 0.95rem;
    color: #94a3b8;
    margin-bottom: 20px;
}

.footer-title {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

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

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

.footer-links a {
    color: #94a3b8;
}

.footer-links a:hover {
    color: white;
    padding-left: 6px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #94a3b8;
}

.footer-contact-info li svg {
    color: var(--color-accent);
}

.footer-contact-info a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    color: #64748b;
}

.footer-bottom-links a {
    color: #94a3b8;
    margin-right: 15px;
}

.footer-bottom-links a:hover {
    color: white;
}

.footer-credits a {
    color: var(--color-primary);
    font-weight: 600;
}

.footer-credits a:hover {
    color: white;
}

/* ==========================================================================
   STICKY CONTACT BUTTONS & MOBILE STICKY BAR
   ========================================================================== */

/* Desktop Sticky floating buttons */
.sticky-contacts {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.sticky-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--box-shadow-lg);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.sticky-btn:hover {
    transform: scale(1.1) rotate(5deg);
}

.sticky-whatsapp {
    background-color: #25d366;
}

.sticky-phone {
    background-color: var(--color-primary);
}

/* Tooltips */
.sticky-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    background-color: rgba(15, 23, 42, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.sticky-btn:hover::after {
    opacity: 1;
}

/* Mobile Sticky Bottom bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 998;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.bar-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    height: 100%;
}

.bar-phone {
    background-color: var(--color-primary);
}

.bar-whatsapp {
    background-color: #25d366;
}

/* ==========================================================================
   COOKIE CONSENT BANNER
   ========================================================================== */

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 400px;
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-lg);
    padding: 24px;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s ease-out;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-title {
    font-size: 1.1rem;
    font-weight: 700;
}

.cookie-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.cookie-desc a {
    color: var(--color-primary);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 8px 20px;
    font-size: 0.85rem;
    border-radius: var(--border-radius-sm);
}

/* ==========================================================================
   DETAIL / POLICIES / SEO INNER PAGES STYLE
   ========================================================================== */

.inner-hero {
    margin-top: var(--header-height);
    background: linear-gradient(135deg, rgba(13, 30, 61, 0.9), rgba(0, 77, 160, 0.9)), url('../images/service_generic.webp') no-repeat center center/cover;
    padding: 60px 0;
    color: white;
    text-align: center;
}

.inner-hero h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.breadcrumbs {
    display: inline-flex;
    gap: 8px;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.breadcrumbs a:hover {
    color: white;
}

.breadcrumbs span {
    color: var(--color-accent);
}

.inner-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    padding: 60px 0;
}

.inner-content {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius);
    padding: 40px;
    border: 1px solid var(--color-border);
    box-shadow: var(--box-shadow);
}

.inner-content h2 {
    font-size: 1.75rem;
    margin: 30px 0 16px;
    color: var(--color-primary);
}

.inner-content h2:first-of-type {
    margin-top: 0;
}

.inner-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #334155;
}

.inner-content ul {
    list-style-type: disc;
    margin-left: 24px;
    margin-bottom: 24px;
}

.inner-content li {
    margin-bottom: 8px;
    font-size: 1.05rem;
    color: #334155;
}

.inner-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 1px solid var(--color-border);
    box-shadow: var(--box-shadow);
}

.widget-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--color-primary-light);
    padding-bottom: 10px;
}

.widget-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.widget-link-item {
    font-weight: 500;
    color: var(--color-text-dark);
}

.widget-link-item:hover, .widget-link-item.active {
    color: var(--color-primary);
    padding-left: 4px;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-badge-container {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .inner-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero {
        padding: 60px 0 80px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    /* Header menu mobile */
    .menu-btn {
        display: block;
    }
    
    .nav {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--color-bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
        gap: 20px;
        overflow-y: auto;
        transition: var(--transition);
        border-top: 1px solid var(--color-border);
    }
    
    .nav.open {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        height: auto;
    }
    
    .nav-link {
        width: 100%;
        padding: 10px 0;
        font-size: 1.1rem;
    }
    
    /* Dropdown under mobile menu */
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--color-primary-light);
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: none;
        padding: 5px 0 5px 15px;
        display: none; /* JS will toggle */
    }
    
    .nav-item.mobile-expanded .dropdown-menu {
        display: block;
    }
    
    .header-action {
        display: none; /* Hide top phone on mobile, sticky bar handles it */
    }
    
    /* Sticky Contact Button overrides */
    .sticky-contacts {
        display: none; /* Hide floats on mobile */
    }
    
    .mobile-sticky-bar {
        display: flex; /* Show sticky bar at the bottom */
    }
    
    body {
        padding-bottom: 60px; /* Space for mobile sticky bar */
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group-full {
        grid-column: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 80px;
        max-width: none;
        padding: 16px;
    }
    
    .cookie-actions {
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}
