/* Google Fonts loaded via HTML <link> for security and performance */

:root {
    --primary: #c8a45a;
    /* Premium Gold */
    --primary-light: #dfc07f;
    --primary-dark: #a88a3a;
    --accent: #c01c28;
    /* Power Red - secondary accent */
    --dark: #0a0a0a;
    --dark-surface: #141414;
    --dark-card: #1a1a1a;
    --dark-border: #2a2a2a;
    --grey-light: #f7f7f5;
    --grey-medium: #e8e6e1;
    --text-main: #1a1a1a;
    --text-muted: #6b6b6b;
    --text-light: #999;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s ease;
    --shadow-sm: 0 2px 15px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 10px 40px rgba(200, 164, 90, 0.15);
    --radius: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══════════════════════════════════════════
   HEADER / NAVIGATION
   ═══════════════════════════════════════════ */
header {
    background: rgba(255, 255, 255, 0.97);
    height: 80px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    border-bottom-color: transparent;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    transition: opacity 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 0.3px;
    padding: 8px 18px;
    border-radius: 8px;
    position: relative;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-dark);
    background: rgba(200, 164, 90, 0.08);
}

.nav-links a.active-page {
    color: var(--primary-dark);
    background: rgba(200, 164, 90, 0.1);
    font-weight: 600;
}

/* ─── Nav Dropdown ─────────────────── */
.nav-dropdown {
    position: relative;
    list-style: none;
}

.nav-dropdown>a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.65rem;
    margin-left: 5px;
    opacity: 0.5;
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav-dropdown:hover>a::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 1002;
    list-style: none;
}

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

.dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    font-size: 0.84rem;
    border-radius: 6px;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: rgba(200, 164, 90, 0.08);
    color: var(--primary-dark);
}

.nav-cta {
    background: var(--primary) !important;
    color: var(--dark) !important;
    font-weight: 700 !important;
    padding: 10px 24px !important;
    border-radius: 8px !important;
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--primary-light) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-main);
}

.mobile-toggle:hover {
    background: var(--grey-light);
}

/* ─── Language Switcher ─────────────────── */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    background: var(--grey-light);
    border-radius: 8px;
    padding: 3px;
    margin-left: 8px;
    list-style: none !important;
}

.lang-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    padding: 5px 10px;
    border-radius: 6px;
    transition: var(--transition-fast);
    line-height: 1;
}

.lang-btn:hover {
    color: var(--primary-dark);
    background: rgba(200, 164, 90, 0.12);
}

.lang-btn.active {
    background: var(--primary);
    color: var(--dark);
    box-shadow: 0 2px 8px rgba(200, 164, 90, 0.3);
}

/* Mobile lang switcher (always visible next to hamburger) */
.mobile-lang-switcher {
    display: none;
    align-items: center;
    gap: 2px;
    background: var(--grey-light);
    border-radius: 8px;
    padding: 3px;
    margin-right: 8px;
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */
.hero {
    height: 90vh;
    min-height: 650px;
    position: relative;
    background: url('assets/hero.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.6) 50%, rgba(10, 10, 10, 0.4) 100%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, var(--white), transparent);
    z-index: 1;
    pointer-events: none;
    transform: translateZ(0);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-label::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.hero h1 {
    font-size: 4.2rem;
    line-height: 1.08;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn-primary {
    background: var(--primary);
    color: var(--dark);
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-dark:hover {
    background: #222;
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   STATS / COUNTER SECTION
   ═══════════════════════════════════════════ */
.stats-section {
    padding: 0;
    position: relative;
    z-index: 3;
    margin-top: -80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.stat-item {
    padding: 48px 32px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.stat-item:hover {
    background: rgba(200, 164, 90, 0.05);
}

.stat-item h3 {
    font-size: 2.8rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

/* ═══════════════════════════════════════════
   SECTION DEFAULTS
   ═══════════════════════════════════════════ */
.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--primary);
}

.section-title h2 {
    font-size: 2.6rem;
    position: relative;
    display: inline-block;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.section-title p {
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ═══════════════════════════════════════════
   SERVICES / SOLUTIONS GRID
   ═══════════════════════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    padding: 48px 36px;
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 24px;
    display: inline-flex;
    width: 72px;
    height: 72px;
    align-items: center;
    justify-content: center;
    background: rgba(200, 164, 90, 0.08);
    border-radius: 16px;
    transition: var(--transition);
}

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

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.service-card a:hover {
    gap: 10px;
}

/* ═══════════════════════════════════════════
   WHY US SECTION
   ═══════════════════════════════════════════ */
.why-us-section {
    background-color: var(--grey-light);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: center;
}

.why-us-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.why-us-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.why-us-img:hover img {
    transform: scale(1.03);
}

.why-us-content h2 {
    font-size: 2.4rem;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.why-us-content>p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 20px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 36px;
}

.feature-item {
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-item:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.feature-item h4 {
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-size: 1rem;
}

.feature-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════
   TRUST BADGES / GUARANTEES
   ═══════════════════════════════════════════ */
.trust-section {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.trust-item {
    padding: 32px 20px;
    border-radius: var(--radius);
    border: 1px solid var(--dark-border);
    transition: var(--transition);
}

.trust-item:hover {
    border-color: var(--primary);
    background: rgba(200, 164, 90, 0.03);
}

.trust-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.trust-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.trust-item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════ */
.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 164, 90, 0.08), transparent);
    top: -200px;
    right: -100px;
    border-radius: 50%;
}

.cta-section h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════
   SUB-PAGE HERO (reuses .hero)
   ═══════════════════════════════════════════ */
.hero.sub-hero {
    height: 60vh;
    min-height: 450px;
}

.hero.sub-hero::after {
    height: 120px;
}

/* ═══════════════════════════════════════════
   TIMELINE
   ═══════════════════════════════════════════ */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), rgba(200, 164, 90, 0.2));
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-marker {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    margin-left: calc(50% - 28px);
    margin-right: calc(50% - 28px);
    box-shadow: 0 4px 20px rgba(200, 164, 90, 0.2);
}

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

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 28px 32px;
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    max-width: calc(50% - 60px);
    position: absolute;
}

.timeline-item:nth-child(odd) .timeline-content {
    left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    right: 0;
    text-align: left;
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.timeline-year {
    display: inline-block;
    background: var(--primary);
    color: var(--dark);
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.timeline-content h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════
   PROCESS STEPS
   ═══════════════════════════════════════════ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--dark-border);
    transition: var(--transition);
    position: relative;
}

.process-step:hover {
    border-color: var(--primary);
    background: rgba(200, 164, 90, 0.03);
    transform: translateY(-4px);
}

.process-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 16px;
    line-height: 1;
}

.process-step:hover .process-number {
    opacity: 0.7;
}

.process-step h4 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.process-step p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════
   QUICK CONTACT CARDS
   ═══════════════════════════════════════════ */
.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.quick-contact-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: block;
}

.quick-contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.qc-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(200, 164, 90, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 16px;
    transition: var(--transition);
}

.quick-contact-card:hover .qc-icon {
    background: var(--primary);
    color: var(--dark);
}

.quick-contact-card h4 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--text-main);
}

.quick-contact-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   CONTACT LAYOUT (Improved)
   ═══════════════════════════════════════════ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: start;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 28px;
}

.contact-trust-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.contact-trust-item i {
    color: var(--primary);
    font-size: 1rem;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 64px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 28px;
    font-size: 1.05rem;
    position: relative;
    padding-bottom: 12px;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 14px;
    line-height: 1.7;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-col li a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-col li a:hover {
    color: var(--primary);
}

.footer-col li a:hover::before {
    width: 16px;
}

.footer-col .contact-line {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-col .contact-line i {
    color: var(--primary);
    margin-top: 4px;
    font-size: 0.9rem;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--dark-border);
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ═══════════════════════════════════════════
   PRODUCT TABS
   ═══════════════════════════════════════════ */
.category-nav {
    background: var(--white);
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 80px;
    z-index: 900;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.product-tabs-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}

.tabs-arrow {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--white);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--transition);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.tabs-arrow:hover {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
    box-shadow: var(--shadow-gold);
}

.tabs-arrow.hidden {
    opacity: 0;
    pointer-events: none;
}

.product-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 4px 12px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
    flex: 1;
    min-width: 0;
}

.product-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    padding: 10px 22px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.82rem;
    white-space: nowrap;
    transition: var(--transition);
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary-dark);
    background: rgba(200, 164, 90, 0.05);
}

.tab-btn.active {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

/* ═══════════════════════════════════════════
   SHOWCASE CARDS
   ═══════════════════════════════════════════ */
.showcase-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.06);
    height: 100%;
}

.showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.showcase-img {
    height: 280px;
    overflow: hidden;
    position: relative;
    background: var(--grey-light);
}

.showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.showcase-card:hover .showcase-img img {
    transform: scale(1.15);
}

.featured-img {
    overflow: hidden;
}

.featured-img img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.featured-product:hover .featured-img img {
    transform: scale(1.15);
}

.showcase-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: var(--dark);
    padding: 6px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
}

.showcase-content {
    padding: 28px;
}

.showcase-content h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.showcase-content>p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.showcase-features {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    padding: 16px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.feature-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.feature-icon-item i {
    color: var(--primary);
    font-size: 1rem;
}

/* ═══════════════════════════════════════════
   FEATURED PRODUCT (Alternating)
   ═══════════════════════════════════════════ */
.featured-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--dark);
    color: var(--white);
    margin-bottom: 48px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.featured-product.reverse {
    direction: rtl;
}

.featured-product.reverse .featured-content {
    direction: ltr;
}

.featured-img {
    height: 520px;
    overflow: hidden;
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.featured-product:hover .featured-img img {
    transform: scale(1.05);
}

.featured-content {
    padding: 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content .badge {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.featured-content h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.featured-content>p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-size: 1rem;
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 48px;
    animation: modalIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-muted);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: var(--transition);
}

.close-modal:hover {
    background: var(--grey-light);
    color: var(--text-main);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.modal-grid img {
    border-radius: var(--radius);
}

.full-specs {
    display: none;
}

/* ═══════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
}

.contact-info-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid transparent;
}

.contact-info-card:hover {
    background: var(--grey-light);
    border-color: rgba(0, 0, 0, 0.04);
}

.contact-info-card i {
    font-size: 1.2rem;
    color: var(--primary);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 164, 90, 0.08);
    border-radius: 10px;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-form {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
}

.contact-form h3 {
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.contact-form>p {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 0.92rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    background: var(--white);
    color: var(--text-main);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(200, 164, 90, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

/* ═══════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════ */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

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

/* ═══════════════════════════════════════════
   FLOATING ICONS
   ═══════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 96px;
    /* Moved up to make room for instagram */
    left: 28px;
    z-index: 999;
    transform: translateZ(0);
}

.whatsapp-float a {
    background: #25d366;
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float a:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.instagram-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 999;
    transform: translateZ(0);
}

.instagram-float a {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(220, 39, 67, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-float a:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px rgba(220, 39, 67, 0.4);
}

/* BACK TO TOP */
#backToTop {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: var(--dark);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    z-index: 999;
    transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease, transform 0.3s ease;
    border: 1px solid var(--dark-border);
    transform: translateZ(0);
}

#backToTop:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

#backToTop.visible {
    visibility: visible;
    opacity: 1;
}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

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

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

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

/* Shimmer effect on hover for gold elements */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.shimmer-hover:hover {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    background-size: 200% auto;
    animation: shimmer 2s linear infinite;
}

/* ═══════════════════════════════════════════
   REFERENCE PAGE GRID
   ═══════════════════════════════════════════ */
.ref-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* ─── Logo Band (Kayan Referans Logoları) ─── */
.logo-band {
    padding: 48px 0;
    background: var(--white);
    overflow: hidden;
}

.logo-band-title {
    text-align: center;
    margin-bottom: 36px;
}

.logo-band-title h3 {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.logo-slider {
    display: flex;
    animation: logoScroll 30s linear infinite;
    width: max-content;
}

.logo-slider:hover {
    animation-play-state: paused;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 30px;
}

.logo-track img {
    height: 48px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.logo-track img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

@keyframes logoScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-product {
        grid-template-columns: 1fr;
    }

    .featured-content {
        padding: 48px;
    }

    .featured-img {
        height: 360px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .modal-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        height: 64px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }

    body {
        padding-top: 64px;
    }

    .container {
        padding: 0 16px;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-lang-switcher {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: 0;
        top: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1001;
        justify-content: center;
        gap: 4px;
        padding: 24px;
        transform: translateX(-100%);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        list-style: none;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 12px 20px;
        display: block;
        border-radius: 12px;
    }

    /* Mobile dropdown - inline olarak goster */
    .nav-dropdown>a::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 16px;
        min-width: auto;
        background: transparent;
    }

    .dropdown-menu li a {
        font-size: 1rem;
        padding: 10px 20px;
        color: var(--text-muted);
    }

    .nav-links a:hover,
    .nav-links a.active-page {
        background: rgba(200, 164, 90, 0.08);
    }

    .nav-links .nav-cta {
        margin-top: 8px;
        padding: 14px 24px !important;
    }

    /* Lang switcher in mobile menu */
    .nav-links .lang-switcher {
        margin-left: 0;
        margin-top: 16px;
        background: var(--grey-light);
        border-radius: 10px;
        padding: 5px;
        justify-content: center;
    }

    .nav-links .lang-btn {
        font-size: 0.9rem;
        padding: 10px 24px;
    }

    /* Hero */
    .hero {
        height: auto;
        min-height: auto;
        padding: 110px 0 90px;
        text-align: center;
    }

    .hero::after {
        height: 80px;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 0.92rem;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.7;
    }

    .hero-label {
        justify-content: center;
        font-size: 0.75rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .btn-primary,
    .btn-outline,
    .btn-dark {
        text-align: center;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.82rem;
    }

    /* Stats */
    .stats-section {
        margin-top: -40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        border-radius: var(--radius);
        gap: 0;
    }

    .stat-item {
        padding: 24px 12px;
    }

    .stat-item h3 {
        font-size: 1.6rem;
    }

    .stat-item p {
        font-size: 0.7rem;
    }

    .stat-item:nth-child(odd)::after {
        display: block;
    }

    .stat-item:nth-child(even)::after {
        display: none;
    }

    /* Grids */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-col .contact-line {
        justify-content: center;
        text-align: left;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .trust-item {
        padding: 24px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .quick-contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .quick-contact-card {
        padding: 20px 12px;
    }

    /* Section text */
    .section-title h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .section-title p {
        font-size: 0.9rem;
    }

    .section-label {
        font-size: 0.72rem;
    }

    .section-padding {
        padding: 48px 0;
    }

    /* Why Us */
    .why-us-grid {
        gap: 32px;
    }

    .why-us-content h2 {
        font-size: 1.6rem;
    }

    .why-us-content>p {
        font-size: 0.92rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 24px;
    }

    .feature-item {
        padding: 16px;
    }

    .feature-item h4 {
        font-size: 0.88rem;
    }

    .feature-item p {
        font-size: 0.8rem;
    }

    /* Service cards */
    .service-card {
        padding: 28px 20px;
    }

    .service-card i {
        font-size: 1.8rem;
    }

    .service-card h3 {
        font-size: 1.05rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    /* Showcase cards */
    .showcase-img {
        height: 200px;
    }

    .showcase-content {
        padding: 20px;
    }

    .showcase-content h3 {
        font-size: 1.05rem;
    }

    .showcase-features {
        gap: 8px;
    }

    /* Featured product */
    .featured-content {
        padding: 28px 20px;
    }

    .featured-content h2 {
        font-size: 1.5rem;
    }

    .featured-content>p {
        font-size: 0.88rem;
    }

    .featured-img {
        height: 240px;
    }

    /* Timeline mobile: single column */
    .timeline::before {
        left: 20px;
    }

    .timeline-marker {
        margin-left: 0;
        margin-right: 0;
        width: 40px;
        height: 40px;
        position: absolute;
        left: 0;
        font-size: 0.85rem;
    }

    .timeline-item {
        padding-left: 56px;
        flex-direction: row !important;
    }

    .timeline-item:nth-child(even) {
        text-align: left;
    }

    .timeline-content {
        position: relative !important;
        max-width: 100% !important;
        left: auto !important;
        right: auto !important;
    }

    .timeline-content h3 {
        font-size: 1rem;
    }

    .timeline-content p {
        font-size: 0.85rem;
    }

    .hero.sub-hero {
        height: auto;
        min-height: auto;
        padding: 100px 0 70px;
    }

    .hero.sub-hero h1 {
        font-size: 1.7rem;
    }

    .hero.sub-hero p {
        font-size: 0.88rem;
    }

    /* CTA */
    .cta-section {
        padding: 48px 0;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section p {
        font-size: 0.9rem;
    }

    .page-hero {
        padding: 100px 0 60px;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .category-nav {
        top: 64px;
        padding: 10px 0;
    }

    .tabs-arrow {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }

    .tab-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    /* Modal */
    .modal-content {
        padding: 20px;
        margin: 16px;
        border-radius: 16px;
    }

    .modal-content h2 {
        font-size: 1.3rem;
    }

    /* Contact */
    .contact-form {
        padding: 24px 16px;
    }

    .contact-form h3 {
        font-size: 1.2rem;
    }

    .contact-form form>div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    /* WhatsApp and Instagram float */
    .whatsapp-float {
        bottom: 74px;
        left: 16px;
    }

    .instagram-float {
        bottom: 16px;
        left: 16px;
    }

    .whatsapp-float a,
    .instagram-float a {
        width: 50px;
        height: 50px;
        font-size: 22px;
        border-radius: 14px;
    }

    #backToTop {
        bottom: 16px;
        right: 28px;
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }

    /* Footer */
    footer {
        padding-top: 48px;
    }

    .footer-bottom {
        font-size: 0.78rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 0.85rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item h3 {
        font-size: 1.4rem;
    }

    .stat-item p {
        font-size: 0.65rem;
        letter-spacing: 0.8px;
    }

    .quick-contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-trust-row {
        flex-direction: column;
        gap: 12px;
    }

    .contact-form .form-group input,
    .contact-form .form-group select,
    .contact-form .form-group textarea {
        font-size: 16px;
        /* prevent iOS zoom */
    }

    .section-title h2 {
        font-size: 1.4rem;
    }

    .why-us-content h2 {
        font-size: 1.4rem;
    }

    .featured-content h2 {
        font-size: 1.3rem;
    }

    .hero.sub-hero {
        padding: 90px 0 60px;
    }

    .hero.sub-hero h1 {
        font-size: 1.5rem;
    }
}

/* Form Status Mesajları */
.form-status {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    border-left: 4px solid;
}

.form-status-success {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border-left-color: #16a34a;
}

.form-status-error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border-left-color: #dc2626;
}

/* Inline validation & visual error state */
.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group.is-invalid input,
.form-group.is-invalid textarea {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.form-group.is-valid input,
.form-group.is-valid textarea {
    border-color: #16a34a !important;
}

.form-group .validation-icon {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    font-size: 1rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.form-group.is-valid .validation-icon.valid {
    opacity: 1;
    color: #16a34a;
}

.form-group.is-invalid .validation-icon.invalid {
    opacity: 1;
    color: #dc2626;
}

.field-error {
    display: block;
    color: #dc2626;
    font-size: 0.82rem;
    margin-top: 6px;
    min-height: 1em;
}

/* Character counter */
.char-counter {
    text-align: right;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 6px;
    transition: color 0.2s ease;
}

.char-counter.near-limit {
    color: #f59e0b;
}

.char-counter.at-limit {
    color: #dc2626;
    font-weight: 600;
}

/* Success check animation */
.success-check {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    animation: successPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.success-check i {
    color: #fff;
    font-size: 1.8rem;
    animation: checkDraw 0.4s ease 0.2s both;
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    60% {
        transform: scale(1.15);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

@keyframes checkDraw {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }

    100% {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

.form-status-success.with-animation {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 18px;
}