/*
Theme Name: Remelsan
Theme URI: https://remelsan.com
Author: Remelsan
Author URI: https://remelsan.com
Description: Remelsan Güvenlik Sistemleri - Yangın Algılama, Güvenlik Kamerası, Hırsız Alarm, Kartlı Geçiş ve Network Yapısal Kablolama
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: remelsan
Tags: business, corporate, security, one-page
*/

/* =============================================
   CSS VARIABLES
============================================= */
:root {
    --teal: #11b497;
    --teal-dark: #0d9279;
    --teal-light: #1dcfb0;
    --teal-pale: #e8faf7;
    --black: #0a0a0a;
    --dark: #111111;
    --dark2: #1a1a1a;
    --dark3: #2a2a2a;
    --dark4: #3a3a3a;
    --gray: #6b7280;
    --gray-light: #f5f5f5;
    --gray-border: #e5e7eb;
    --white: #ffffff;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius: 10px;
    --radius-sm: 6px;
    --radius-lg: 14px;
    --transition: 0.25s ease;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
}

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

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

body {
    font-family: var(--font);
    background: var(--white);
    color: var(--dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: var(--font);
    border: none;
    outline: none;
}

input, textarea, select {
    font-family: var(--font);
    outline: none;
}

/* =============================================
   TYPOGRAPHY
============================================= */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

h1 { font-size: clamp(28px, 5vw, 42px); }
h2 { font-size: clamp(22px, 4vw, 32px); }
h3 { font-size: clamp(16px, 2.5vw, 20px); }

p { line-height: 1.7; }

.text-teal { color: var(--teal); }
.text-white { color: var(--white); }
.text-gray { color: var(--gray); }

/* =============================================
   LAYOUT HELPERS
============================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section-dark {
    background: var(--dark);
}

.section-gray {
    background: var(--gray-light);
}

.section-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--teal);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-title {
    font-size: clamp(24px, 4vw, 34px);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.section-title em {
    color: var(--teal);
    font-style: normal;
}

.section-title--light {
    color: var(--white);
}

.section-sub {
    font-size: 15px;
    color: var(--gray);
    max-width: 520px;
    margin-bottom: 48px;
    line-height: 1.7;
}

.section-sub--light {
    color: #9ca3af;
}

/* =============================================
   BUTTONS
============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--teal-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.25);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

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

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

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

.btn-white:hover {
    background: var(--teal-pale);
    color: var(--teal-dark);
}

/* =============================================
   HEADER & NAV
============================================= */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background:;
    transition: all var(--transition);
}

#site-header.scrolled {
    background-color: #111111 !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 24px;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    width: 34px;
    height: 34px;
    background: var(--teal);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2.5;
}

.logo-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

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

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

.main-nav a {
    font-size: 13px;
    color: #9ca3af;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    font-weight: 500;
}

.main-nav a:hover,
.main-nav a.current-menu-item {
    color: var(--white);
    background: rgba(255,255,255,0.06);
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.header-tel {
    font-size: 13px;
    color: var(--teal);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-tel svg {
    width: 14px;
    height: 14px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 2.5;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
    display: block;
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--dark2);
    padding: 16px 24px 24px;
    border-top: 0.5px solid var(--dark3);
    z-index: 999;
}

.mobile-nav.open {
    display: block;
}

.mobile-nav a {
    display: block;
    font-size: 15px;
    color: #9ca3af;
    padding: 12px 0;
    border-bottom: 0.5px solid var(--dark3);
    font-weight: 500;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    color: var(--white);
}

/* =============================================
   HERO SECTION
============================================= */
#hero {
    background: var(--dark);
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(17,180,151,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(17,180,151,0.12);
    border: 0.5px solid rgba(17,180,151,0.3);
    color: var(--teal);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero-tag-dot {
    width: 7px;
    height: 7px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-size: clamp(30px, 5vw, 48px);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-title em {
    color: var(--teal);
    font-style: normal;
}

.hero-desc {
    font-size: 15px;
    color: #9ca3af;
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 32px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    min-width: 220px;
}

.hero-stat {
    background: var(--dark2);
    border: 0.5px solid var(--dark3);
    border-radius: var(--radius);
    padding: 18px 16px;
    text-align: center;
}

.hero-stat-number {
    font-size: 26px;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 6px;
}

.hero-stat-label {
    font-size: 11px;
    color: var(--gray);
    font-weight: 500;
}

/* Hero Scroll Indicator */
.hero-scroll {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 0.5px solid var(--dark3);
}

.hero-scroll-line {
    width: 40px;
    height: 1px;
    background: var(--teal);
}

.hero-scroll-text {
    font-size: 12px;
    color: var(--gray);
}

/* =============================================
   TRUST BAR
============================================= */
.trust-bar {
    background: var(--teal);
    padding: 18px 0;
}

.trust-inner {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--white);
    font-weight: 500;
    padding: 6px 28px 6px 0;
    margin-right: 28px;
    border-right: 1px solid rgba(255,255,255,0.25);
}

.trust-item:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}

.trust-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2.5;
    flex-shrink: 0;
}

/* =============================================
   SERVICES SECTION
============================================= */
#services {
    padding: 90px 0;
    background: var(--gray-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-card {
    background: var(--white);
    border: 0.5px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--teal);
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}

.service-card:hover {
    border-color: var(--teal);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

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

.service-icon {
    width: 52px;
    height: 52px;
    background: var(--teal-pale);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background var(--transition);
}

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

.service-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 2;
    transition: stroke var(--transition);
}

.service-card:hover .service-icon svg {
    stroke: var(--white);
}

.service-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.service-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-link {
    font-size: 13px;
    color: var(--teal);
    font-weight: 600;
    display: inline-flex;
    align-items: right;
    gap: 5px;
    transition: gap var(--transition);
}

.service-link:hover {
    gap: 10px;
    color: var(--teal-dark);
}

/* =============================================
   WHY SECTION
============================================= */
#why {
    padding: 90px 0;
    background: var(--dark);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.why-item {
    border: 0.5px solid var(--dark3);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: border-color var(--transition);
}

.why-item:hover {
    border-color: var(--teal);
}

.why-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 10px;
}

.why-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.why-desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
}

/* =============================================
   PROJECTS SECTION
============================================= */
#projects {
    padding: 90px 0;
    background: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.project-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 0.5px solid var(--gray-border);
    transition: all var(--transition);
}

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

.project-image {
    height: 180px;
    background: var(--dark2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.project-image-placeholder svg {
    width: 48px;
    height: 48px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 1.5;
    opacity: 0.7;
}

.project-info {
    padding: 20px;
    background: var(--white);
}

.project-tag {
    display: inline-block;
    font-size: 11px;
    color: var(--teal);
    font-weight: 700;
    background: var(--teal-pale);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.project-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.project-location {
    font-size: 12px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.project-location svg {
    width: 12px;
    height: 12px;
    stroke: var(--gray);
    fill: none;
    stroke-width: 2;
}

/* =============================================
   PROCESS SECTION
============================================= */
#process {
    padding: 90px 0;
    background: var(--gray-light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    position: relative;
    margin-top: 48px;
}

.process-step {
    text-align: center;
    padding: 20px 24px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -1px;
    width: 2px;
    height: 40px;
    background: var(--gray-border);
}

.step-circle {
    width: 52px;
    height: 52px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
}

.step-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.6;
}

/* =============================================
   CTA SECTION
============================================= */
#cta {
    padding: 90px 0;
    background: var(--teal);
}

.cta-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   CONTACT SECTION
============================================= */
#contact {
    padding: 90px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-item-icon {
    width: 42px;
    height: 42px;
    background: var(--teal-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 2;
}

.contact-item-label {
    font-size: 11px;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.contact-item-value {
    font-size: 14px;
    color: var(--dark);
    font-weight: 600;
}

/* Contact Form */
.contact-form {
    background: var(--gray-light);
    border-radius: var(--radius-lg);
    padding: 36px;
}

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

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

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 7px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--white);
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--dark);
    transition: border-color var(--transition);
    font-family: var(--font);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(17,180,151,0.1);
}

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

.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--teal);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition);
    font-family: var(--font);
}

.form-submit:hover {
    background: var(--teal-dark);
}

/* =============================================
   FOOTER
============================================= */
#site-footer {
    background: var(--dark);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr repeat(3, 1fr);
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 0.5px solid var(--dark3);
}

.footer-brand p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
    margin-top: 14px;
    max-width: 240px;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    background: var(--dark2);
    border: 0.5px solid var(--dark3);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--teal);
    border-color: var(--teal);
}

.footer-social svg {
    width: 16px;
    height: 16px;
    stroke: var(--gray);
    fill: none;
    stroke-width: 2;
}

.footer-social a:hover svg {
    stroke: var(--white);
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 0.3px;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 10px;
    transition: color var(--transition);
}

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

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 12px;
    color: #4b5563;
}

.footer-certs {
    display: flex;
    gap: 8px;
}

.cert-badge {
    background: var(--dark2);
    border: 0.5px solid var(--dark3);
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 11px;
    color: #9ca3af;
    font-weight: 600;
}

/* =============================================
   WHATSAPP FLOATING BUTTON
============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all var(--transition);
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

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

/* =============================================
   BACK TO TOP
============================================= */
.back-to-top {
    position: fixed;
    bottom: 96px;
    right: 28px;
    z-index: 999;
    width: 40px;
    height: 40px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: all;
}

.back-to-top svg {
    width: 18px;
    height: 18px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2.5;
}

/* =============================================
   PAGE TEMPLATES
============================================= */

/* Hizmet Detay Sayfası */
.page-hero {
    background: var(--dark);
    padding: 120px 0 60px;
}

.page-hero-title {
    font-size: clamp(28px, 5vw, 48px);
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero-desc {
    font-size: 16px;
    color: #9ca3af;
 max-width: 1200px; 
    line-height: 1.7;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--teal);
}

.breadcrumb span {
    color: white;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.blog-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 0.5px solid var(--gray-border);
    transition: all var(--transition);
    background: var(--white);
}

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

.blog-image {
    height: 200px;
    background: var(--gray-light);
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.blog-info {
    padding: 24px;
}

.blog-meta {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-more {
    font-size: 13px;
    color: var(--teal);
    font-weight: 600;
}

/* =============================================
   ANIMATIONS
============================================= */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .main-nav { display: none; }
    .hamburger { display: flex; }
    .header-tel { display: none; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: repeat(4, 1fr); }
    .trust-item { border-right: none; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .process-step::after { display: none; }
}

@media (max-width: 480px) {
    .hero-stats { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
    .cta-btns { flex-direction: column; align-items: center; }
}
