/* ==============================
   CSS VARIABLES (ROOT)
   Tüm renk ve fontları buradan yönetin!
============================== */

:root {
    /* ===== ANA RENKLER ===== */
    --color-primary: #1A1A1A;           /* Ana koyu kahve */
    --color-primary-light: #2F3E46;     /* Daha açık kahve */
    --color-primary-dark: #C9A227;      /* Daha koyu kahve */
    
    --color-secondary: #275738;         /* Yeşil ton */
    --color-secondary-dark: #1f472d;    /* Koyu yeşil */
    
    --color-accent: #088395;            /* Mavi vurgu (rezerve) */
    --color-accent-dark: #066f7f;       /* Koyu mavi */
    
    --color-sold: #0C2C55;              /* Satıldı mavi */
    --color-sold-dark: #081e3b;         /* Koyu satıldı mavi */
    
    /* ===== NEUTRAL RENKLER ===== */
    --color-white: #ffffff;
    --color-black: #111111;
    --color-dark: #1d1d1d;
    --color-gray-dark: #2b2b2b;
    --color-gray: #666666;
    --color-gray-light: #888888;
    --color-gray-lighter: #cccccc;
    --color-gray-lightest: #f5f5f5;
    
    /* ===== ARKA PLAN RENKLERİ ===== */
    --bg-primary: #ffffff;
    --bg-secondary: #f4f4f4;
    --bg-tertiary: #fafafa;
    --bg-light: #f2f2f2;
    --bg-dark: #111111;
    
    /* ===== BORDER RENKLERİ ===== */
    --border-light: #e6e6e6;
    --border-lighter: #f2f2f2;
    --border-white: rgba(255, 255, 255, 0.3);
    
    /* ===== SHADOW ===== */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 18px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 6px 20px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 8px 28px rgba(0, 0, 0, 0.12);
    
    /* ===== FONTLAR ===== */
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    
    --font-heading: "Playfair Display", serif;
    --font-second-heading: "Source Serif 4", serif;
    --font-third-heading: "Manrope", sans-serif;
    --font-text: "Source Sans 3", sans-serif;
    --font-body: "Roboto", sans-serif;
    
    --font-size-xs: 12px;
    --font-size-sm: 13px;
    --font-size-base: 14px;
    --font-size-md: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 22px;
    --font-size-2xl: 28px;
    --font-size-5xl: 32px;
    
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* ===== SPACING ===== */
    --spacing-xs: 6px;
    --spacing-sm: 10px;
    --spacing-md: 15px;
    --spacing-lg: 20px;
    --spacing-xl: 30px;
    
    /* ===== BORDER RADIUS ===== */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 10px;
    --radius-2xl: 12px;
    --radius-full: 50%;
    
    /* ===== TRANSITIONS ===== */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}



/* ==============================
   GLOBAL STYLES
============================== */

body {
    font-family: var(--font-family);
    color: var(--color-dark);
}


/* ==============================
   Navbar
============================== */

/* ==============================
   NAVBAR
============================== */

.custom-navbar {
    position: relative;
    background: linear-gradient(90deg, #1A1A1A, #2F3E46);
    padding: 18px 0;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus,
.navbar-toggler:active {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

.custom-navbar .navbar-brand {
    font-size: 22px;
    letter-spacing: 0.5px;
}

.custom-navbar .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    margin: 0 15px;
    transition: 0.3s ease;
}

.custom-navbar .nav-link:hover {
    color: #ffffff;
}


/* ==============================
   CONTACT BUTTON
============================== */

.contact-btn {
    background: #ffffff;
    color: #2F3E46;
    padding: 10px 40px;
    font-weight: 600;
    border-radius: 3px;
    transition: 0.3s ease;
}

.contact-btn:hover {
    background: #f2f2f2;
    color: #2F3E46;
}


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

@media (max-width: 992px) {

    .custom-navbar:has(.navbar-collapse.show),
    .custom-navbar:has(.navbar-collapse.collapsing) {
        background: linear-gradient(90deg, #2F3E46, #1f2a30);
    }

    .navbar-collapse .ms-auto {
        width: 100%;
        padding-left: 24px;
        margin-left: 0 !important;
    }

    .navbar-collapse .contact-btn {
        all: unset;
        display: block;
        width: 100%;
        padding: 8px 15px;
        font-weight: 500;
        color: rgba(255,255,255,0.85);
        cursor: pointer;
    }

    .navbar-collapse .contact-btn:hover {
        color: #ffffff;
    }
}


/* ==============================
   STATUS SECTION
============================== */

.listing-status {
    margin: 28px 0;
    font-family: var(--font-family);
}

.status-box {
    display: none;
    padding: var(--spacing-lg) 22px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.status-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 21px;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-sm);
}

.status-header i {
    font-size: var(--font-size-xl);
}

.status-box p {
    font-size: var(--font-size-md);
    line-height: 1.65;
    margin-bottom: 16px;
    opacity: 0.95;
}

.status-cta {
    display: flex;
    gap: var(--spacing-md);
}

.status-cta .btn {
    min-width: 160px;
    padding: 8px 14px;
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-medium);
    border-radius: var(--radius-xl);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    white-space: nowrap;
}

/* REZERVE */
.status-reserved {
    background: rgba(8, 131, 149, 0.06);
    border: 1px solid rgba(8, 131, 149, 0.35);
    color: #075c69;
}

.status-reserved .status-header i {
    color: var(--color-accent);
}

.status-reserved .btn-outline-dark {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.status-reserved .btn-outline-dark:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

.status-reserved .btn-success {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.status-reserved .btn-success:hover {
    background: var(--color-accent-dark);
}

/* SATILDI */
.status-sold {
    background: rgba(12, 44, 85, 0.06);
    border: 1px solid rgba(12, 44, 85, 0.35);
    color: var(--color-sold);
}

.status-sold .status-header i {
    color: var(--color-sold);
}

.status-sold .btn-outline-dark {
    border-color: var(--color-sold);
    color: var(--color-sold);
}

.status-sold .btn-outline-dark:hover {
    background: var(--color-sold);
    color: var(--color-white);
}

.status-sold .btn-success {
    background: var(--color-sold);
    border-color: var(--color-sold);
}

.status-sold .btn-success:hover {
    background: var(--color-sold-dark);
}

@media (max-width: 768px) {
    .status-box {
        padding: 18px;
    }
    
    .status-cta {
        flex-direction: column;
    }
    
    .status-cta .btn {
        width: 100%;
    }
}


/* ==============================
   GALLERY
============================== */

.main-image {
    width: 100%;
    height: 480px;
    background: var(--bg-lightest);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.thumb-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.thumbs {
    display: flex;
    gap: var(--spacing-xs);
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 2px 0;
}

.thumbs::-webkit-scrollbar {
    display: none;
}

.thumbs img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.thumbs img:hover {
    opacity: 1;
}

.thumb-item {
    width: 80px;
    height: 60px;
    flex: 0 0 auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-secondary);
    cursor: pointer;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-white);
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(6px);
    color: var(--color-white);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    display: none;
    z-index: 5;
    transition: var(--transition-fast);
}

.thumb-nav.left { left: 8px; }
.thumb-nav.right { right: 8px; }

.thumb-nav:hover {
    background: rgba(0,0,0,0.65);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-50%) scale(1.05);
}

.img-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: var(--color-white);
    border: none;
    font-size: var(--font-size-xl);
    padding: 8px 14px;
    cursor: pointer;
    border-radius: var(--radius-md);
}

.img-nav.left { left: 10px; }
.img-nav.right { right: 10px; }

.zoom-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.6);
    color: var(--color-white);
    border: none;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
    cursor: pointer;
}


/* ==============================
   MODAL
============================== */

#imageModal .modal-backdrop {
    --bs-backdrop-bg: #000;
    --bs-backdrop-opacity: 0.75;
}

#imageModal .modal-content {
    background: transparent !important;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
}

#imageModal .modal-body {
    background: transparent;
    padding: 0;
}

#imageModal .btn-close {
    filter: invert(1);
    opacity: 0.8;
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 10;
}

#imageModal .btn-close:hover {
    opacity: 1;
}

.modal-main-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 0 40px rgba(0,0,0,0.6);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.12);
    border: 1px solid var(--border-white);
    color: var(--color-white);
    font-size: var(--font-size-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
    z-index: 5;
}

.modal-nav:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-50%) scale(1.1);
}

.modal-nav.left { left: 20px; }
.modal-nav.right { right: 20px; }

@media (max-width: 576px) {
    .modal-nav {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    .modal-nav.left { left: 10px; }
    .modal-nav.right { right: 10px; }
}

body.modal-open {
    padding-right: 0 !important;
}

.modal-backdrop.show {
    padding-right: 0 !important;
}

#imageModal .modal-dialog {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
}


/* ==============================
   INFO CARDS
============================== */

.info-card {
    
    padding: 18px;
    border-radius: var(--radius-xl);
    background: var(--bg-primary);
    box-shadow: var(--shadow-sm);
}

.ilan-no {
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-semibold);
    color: var(--color-primary);
}

.ilan-date {
    font-size: var(--font-size-sm);
    color: var(--color-gray-light);
}

.property-type {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    color: #444;
}

.property-type .status {
    font-size: var(--font-size-xs);
    color: #777;
}

.location {
    font-size: var(--font-size-sm);
    color: var(--color-gray);
}

.price {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    text-align: right;
    white-space: nowrap;
}

.middle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .middle-row {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .left-info {
        display: flex;
        flex-direction: column;
    }
    
    .price {
        font-size: var(--font-size-lg);
        text-align: right;
        margin-left: auto;
        white-space: nowrap;
    }
}


/* ==============================
   MAP
============================== */

.map-box {
    width: 100%;
    height: 260px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-lightest);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .map-box {
        height: 200px;
    }
}


/* ==============================
   FACADE & BUILDING
============================== */

.facade-box {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.facade-box span {
    font-size: var(--font-size-base);
    background: var(--bg-light);
    padding: 8px 14px;
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-medium);
}

.building-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 14px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.building-card i {
    font-size: var(--font-size-lg);
    color: var(--color-primary);
    margin-bottom: 2px;
}

.building-card span {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--color-gray-dark);
}

@media (max-width: 576px) {
    .facade-box {
        justify-content: center;
    }
    
    .building-card {
        flex-direction: row;
        gap: 8px;
        padding: 10px 14px;
    }
    
    .building-card i {
        margin-bottom: 0;
        font-size: var(--font-size-lg);
    }
}


/* ==============================
   LISTING SECTIONS
============================== */

.listing-description {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
}

.listing-description h4 {
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.3px;
}

.listing-description p {
    font-size: var(--font-size-md);
    color: var(--color-dark);
    line-height: 1.6;
    margin: 0;
}

.listing-section {
    background: var(--bg-primary);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}


.section-title-large {
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
}

.section-title {
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
}

.neighborhood-text {
    font-size: var(--font-size-md);
    color: var(--color-dark);
    line-height: 1.6;
}

.neighborhood-text a {
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-lg);
    opacity: 0.75;
    text-decoration: none;
    color: var(--color-primary);
}
/* ==============================
   FEATURES GRID
============================== */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px 20px;
}

.feature-grid span {
    font-family: var(--font-third-heading);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-base);
    color: var(--color-gray-light);
}

.feature-grid strong {
    display: block;
    font-family: var(--font-third-heading);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-base);
    color: var(--color-gray-dark);
}

@media (max-width: 991px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ==============================
   PROXIMITY TABLE
============================== */

.proximity-table thead th {
    font-family: var(--font-third-heading);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-base);
    color: var(--color-gray-light);
    font-weight: var(--font-weight-semibold);
}

.proximity-table tbody td {
    font-family: var(--font-third-heading);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    color: var(--color-gray-dark);
}

.proximity-table tbody tr {
    border-bottom: 1px solid var(--border-lighter);
}

.proximity-table i {
    color: var(--color-primary);
}


/* ==============================
   EXTRA FEATURES
============================== */

.extra-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.extra-features span {
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: var(--spacing-xs) 14px;
    font-family: var(--font-third-heading);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-base);
    color: var(--color-primary);
    transition: var(--transition-fast);
    white-space: nowrap;
}

.extra-features span:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

@media (max-width: 768px) {
    .extra-features span {
        font-size: var(--font-size-xs);
        padding: 5px 12px;
    }
}


/* ==============================
   VIDEO
============================== */

.video-box {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/* ==============================
   CONTACT CARD
============================== */

.contact-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
}

.contact-card h6 {
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-xl);
    color: var(--color-primary);
}

.contact-card p {
    font-size: var(--font-size-base);
    color: var(--color-gray);
}

.btn-whatsapp {
    background-color: var(--color-secondary);
    color: var(--color-white);
    border: none;
}

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

.btn-whatsapp i {
    font-size: 18px;
}


/* ==============================
   SIMILAR LISTINGS
============================== */

.similar-card {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
}

.similar-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.similar-listings .col-12 {
    margin-bottom: var(--spacing-md);
}
.similar-listings h6 {
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-xl);
}

.similar-card img {
    width: 114px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px 0 0 8px;
    margin: -12px 12px -12px -12px;
}

.similar-card .card-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.similar-card .price {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    color: var(--color-primary);
}

.similar-card .location {
    font-size: var(--font-size-sm);
    color: var(--color-gray);
}

.similar-card hr {
    margin: var(--spacing-xs) 0;
}

.similar-card .details {
    font-size: var(--font-size-xs);
    color: #444;
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
}

@media (max-width: 768px) {
    .similar-card img {
        width: 114px;
    }
    
    .similar-card .price {
        font-size: var(--font-size-md);
    }
}


/* ==============================
   FOOTER
============================== */

.site-footer {
    background: #111;
    color: #ccc;
    padding: 60px 0 30px;
    font-size: 14px;
}

.footer-title {
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 16px;
}

.footer-text {
    line-height: 1.6;
    color: #aaa;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a,
.footer-contact a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #ffffff;
}

.footer-contact i {
    margin-right: 8px;
    color: #888;
    width: 16px;
    display: inline-block;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #1f1f1f;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ccc;
    font-size: 18px;
    transition: 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    transform: translateY(-3px);
}

/* Social Hover */
.footer-social a:nth-child(1):hover { 
    background: #25D366; 
    color: #ffffff; 
}

.footer-social a:nth-child(2):hover { 
    background: linear-gradient(
        45deg, 
        #f09433 0%, 
        #e6683c 25%, 
        #dc2743 50%, 
        #cc2366 75%, 
        #bc1888 100%
    ); 
    color: #ffffff; 
}

.footer-social a:nth-child(3):hover { 
    background: #1877F2; 
    color: #ffffff; 
}

.footer-social a:nth-child(4):hover { 
    background: #000; 
    color: #ff0050; 
}

.footer-social a:nth-child(5):hover { 
    background: #FF0000; 
    color: #ffffff; 
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 20px;
    margin-top: 40px;
}

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

.copyright,
.developer {
    color: #777;
    font-size: 13px;
}

.developer a {
    color: #999;
    text-decoration: none;
    transition: 0.3s ease;
    font-weight: 500;
}

.developer a:hover {
    color: #ffffff;
}

/* ==============================
   RESPONSIVE - EXTRA SMALL
============================== */

@media (max-width: 576px) {
    .site-footer {
        text-align: center;
        padding: var(--spacing-2xl) 0 var(--spacing-lg);
    }

    .footer-title {
        margin-top: var(--spacing-lg);
    }

    .footer-title:first-child {
        margin-top: 0;
    }

    .footer-social {
        justify-content: center;
    }

    .copyright,
    .developer {
        font-size: var(--font-size-xs);
    }
}


/* ==============================
   WHATSAPP FLOAT
============================== */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background-color: #25d366;
    color: var(--color-white);
    border-radius: var(--radius-full);
    text-align: center;
    font-size: 30px;
    line-height: 55px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0,0,0,0.4);
    color: var(--color-white);
}

