@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --color-primary: #463626;      /* Bronz Kahverengi */
    --color-primary-rgb: 70, 54, 38;
    --color-secondary: #c2ac9c;    /* Bej / Altın Tonu */
    --color-secondary-rgb: 194, 172, 156;
    --color-accent: #ff9800;       /* Canlı Turuncu (Vurgu) */
    --color-accent-hover: #e68900;
    
    --bg-light: #fefcf9;           /* Yumuşak Krem Arka Plan */
    --bg-white: #ffffff;
    --bg-dark: #221a14;            /* Koyu Vurgu Arka Plan */
    
    --text-dark: #211912;
    --text-muted: #6e6053;
    --text-light: #ffffff;
    --text-light-muted: #d5cbc1;
    
    --border-color: #eae1d7;
    --border-focus: #c2ac9c;
    
    /* Typography */
    --font-sans: 'Outfit', sans-serif;
    --font-title: 'Montserrat', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(70, 54, 38, 0.04);
    --shadow-md: 0 10px 30px rgba(70, 54, 38, 0.06);
    --shadow-lg: 0 20px 50px rgba(70, 54, 38, 0.1);
    
    /* Layout */
    --container-max-width: 1200px;
    --header-height: 80px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

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

/* Typography Helpers */
.title-large { font-size: 2.5rem; margin-bottom: 1rem; }
.title-medium { font-size: 2rem; margin-bottom: 1rem; position: relative; }
.title-small { font-size: 1.35rem; margin-bottom: 0.75rem; }
.subtitle { color: var(--color-secondary); font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 0.5rem; display: block; }

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

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

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

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    outline: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.4);
}

.btn-secondary {
    background-color: var(--color-primary);
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: #2e2319;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(70, 54, 38, 0.3);
}

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

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Header & Navigation */
header {
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    border-bottom: 1px solid transparent;
    background-color: var(--bg-white);
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 70px;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
}

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

.logo img {
    height: 48px;
    width: auto;
    transition: var(--transition-normal);
}

header.scrolled .logo img {
    height: 40px;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-primary);
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-normal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--color-accent);
}

/* Burger Menu */
.burger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    flex-direction: column;
    gap: 6px;
    z-index: 1010;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    transition: var(--transition-normal);
}

/* Mobile Sidebar Override */
@media screen and (max-width: 991px) {
    .burger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 280px;
        background-color: var(--bg-white);
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;
        transition: 0.4s ease-in-out;
        z-index: 1005;
    }
    
    .nav-links.nav-active {
        right: 0;
    }
    
    .burger.toggle .line1 { transform: rotate(-45deg) translate(-6px, 6px); }
    .burger.toggle .line2 { opacity: 0; }
    .burger.toggle .line3 { transform: rotate(45deg) translate(-6px, -6px); }
}

/* Page Subheader Banner */
.page-subheader {
    width: 100%;
    height: 13.28vw; /* 1920x255 aspect ratio */
    max-height: 255px;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: var(--header-height);
    overflow: hidden;
}

.page-subheader::before {
    display: none; /* Orijinal görselin renklerini bozmamak için koyu gradyan kaldırıldı */
}

.page-subheader .container {
    display: none; /* Görselin içindeki orijinal başlık yazısını kapatmamak için HTML başlığı gizlendi */
}

/* Slayt / Hero Area (Home Page) */
.hero-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 735;
    max-height: 735px;
    min-height: 150px;
    overflow: hidden;
    margin-top: var(--header-height);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    background-size: 100% 100%;
    background-position: center;
}

@media screen and (max-width: 767px) {
    .slide {
        background-size: cover;
    }
}

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

.slide::before {
    display: none;
}

.slide-layer-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-car-img,
.slide-text-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Animations */
.slide-car-img {
    opacity: 0;
    transform: scale(0.97) translateX(-20px);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s ease;
}

.slide-text-img {
    opacity: 0;
    transform: scale(0.97) translateX(20px);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s ease;
}

.slide.active .slide-car-img,
.slide.active .slide-text-img {
    transform: scale(1) translateX(0);
    opacity: 1;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(70, 54, 38, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
    font-size: 1.5rem;
}

.slider-btn:hover {
    background-color: var(--color-accent);
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* WhatsApp Banner Section */
.whatsapp-banner-section {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 10px;
}

.whatsapp-banner-link {
    display: block;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
}

.whatsapp-banner-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.whatsapp-banner-link img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-mobile {
    display: none !important;
}

@media screen and (max-width: 767px) {
    .banner-desktop {
        display: none !important;
    }
    .banner-mobile {
        display: block !important;
    }
}

/* Grid Link Cards (Home Page) */
.promo-cards {
    margin-top: 20px;
    position: relative;
    z-index: 20;
}

.card-item {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border-bottom: 4px solid transparent;
}

.card-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--color-accent);
}

.card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.card-item:hover .card-img-wrapper img {
    transform: scale(1.06);
}

.card-content {
    padding: 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-content h3 {
    font-size: 1.25rem;
}

.card-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: var(--transition-fast);
}

.card-item:hover .card-arrow {
    background-color: var(--color-accent);
    color: var(--text-light);
}

/* Before/After Visual Slider Area */
.before-after-container {
    width: 100%;
    height: 380px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    user-select: none;
    border: 3px solid var(--color-primary);
}

.before-image, .after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.before-image img, .after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.before-image {
    z-index: 2;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background-color: var(--color-accent);
    z-index: 3;
    cursor: ew-resize;
    transform: translateX(-50%);
}

.handle-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    font-size: 1.2rem;
    font-weight: 700;
}

.slider-label {
    position: absolute;
    bottom: 15px;
    background-color: rgba(34, 26, 20, 0.7);
    color: var(--text-light);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 4;
}

.label-before { left: 15px; }
.label-after { right: 15px; }

/* Custom Background Patterns */
.bg-pattern {
    background-image: url('../images/home_print_pattern11.png');
    background-repeat: repeat;
    background-position: center;
}

/* Google Reviews Section */
.reviews-section {
    background-color: #f7f3ed;
}

/* Google Rating Summary Badge */
.google-rating-summary {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 20px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.google-brand-icon {
    font-size: 2.2rem;
    color: #4285F4;
}

.rating-score {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.score-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.score-num {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.rating-score .stars {
    color: #ffc107;
    font-size: 1.1rem;
}

.rating-count {
    color: var(--text-muted);
    font-size: 0.95rem;
    border-left: 2px solid var(--border-color);
    padding-left: 20px;
}

.rating-actions {
    display: flex;
    gap: 12px;
}

@media screen and (max-width: 767px) {
    .google-rating-summary {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .rating-info {
        flex-direction: column;
        gap: 12px;
    }
    
    .rating-count {
        border-left: none;
        border-top: 1px solid var(--border-color);
        padding-left: 0;
        padding-top: 12px;
        width: 100%;
    }
    
    .rating-actions {
        width: 100%;
        justify-content: center;
    }
}

.google-review-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.google-logo {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 24px;
    height: 24px;
}

.review-stars {
    color: #ffc107;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.letter-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.15rem;
    font-family: var(--font-title);
}

.review-user-name {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-primary);
}

.google-cta-wrapper {
    margin-top: 40px;
    text-align: center;
}

/* Accordion for S.S.S */
.accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.accordion-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: var(--transition-fast);
}

.accordion-header h3 {
    font-size: 1.1rem;
    font-family: var(--font-sans);
    font-weight: 600;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    font-size: 0.8rem;
    color: var(--color-primary);
}

.accordion-item.active {
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-sm);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    background-color: var(--color-accent);
    color: var(--text-light);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fffdfa;
}

.accordion-content-inner {
    padding: 0 20px 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-top: 1px solid rgba(70,54,38,0.05);
    padding-top: 15px;
}

/* Lightbox Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.gallery-thumb-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-thumb-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.gallery-card:hover .gallery-thumb-wrapper img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(70, 54, 38, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
    color: var(--text-light);
    font-size: 1.8rem;
}

.gallery-thumb-wrapper:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    padding: 15px 20px;
}

.gallery-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.gallery-tag {
    font-size: 0.8rem;
    color: var(--color-secondary);
    font-weight: 600;
    text-transform: uppercase;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(34, 26, 20, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

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

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85%;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 4px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-nav:hover {
    color: var(--color-accent);
}

.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }

@media screen and (max-width: 768px) {
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-close { right: 10px; top: -50px; }
}

/* Form Styling (Online Tespit / İletişim) */
.form-container {
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

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

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

.form-control {
    width: 100%;
    padding: 12px 15px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background-color: var(--bg-light);
    transition: var(--transition-fast);
    outline: none;
}

.form-control:focus {
    border-color: var(--border-focus);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(194, 172, 156, 0.15);
}

textarea.form-control {
    resize: vertical;
}

.file-input-wrapper {
    position: relative;
    border: 2px dashed var(--border-focus);
    border-radius: 6px;
    padding: 30px;
    text-align: center;
    background-color: var(--bg-light);
    cursor: pointer;
    transition: var(--transition-normal);
}

.file-input-wrapper:hover {
    background-color: #f7f3ed;
    border-color: var(--color-accent);
}

.file-input-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-input-icon {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.file-input-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Success Card */
.form-success-card {
    text-align: center;
    padding: 40px;
}

.success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #4caf50;
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Footer Section */
footer {
    background-color: var(--bg-dark);
    color: var(--text-light-muted);
    padding: 60px 0 30px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-about p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

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

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.social-btn:hover {
    background-color: var(--color-accent);
    color: var(--text-light);
    transform: translateY(-3px);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-normal);
}

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

/* Responsive Overrides */
@media screen and (max-width: 991px) {
    .grid-3, .grid-2, .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .slide h2 {
        font-size: 2.4rem;
    }
    
    .promo-cards {
        margin-top: 30px;
    }
    
    .footer-grid {
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
