/* ================================================
   ADALYA ADR - Modern Design System
   Tehlikeli Madde Guvenlik Danismanligi
   ================================================ */

/* ---- CSS Variables ---- */
:root {
    --primary: #1a2a4a;
    --primary-light: #2c4070;
    --accent: #e8913a;
    --accent-hover: #d47e2e;
    --accent-light: rgba(232, 145, 58, 0.1);
    --text: #2d3748;
    --text-light: #718096;
    --text-muted: #a0aec0;
    --bg: #ffffff;
    --bg-light: #f7f8fc;
    --bg-dark: #0f1b33;
    --bg-card: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

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

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

.hero img,
.footer img,
.main-header img,
.gallery-item img,
.content-image img,
.about-home-image img {
    display: block;
}

ul { list-style: none; }
.content-text ul { list-style: disc; }
.content-text ol { list-style: decimal; }

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

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 145, 58, 0.35);
}

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

.btn-outline:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

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

.btn-white:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

/* ================================================
   HEADER / NAVIGATION
   ================================================ */

/* -- Top Bar -- */
.top-bar {
    background: var(--primary);
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.top-bar-left {
    display: flex;
    gap: 24px;
    align-items: center;
}

.top-bar-left a {
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-left a:hover { color: var(--accent); }

.top-bar-right {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

/* -- Main Header -- */
.main-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: var(--transition);
}

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

.logo img {
    height: 56px;
    width: auto;
}

/* -- Desktop Nav -- */
.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav a {
    padding: 6px 10px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-sm);
    position: relative;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent);
    background: var(--accent-light);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.main-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
}

.nav-cta {
    margin-left: 8px;
    padding: 10px 20px;
    font-size: 0.82rem;
    white-space: nowrap;
}

/* -- Hamburger -- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 4px;
    transition: var(--transition);
}

/* -- Mobile Nav -- */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-nav-overlay.open { opacity: 1; }

.mobile-nav {
    display: none;
    position: fixed;
    top: 0; right: -300px;
    width: 300px; height: 100%;
    background: #fff;
    z-index: 1000;
    padding: 80px 24px 24px;
    box-shadow: var(--shadow-lg);
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-nav.open { right: 0; }

.mobile-nav a {
    display: block;
    padding: 14px 16px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-sm);
    border-bottom: 1px solid var(--border);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--accent);
    background: var(--accent-light);
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text);
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.mobile-close:hover { background: var(--bg-light); }

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary);
}

.hero-slider {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}

.hero-slide {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    background-size: cover;
    background-position: center;
}

.hero-slide.active { opacity: 1; }

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(15, 27, 51, 0.85) 0%, rgba(26, 42, 74, 0.7) 50%, rgba(232, 145, 58, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 40px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 145, 58, 0.15);
    border: 1px solid rgba(232, 145, 58, 0.3);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3rem;
    color: #fff;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

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

.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    line-height: 1.8;
}

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

/* -- Hero Dots -- */
.hero-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.hero-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

/* ================================================
   SERVICES SECTION (Home)
   ================================================ */
.services-section {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

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

/* -- Service Cards -- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary-light));
    opacity: 0;
    transition: var(--transition);
}

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

.service-card:hover::before { opacity: 1; }

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

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent);
}

.service-card:hover .service-icon {
    background: var(--accent);
}

.service-card:hover .service-icon svg {
    color: #fff;
}

.service-card h4 {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

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

/* ================================================
   ABOUT / INFO SECTION (Home)
   ================================================ */
.about-home-section {
    padding: 100px 0;
}

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

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

.about-home-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-home-image:hover img {
    transform: scale(1.03);
}

.about-home-image .accent-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--accent);
    color: #fff;
    padding: 16px 24px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 8px 24px rgba(232, 145, 58, 0.4);
}

.about-home-content .section-label {
    justify-content: flex-start;
}

.about-home-content .section-label::before { display: none; }

.about-home-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-home-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1rem;
}

.about-home-list {
    margin: 24px 0 32px;
}

.about-home-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-weight: 500;
    color: var(--text);
}

.about-home-list li svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* ================================================
   CTA / RANDEVU BANNER
   ================================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(232, 145, 58, 0.1);
    border-radius: 50%;
}

.cta-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.cta-banner h3 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.cta-banner p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
}

/* ================================================
   PAGE HEADER (inner pages)
   ================================================ */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(232, 145, 58, 0.08);
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}

.page-hero h1 {
    color: #fff;
    font-size: 2.4rem;
    position: relative;
    z-index: 1;
}

.page-hero .breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 12px;
    position: relative;
    z-index: 1;
}

.page-hero .breadcrumb a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.page-hero .breadcrumb a:hover { color: var(--accent); }

.page-hero .breadcrumb span {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
}

.page-hero .breadcrumb .current {
    color: var(--accent);
    font-weight: 500;
    font-size: 0.9rem;
}

/* ================================================
   CONTENT PAGES
   ================================================ */
.content-section {
    padding: 80px 0;
}

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

.content-grid.full {
    grid-template-columns: 1fr;
}

.content-text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text);
}

.content-text p {
    margin-bottom: 18px;
    color: var(--text);
}

.content-text strong, .content-text b {
    color: var(--primary);
    font-weight: 700;
}

.content-text ul, .content-text ol {
    margin: 20px 0;
    padding-left: 28px;
}

.content-text li {
    margin-bottom: 10px;
    list-style: disc;
    padding-left: 4px;
}

.content-text img {
    border-radius: var(--radius);
    margin: 24px 0;
    height: auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.content-text h1 {
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--primary);
    padding-bottom: 12px;
    border-bottom: 3px solid var(--accent);
    display: inline-block;
}

.content-text h2 {
    font-size: 1.5rem;
    margin-top: 36px;
    margin-bottom: 16px;
    color: var(--primary);
    position: relative;
    padding-left: 16px;
}

.content-text h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background: var(--accent);
    border-radius: 4px;
}

.content-text h3 {
    font-size: 1.25rem;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--primary-light);
}

.content-text h4,
.content-text h5,
.content-text h6 {
    margin-top: 24px;
    margin-bottom: 10px;
    color: var(--primary);
}

.content-text blockquote {
    border-left: 4px solid var(--accent);
    background: var(--accent-light);
    padding: 20px 24px;
    margin: 24px 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--text);
}

.content-text table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.content-text table td,
.content-text table th {
    padding: 12px 16px;
    border: 1px solid var(--border);
    text-align: left;
    font-size: 0.92rem;
}

.content-text table th {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    border-color: var(--primary-light);
}

.content-text table tr:nth-child(even) td {
    background: var(--bg-light);
}

.content-text table tr:hover td {
    background: var(--accent-light);
}

.content-text a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(232,145,58,0.3);
    transition: var(--transition);
}

.content-text a:hover {
    color: var(--accent-hover);
    border-bottom-color: var(--accent);
}

.content-text span,
.content-text div,
.content-text font {
    line-height: inherit;
}

.content-text br {
    display: block;
    content: "";
    margin-top: 4px;
}

.content-text > *:first-child {
    margin-top: 0;
}

.content-text hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    margin: 36px 0;
    border-radius: 2px;
}

.content-text ol {
    list-style: decimal;
    counter-reset: none;
}

.content-text ol > li {
    list-style: decimal;
    padding-left: 4px;
}

.content-text ul > li::marker {
    color: var(--accent);
}

.content-text ol > li::marker {
    color: var(--accent);
    font-weight: 700;
}

.content-text h3 strong,
.content-text h2 strong,
.content-text h1 strong {
    color: inherit;
}

/* Full-width content images */
.content-text p > img[style*="width:100%"],
.content-text p > img[style*="width: 100%"],
.content-text > p > img:only-child {
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    margin: 24px 0;
}

/* Medium content images */
.content-text img[style*="max-width:500px"] {
    display: block;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* Small inline icons (cert badges etc) */
.content-text img[style*="vertical-align:middle"] {
    display: inline-block;
    box-shadow: none;
}

/* Override CKEditor inline color styles */
.content-text [style*="color:#0d0d0d"],
.content-text [style*="color: #0d0d0d"],
.content-text [style*="color:rgb(13, 13, 13)"] {
    color: var(--primary) !important;
}

/* Better spacing for text next to inline icons */
.content-text p:has(img[style*="vertical-align:middle"]) {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

/* Convert br-separated text lines (after h3) into styled list items */
.content-text h3 + p,
.content-text h3 + * + p {
    padding-left: 8px;
}

/* Style br-separated lines as list items with CSS */
.content-text h3 ~ p br {
    display: block;
    content: "";
    margin-top: 12px;
}

/* First heading in content - no top margin */
.content-text > h1:first-child,
.content-text > h2:first-child,
.content-text > h3:first-child {
    margin-top: 0;
}

/* Empty paragraphs from CKEditor - reduce spacing */
.content-text p:empty,
.content-text p:has(> br:only-child) {
    margin-bottom: 8px;
}

/* Better blockquote from CKEditor */
.content-text blockquote p {
    margin-bottom: 8px;
}
.content-text blockquote p:last-child {
    margin-bottom: 0;
}

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

.content-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.content-image:hover img {
    transform: scale(1.03);
}

/* ================================================
   GALLERY / REFERENCES
   ================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    padding: 80px 0;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(15, 27, 51, 0.85));
    padding: 24px 16px 16px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}

.gallery-item .overlay h5 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
}

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

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

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(232, 145, 58, 0.1);
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon svg {
    color: var(--accent);
    width: 22px;
    height: 22px;
}

.contact-card h5 {
    margin-bottom: 6px;
    font-size: 1rem;
}

.contact-card p, .contact-card a {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.6;
}

.contact-card a:hover { color: var(--accent); }

/* -- Contact Form -- */
.contact-form-modern {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.contact-form-modern h3 {
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font);
    color: var(--text);
    background: var(--bg-light);
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(232, 145, 58, 0.1);
    background: #fff;
}

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

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

.success-message {
    text-align: center;
    padding: 48px 32px;
    background: #f0fdf4;
    border-radius: var(--radius-lg);
    border: 1px solid #bbf7d0;
}

.success-message svg {
    color: #22c55e;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

.success-message h3 {
    color: #166534;
    margin-bottom: 8px;
}

.success-message p {
    color: #15803d;
}

/* -- Map -- */
.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 48px;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.92rem;
    line-height: 1.7;
}

.footer-brand .logo-footer {
    height: 48px;
    width: auto;
    border-radius: var(--radius);
    padding: 8px;
    background: rgba(255,255,255,0.08);
    opacity: 0.9;
}

.footer h5 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '\203A';
    color: var(--accent);
    font-size: 1.1rem;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.footer-contact svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
    width: 18px;
    height: 18px;
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
}

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

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

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

.footer-bottom a:hover {
    text-decoration: underline;
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

/* ================================================
   SCROLL TO TOP
   ================================================ */
.scroll-top-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(232, 145, 58, 0.4);
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    border: none;
    z-index: 99;
}

.scroll-top-btn.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(232, 145, 58, 0.5);
}

/* ================================================
   ABOUT PAGE
   ================================================ */
.about-page {
    padding: 80px 0;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: start;
}

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

.about-intro-image img {
    width: 100%;
    height: auto;
    min-height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-intro-image:hover img {
    transform: scale(1.03);
}

.about-experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--accent);
    color: #fff;
    padding: 16px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 8px 24px rgba(232, 145, 58, 0.4);
}

.about-experience-badge .badge-year {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.about-experience-badge .badge-text {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 2px;
}

.about-intro-content {
    padding-top: 8px;
}

.about-intro-content h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    color: var(--primary);
    position: relative;
    padding-bottom: 16px;
}

.about-intro-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
}

.about-intro-content .content-text {
    font-size: 0.95rem;
}

.about-intro-content .content-text p strong {
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 8px;
    color: var(--accent);
}

@media (max-width: 768px) {
    .about-intro {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .about-intro-image img {
        min-height: 250px;
    }
}

/* ================================================
   GOOGLE REVIEWS
   ================================================ */
.reviews-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 24px;
}

.reviews-header .section-label {
    justify-content: flex-start;
}

.reviews-header .section-label::before { display: none; }

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-card);
    padding: 16px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.reviews-summary .score {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.reviews-summary .stars { display: flex; gap: 2px; }

.star-icon {
    width: 18px;
    height: 18px;
    color: #f59e0b;
}

.reviews-summary .count {
    font-size: 0.85rem;
    color: var(--text-light);
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
}

.google-badge svg { flex-shrink: 0; }

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

.review-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.review-info h5 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.review-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.review-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ================================================
   FAQ / SSS SECTION
   ================================================ */
.faq-section {
    padding: 100px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    background: var(--bg-card);
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    gap: 16px;
    transition: var(--transition);
}

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

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--accent);
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .about-home-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .reviews-grid { grid-template-columns: 1fr; }
    .reviews-header { flex-direction: column; align-items: flex-start; }
    .main-nav, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .mobile-nav, .mobile-nav-overlay { display: block; }

    .hero { min-height: 500px; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    .hero-buttons { flex-direction: column; }

    .services-grid { grid-template-columns: 1fr; }
    .content-grid { grid-template-columns: 1fr; gap: 32px; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .page-hero { padding: 60px 0 40px; }
    .page-hero h1 { font-size: 1.8rem; }

    .cta-banner .container {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .top-bar-left { gap: 12px; flex-wrap: wrap; }
    .section-header h2 { font-size: 1.6rem; }

    .contact-form-modern { padding: 24px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    h1 { font-size: 1.8rem; }
    .hero { min-height: 420px; }
    .hero h1 { font-size: 1.6rem; }
    .top-bar { display: none; }
}

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* animations removed for reliability */

/* ================================================
   UTILITY HELPERS
   ================================================ */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
