/* ========================================
   ATG ELEKTRİK - PROFESSIONAL SEO OPTIMIZED DESIGN
   Modern Minimalist Theme | Responsive | Performance Optimized
   İzmir Elektrikçi Hizmetleri | izmirelektrikcisi.com.tr
   ======================================== */

:root {
    --primary: #1a1a1a;
    --secondary: #2c2c2c;
    --accent: #d4af37;
    --light: #f8f9fa;
    --lighter: #ffffff;
    --dark: #000000;
    --gray-dark: #333333;
    --gray: #666666;
    --gray-light: #cccccc;
    --border: #e0e0e0;
    --success: #28a745;
    --error: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    --trans: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
}

/* ======== RESET & BASE ======== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    font-size: 16px;
}

main {
    flex: 1;
}

.container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--trans);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* ======== ACCESSIBILITY ======== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

/* ======== ANIMATIONS ======== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* ======== HEADER ======== */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    animation: fadeInDown 0.5s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    transition: var(--trans);
}

.logo a:hover {
    transform: scale(1.04);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: 0 4px 12px rgba(212,175,55,0.45);
    flex-shrink: 0;
    transition: var(--trans);
}

.logo a:hover .logo-icon {
    background: var(--primary);
    color: var(--accent);
    box-shadow: 0 4px 18px rgba(0,0,0,0.25);
}

.logo-text {
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.logo-part-dark {
    color: #1a1a1a;
    background: transparent;
}

.logo-accent {
    color: #1a1a1a;
    background: var(--accent);
    padding: 0 0.35rem;
    border-radius: 5px;
    font-weight: 900;
}

.navbar ul {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.navbar a {
    font-weight: 600;
    color: var(--gray-dark);
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    padding: 0.5rem 0;
}

.navbar a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.navbar a:hover::after,
.navbar a.active::after {
    width: 100%;
}

.navbar a:hover,
.navbar a.active {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    padding: 0.5rem;
}

/* ======== HERO SLIDER ======== */
.hero-slider {
    position: relative;
    height: 82vh;
    min-height: 540px;
    overflow: hidden;
    margin-top: 0;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.9s ease;
    z-index: 1;
    background-size: cover !important;
    background-position: center !important;
}

.slider-item.active {
    opacity: 1;
    z-index: 2;
}

.slider-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(0,0,0,0.82) 0%,
        rgba(0,0,0,0.55) 50%,
        rgba(0,0,0,0.10) 100%
    );
    pointer-events: none;
}

.slider-content {
    position: relative;
    z-index: 3;
    max-width: 680px;
    padding: 0 5% 0 6%;
    animation: fadeInUp 0.8s ease;
    text-align: left;
}

/* Küçük badge / etiket */
.slider-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(212,175,55,0.18);
    border: 1px solid rgba(212,175,55,0.6);
    color: #d4af37;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1.2rem;
}

.slider-content h1,
.slider-content .slider-heading {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    font-style: italic;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 1.1rem;
    text-shadow: 2px 4px 12px rgba(0,0,0,0.5);
}

.slider-content p {
    font-size: clamp(0.95rem, 1.8vw, 1.2rem);
    opacity: 0.9;
    margin-bottom: 2rem;
    font-weight: 400;
    max-width: 520px;
    line-height: 1.65;
}

.slider-buttons {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    align-items: center;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--trans);
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 6%;
    transform: none;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--trans);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.dot.active {
    background: var(--accent);
    width: 32px;
    border-radius: 6px;
    border-color: var(--accent);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

/* ======== HERO SECTION (For other pages) ======== */
.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.72), rgba(20, 20, 20, 0.55)),
                url('https://images.unsplash.com/photo-1621905251189-08b45d6a269e?w=1920&q=80') no-repeat center/cover;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 15px;
    animation: fadeInUp 0.6s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    opacity: 0.95;
    animation: fadeInUp 0.6s ease 0.2s both;
}

/* ======== BUTTONS ======== */
.btn {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 14px 40px;
    border: 2px solid var(--accent);
    font-weight: 700;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: var(--trans);
    border-radius: 4px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn:hover::before {
    left: 0;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary::before {
    background: #ffffff;
}

.btn-secondary:hover {
    color: var(--primary);
}

.btn-call {
    background: #f5c518;
    color: #1a1a1a;
    border: 2px solid #f5c518;
    font-weight: 700;
}

.btn-call::before {
    background: #1a1a1a;
}

.btn-call:hover {
    color: #f5c518;
    background: transparent;
}

/* ======== SECTIONS ======== */
.section-padding {
    padding: 6rem 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1.5rem;
    letter-spacing: -1px;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
}

.section-desc {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* ======== CARDS & GRID ======== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: #ffffff;
    border: 2px solid var(--border);
    padding: 2.5rem 2rem;
    transition: var(--trans);
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    text-align: center;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transition: left 0.5s ease;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
    animation: float 3s ease-in-out infinite;
}

.card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 20px 0;
}

.card p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1rem;
}

/* ======== GALLERY ======== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 300px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: var(--trans);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.15);
}

.overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.95) 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    transition: bottom 0.5s ease;
}

.gallery-item:hover .overlay {
    bottom: 0;
}

.overlay h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.overlay p {
    font-size: 1rem;
    margin: 5px 0;
    opacity: 0.95;
}

/* ======== FORMS ======== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border);
    border-radius: 4px;
    background: #ffffff;
    color: var(--primary);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--trans);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

textarea {
    resize: vertical;
    min-height: 150px;
}

.form-error {
    color: var(--error);
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

.form-success {
    color: var(--success);
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

/* ======== CTA SECTION ======== */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 900;
    letter-spacing: -1.5px;
    position: relative;
    z-index: 2;
}

.cta-section p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

/* ======== FOOTER ======== */
.site-footer {
    background: var(--primary);
    color: #999;
    padding: 4rem 0 1.5rem;
    margin-top: auto;
}

.site-footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2.5rem;
}

.footer-section h3 {
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section a {
    color: #999;
    transition: var(--trans);
    position: relative;
    padding-left: 0;
    font-size: 0.95rem;
}

.footer-section a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent);
    padding-left: 20px;
}

.footer-section a:hover::before {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #999;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--trans);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-3px);
    border-color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

/* ======== WHATSAPP FLOAT BUTTON ======== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    transition: var(--trans);
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
}

/* ======== SCROLL TO TOP BUTTON ======== */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--dark);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    z-index: 998;
    transition: var(--trans);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary);
    color: var(--accent);
    transform: translateY(-5px);
}

/* ======== COOKIE CONSENT ======== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.btn-accept {
    background: var(--accent);
    color: var(--dark);
    padding: 10px 30px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--trans);
}

.btn-accept:hover {
    background: #fff;
    transform: scale(1.05);
}

/* ======== TRUST BADGES ======== */
.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
    flex-wrap: wrap;
}

.badge {
    background: var(--light);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--trans);
}

.badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.badge i {
    color: var(--accent);
}

/* ======== LOADING ANIMATION ======== */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ======== RESPONSIVE ======== */
@media (max-width: 1024px) {
    .hero-slider {
        height: 65vh;
    }
    
    .section-padding {
        padding: 4rem 0;
    }
    
    .grid-3 {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .navbar ul {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        display: none;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
    }
    
    .navbar.active ul {
        display: flex;
    }
    
    .navbar li {
        padding: 0.75rem 1.5rem;
        width: 100%;
    }
    
    .navbar a {
        display: block;
        width: 100%;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-slider {
        height: 60vh;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-prev {
        left: 15px;
    }
    
    .slider-next {
        right: 15px;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card {
        padding: 2rem 1.5rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 85px;
        right: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo a {
        font-size: 1.5rem;
    }
    
    .hero-slider {
        height: 50vh;
        min-height: 400px;
    }
    
    .slider-content h1,
    .slider-content .slider-heading {
        font-size: 2rem;
    }
    
    .slider-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
    
    .section-padding {
        padding: 2.5rem 0;
    }
    
    .card {
        padding: 1.5rem 1rem;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .site-footer .container {
        gap: 2rem;
    }
}

/* ======== UTILITIES ======== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* ======== PRINT STYLES ======== */
@media print {
    .site-header,
    .hero-slider,
    .slider-btn,
    .slider-dots,
    .whatsapp-float,
    .scroll-top,
    .cookie-consent {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }
    
    a {
        text-decoration: underline;
    }
}

/* ======== PERFORMANCE OPTIMIZATIONS ======== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Content Visibility for Better Performance */
.gallery-item,
.card {
    content-visibility: auto;
}

/* GPU Acceleration */
.slider-item,
.gallery-img,
.card:hover {
    will-change: transform;
}
