/* =========================================
   Halıcıoğlu Ambalaj - Ana Stil Dosyası
   Mobile-First Responsive Design
   Renk Şeması: Beyaz + Altın Sarısı
   ========================================= */

/* --- CSS Reset & Variables --- */
:root {
    --gold: #C5A44D;
    --gold-dark: #A08635;
    --gold-light: #D4B966;
    --white: #FFFFFF;
    --cream: #F9F7F2;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --border: #E8E0D0;
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-md: rgba(0, 0, 0, 0.12);
    --font: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, 'Helvetica Neue', Arial, sans-serif;
    --max-width: 1200px;
    --header-height: 70px;
    --transition: 0.3s ease;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

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

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

a:hover {
    color: var(--gold-dark);
}

ul,
ol {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HEADER --- */
.site-header {
    background: transparent;
    border-bottom: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: none;
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}

.site-header.scrolled .logo-text,
.site-header.scrolled .main-nav a,
.site-header.scrolled .header-phone {
    color: var(--text);
}

.site-header.scrolled .main-nav a:hover,
.site-header.scrolled .main-nav a.active {
    color: var(--gold-dark);
}

.site-header.scrolled .hamburger span {
    background: var(--text);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    display: none;
    transition: color 0.4s ease;
}

/* --- NAV --- */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-nav a {
    display: block;
    padding: 8px 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 0;
    transition: all var(--transition);
    letter-spacing: 0.3px;
}

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

/* --- Hamburger Menü --- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 0;
    transition: all var(--transition);
}

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

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* --- Header Phone (Desktop) --- */
.header-phone {
    display: none;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: color 0.4s ease;
}

.header-phone svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    text-align: center;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: transparent;
    color: var(--gold);
    padding: 8px 24px;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
    border: 1px solid var(--gold);
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.5px;
}

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

.hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 35px;
    line-height: 1.8;
}

/* --- Butonlar --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: 0;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-gold:hover {
    background: var(--gold-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 164, 77, 0.35);
}

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

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

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

.btn-white:hover {
    background: var(--cream);
    color: var(--gold-dark);
    transform: translateY(-2px);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

/* --- SECTIONS --- */
.section {
    padding: 60px 0;
}

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

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

.section-title h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 12px auto 0;
    border-radius: 0;
}

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

/* --- Hizmet Kartları --- */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-card {
    background: var(--white);
    border-radius: 0;
    padding: 0;
    text-align: center;
    border: 1px solid var(--border);
    transition: all var(--transition);
    overflow: hidden;
}

.service-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.service-card-body {
    padding: 20px 20px 25px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-md);
    border-color: var(--gold);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.6rem;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text);
}

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

/* --- Hakkımızda Bölümü --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--gold-dark);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-image {
    border-radius: 0;
    overflow: hidden;
    border: 2px solid var(--border);
}

.about-image img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
}

/* --- Neden Biz --- */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.feature-text h4 {
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* --- CTA Bölüm --- */
.cta-section {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    padding: 50px 0;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

/* --- Page Header (iç sayfalar) --- */
.page-header {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.45) 100%), url('../images/hero2.jpg') center/cover no-repeat;
    padding: 130px 0 55px;
    text-align: center;
    border-bottom: 3px solid var(--gold);
}

.page-header h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
}

.page-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 0.9rem;
}

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

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

/* --- Hakkımızda Sayfa --- */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    color: var(--gold-dark);
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.about-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.mv-card {
    background: var(--white);
    border-radius: 0;
    padding: 30px;
    border: 1px solid var(--border);
    border-top: 4px solid var(--gold);
}

.mv-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--gold-dark);
}

.mv-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* --- Hizmetlerimiz Sayfa --- */
.services-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.service-page-card {
    background: var(--white);
    border-radius: 0;
    padding: 0;
    border: 1px solid var(--border);
    transition: all var(--transition);
    overflow: hidden;
}

.service-page-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
}

.service-page-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.service-page-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 25px var(--shadow);
    transform: translateY(-3px);
}

.service-page-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.service-page-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

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

/* --- Galeri --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.gallery-item {
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--cream);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    cursor: pointer;
    position: relative;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    color: #fff;
    padding: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    transform: translateY(100%);
    transition: transform var(--transition);
}

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

.gallery-placeholder {
    text-align: center;
    padding: 20px;
}

.gallery-placeholder .icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    opacity: 0.5;
}

.gallery-placeholder p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- İletişim --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-form-card {
    background: var(--white);
    border-radius: 0;
    padding: 30px;
    border: 1px solid var(--border);
}

.contact-form-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--gold-dark);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 0;
    font-size: 0.95rem;
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197, 164, 77, 0.15);
}

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

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

.form-message {
    padding: 14px 18px;
    border-radius: 0;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.form-message.success {
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #A5D6A7;
}

.form-message.error {
    background: #FFEBEE;
    color: #C62828;
    border: 1px solid #EF9A9A;
}

/* Honeypot - gizli spam alanı */
.form-honey {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--gold);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.info-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

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

.info-text a:hover {
    color: var(--gold);
}

.map-container {
    border-radius: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-top: 10px;
}

.map-container iframe {
    display: block;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0;
    font-size: 1.2rem;
    transition: all var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    transform: translateY(-3px);
}

/* --- FOOTER --- */
.site-footer {
    background: var(--text);
    color: rgba(255, 255, 255, 0.8);
    padding: 50px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 35px;
}

.footer-col h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-col p,
.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    line-height: 1.7;
}

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

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

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.92rem;
}

.footer-contact-item span:first-child {
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-credit a {
    color: var(--gold);
}

.footer-credit a:hover {
    color: var(--gold-light);
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all var(--transition);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

@keyframes whatsapp-pulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6);
    }
}

/* --- Stats --- */
.stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: center;
    padding: 30px 0;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ============================
   RESPONSIVE BREAKPOINTS
   ============================ */

/* Tablet (768px+) */
@media (min-width: 768px) {
    .hero {
        padding: 0;
        min-height: 90vh;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

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

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

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

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

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

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

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

    .stats-row {
        grid-template-columns: repeat(4, 1fr);
    }

    .page-header h1 {
        font-size: 2.3rem;
    }

    .logo-text {
        display: block;
    }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3.4rem;
    }

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

    .section {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-page-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.2fr;
    }

    .header-phone {
        display: flex;
    }
}

/* Mobil menü */
@media (max-width: 767px) {
    .hamburger {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        padding: 80px 30px 30px;
        box-shadow: -5px 0 30px var(--shadow-md);
        transition: right var(--transition);
        z-index: 1050;
        overflow-y: auto;
    }

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

    .main-nav ul {
        flex-direction: column;
        gap: 5px;
    }

    .main-nav a {
        padding: 12px 16px;
        font-size: 1.05rem;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
        color: var(--text);
    }

    .main-nav a:hover,
    .main-nav a.active {
        color: var(--gold-dark);
        background: var(--cream);
    }

    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1040;
    }

    .nav-overlay.show {
        display: block;
    }

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

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

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

    .btn {
        padding: 12px 24px;
        font-size: 0.92rem;
    }
}

/* Küçük mobil (<375px) */
@media (max-width: 374px) {
    .hero h1 {
        font-size: 1.4rem;
    }

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

    .service-card {
        padding: 22px 18px;
    }
}

/* --- Print --- */
@media print {

    .site-header,
    .site-footer,
    .whatsapp-float,
    .hamburger,
    .cta-section {
        display: none !important;
    }

    body {
        color: #000;
        font-size: 12pt;
    }

    .hero {
        padding: 20px 0;
    }
}

/* --- SVG Icons --- */
.icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}

.btn .icon {
    width: 18px;
    height: 18px;
}

.feature-icon .icon,
.info-icon .icon {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.social-link .icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    stroke: currentColor;
}

.footer-links .icon {
    width: 14px;
    height: 14px;
}

.footer-contact-item .icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}