:root {
    /* Ultra Premium Palette - Emerald & Gold */
    --primary: #043927;
    /* Deep Luxury Emerald */
    --primary-light: #065F41;
    --primary-dark: #022519;
    --accent: #C5A059;
    /* Muted Gold Accent */
    --secondary: #111827;
    /* Deep Charcoal */
    --white: #ffffff;
    --bg-light: #F9FAFB;

    /* Text Palette */
    --text-main: #1F2937;
    --text-muted: #6B7280;
    --text-on-dark: #E5E7EB;

    /* Glassmorphism System */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(4, 57, 39, 0.1);

    /* Elevation & Effects */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(4, 57, 39, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    /* Animation Tokens */
    --transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

i,
.fas,
.fab,
.far,
.fal,
.fad,
.fat {
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Brands' !important;
    font-weight: 900;
}

html, body {
    background-color: var(--white);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

/* Base Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-full {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

/* Luxury Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(3rem, 8vw, 5rem);
}

h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 400;
}

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

/* Luxury Top Bar */
.top-bar {
    background: var(--secondary);
    color: var(--text-on-dark);
    height: 48px;
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

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

.top-bar-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
}

.top-bar-info i {
    color: var(--accent);
}

.top-bar-social {
    display: flex;
    gap: 20px;
}

.top-bar-social a {
    opacity: 0.7;
    transition: var(--transition);
}

.top-bar-social a:hover {
    color: var(--accent);
    opacity: 1;
    transform: translateY(-2px);
}

/* Header & Nav */
header {
    background: var(--white);
    height: 110px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

header.scrolled {
    height: 85px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-md);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo a {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 5px;
}

.logo img {
    height: 60px;
    width: auto;
    position: relative;
    z-index: 2;
}

/* Luxury Logo Shine Effect */
.logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: blueShine 6s infinite;
    z-index: 3;
    pointer-events: none;
}

@keyframes blueShine {
    0% {
        left: -150%;
    }

    20% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.top-bar-info {
    display: flex;
    gap: 25px;
    align-items: center;
}

.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.top-bar-social {
    display: flex;
    gap: 20px;
}

/* Nav links refinements */
.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 45px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    padding: 15px 0;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--accent);
    box-shadow: 0 2px 10px rgba(197, 160, 89, 0.4);
    transition: var(--transition);
    border-radius: 50px;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.nav-links a:hover::after {
    width: 25px;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

/* Dropdown Menu Redesign - Ultra Luxury */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--white);
    min-width: 320px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 10002;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    font-size: 0.88rem;
    color: var(--secondary);
    text-transform: none;
    letter-spacing: 0;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s;
    line-height: 1.4;
    white-space: normal !important;
}

.dropdown-menu a:hover {
    background: var(--primary);
    color: var(--white);
    padding-left: 25px;
}

.dropdown-menu a::after { display:none !important; }

/* Header Action / Call Button Redesign */
.btn-call {
    background: var(--primary);
    color: var(--white);
    padding: 8px 18px 8px 8px;
    /* Circular icon on left needs space */
    border-radius: 50px;
    /* Pillow shape */
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-call .icon {
    background: var(--accent);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--secondary);
    font-size: 0.9rem;
}

.btn-call .text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.btn-call .text span {
    font-size: 0.6rem;
    opacity: 0.8;
}

.btn-call .text strong {
    font-size: 0.85rem;
}

/* Ultra Luxury Slider */
.slider-container {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--secondary);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

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

.slide-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(2, 37, 25, 0.85) 0%, rgba(2, 37, 25, 0.3) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.slide-content-inner {
    max-width: 900px;
}

.slide-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 25px;
    color: var(--white);
    letter-spacing: -0.04em;
}

.slide-content p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 45px;
    font-weight: 300;
    max-width: 600px;
}

.slide-btns {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s 0.9s ease;
}

.slide.active .slide-content h1,
.slide.active .slide-content p,
.slide.active .slide-btns {
    transform: translateY(0);
    opacity: 1;
}

/* Premium Buttons in Slider */
.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-3px);
}

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

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

/* Slider Controls */
.slider-nav {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 30px;
}

.slider-counter {
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.slider-btns-nav {
    display: flex;
    gap: 15px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

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

/* Features Overlap */
.features-overlap {
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    z-index: 100;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.feature-card {
    padding: 40px 30px;
    text-align: center;
    border-right: 1px solid #f1f1f1;
    transition: var(--transition);
}

.feature-card:last-child {
    border-right: none;
}

.feature-card:hover {
    background: var(--primary);
    transform: translateY(-10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--white);
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    transition: var(--transition);
}

.feature-card p {
    font-size: 0.85rem;
    transition: var(--transition);
}

.feature-card:hover h3,
.feature-card:hover p {
    color: var(--white);
}

/* Responsive Grid Utilities */
.grid-responsive-2 { display: grid; grid-template-columns: 1.1fr 0.9fr; }
.grid-responsive-why { display: grid; grid-template-columns: 1fr 2fr; }
.why-items-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.gap-100 { gap: 100px; }
.align-center { align-items: center; }
.why-item { display: flex; gap: 25px; align-items: flex-start; }
.why-item.full-width { grid-column: span 2; }

/* Premium Card System */
.grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.card-premium {
    background: var(--white);
    padding: 60px 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid #f3f4f6;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card-premium::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.card-premium:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

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

.card-premium i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 30px;
    display: inline-block;
    transition: var(--transition);
}

.card-premium:hover i {
    color: var(--accent);
    transform: scale(1.1);
}

/* Premium Buttons */
.btn {
    padding: 16px 35px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

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

.btn-primary:hover {
    background: var(--primary-light);
}

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

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

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

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

.bg-light {
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header span {
    display: block;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: var(--secondary);
    color: var(--text-on-dark);
    padding: 100px 0 50px;
}

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

.footer-logo img {
    height: 60px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.footer-links h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 30px;
    position: relative;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-links ul li {
    list-style: none;
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-on-dark);
    opacity: 0.7;
}

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

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    opacity: 0.6;
}

.trust-ribbon {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 0;
    z-index: 100;
}

.trust-items-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 220px;
}

.trust-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.trust-icon.accent { background: var(--accent); color: var(--secondary); box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2); }
.trust-icon.white { background: var(--white); color: var(--primary); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); }

.trust-text h4 {
    color: white;
    font-size: 0.95rem;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 800;
}

.trust-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.75rem;
    margin: 2px 0 0;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .trust-ribbon {
        position: relative;
        background: #0D1117;
        margin-top: -1px;
    }
}

@media (max-width: 768px) {
    .trust-ribbon {
        position: absolute !important;
        bottom: 0 !important;
        padding: 12px 0 !important;
        background: rgba(0, 0, 0, 0.2) !important;
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    }
    .trust-items-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 5px;
    }
    .trust-item {
        min-width: 0;
        flex-direction: column;
        text-align: center;
        gap: 6px;
        justify-content: center;
    }
    .trust-text h4 { 
        font-size: 8px; 
        letter-spacing: 0; 
        line-height: 1;
        color: white !important;
        font-weight: 700;
        white-space: nowrap;
    }
    .trust-text p { display: none; }
    .trust-icon { 
        width: 30px; 
        height: 30px; 
        font-size: 0.8rem; 
        border-radius: 6px;
        margin: 0 auto;
    }
}

/* Mobile Bottom Navigation Bar Styles (App Look) */
.mobile-nav-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 480px;
    background: rgba(4, 57, 39, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    height: 65px;
    border-radius: 40px;
    display: none;
    justify-content: space-around;
    align-items: center;
    padding: 0 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    z-index: 10001;
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.mobile-nav-bar .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 0.6rem;
    font-weight: 500;
    gap: 4px;
    transition: var(--transition);
    opacity: 0.8;
    flex: 1;
}

.mobile-nav-bar .nav-item i {
    font-size: 1.2rem;
}

.mobile-nav-bar .nav-item.active {
    color: var(--accent);
    opacity: 1;
}

/* Animations Logic */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Base Responsive */
.mobile-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 25px;
    justify-content: center;
    z-index: 10005;
}

.mobile-toggle span {
    width: 100%;
    height: 3px;
    background: var(--secondary);
    transition: var(--transition);
    border-radius: 5px;
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

@media (max-width: 1024px) {
    header {
        height: 90px;
    }

    header.scrolled {
        height: 75px;
    }

    nav {
        padding: 0 20px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 10003;
        transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        gap: 30px;
        transform: translateX(100%);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .mobile-toggle {
        display: flex;
    }

    /* Grid Responsive Overrides */
    .grid-responsive-2, .grid-responsive-why, .why-items-grid { 
        grid-template-columns: 1fr !important; 
        gap: 50px !important; 
    }
    .why-item.full-width { grid-column: span 1 !important; }
    .gap-100 { gap: 50px !important; }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .mobile-nav-bar {
        display: flex;
    }

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

    .header-actions {
        margin-right: 15px;
    }

    .btn-call {
        padding: 0;
        width: 40px;
        height: 40px;
        justify-content: center;
        border-radius: 50%;
    }

    .btn-call .text {
        display: none;
    }

    .btn-call .icon {
        margin: 0;
        width: 100%;
        height: 100%;
    }

    .slider-container {
        height: 600px; /* Biraz daha yükseklik verelim ki ferahlasın */
    }

    .slide {
        align-items: flex-start !important;
        padding-top: 50px !important;
    }

    .slide-content h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .slide-content p {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .features-overlap {
        position: relative;
        bottom: 0;
        margin-top: 30px;
        padding: 0 20px;
    }

    .features-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
        background: transparent;
        box-shadow: none;
        overflow: visible;
    }

    .feature-card {
        background: white;
        padding: 30px 25px;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08); /* More visual shadow */
        border: 1px solid rgba(197, 160, 89, 0.15); /* Subtile gold border */
        display: flex;
        flex-direction: column; /* Stacked look on small mobile is better */
        align-items: center;
        text-align: center;
        gap: 15px;
        min-height: 220px;
        justify-content: center;
    }

    .feature-icon {
        margin: 0;
        width: 65px;
        height: 65px;
        font-size: 1.5rem;
    }

    .feature-card h3 {
        margin: 0;
        font-size: 1.1rem;
        font-weight: 800;
        color: var(--primary);
    }

    .feature-card p {
        display: block; /* Show p tag but keep it short */
        font-size: 0.82rem;
        opacity: 0.8;
        line-height: 1.4;
    }

    /* On mobile hide subtext for cleaner look */
}

@media (max-width: 640px) {
    .container-full {
        padding: 0 20px;
    }

    .top-bar {
        display: none;
    }

    .slide-btns {
        flex-direction: row !important;
        gap: 10px;
    }

    .slide-btns .btn {
        padding: 12px 10px;
        font-size: 0.7rem;
        flex: 1;
        justify-content: center;
    }

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

    .card-premium {
        padding: 40px 25px;
    }

    body {
        padding-bottom: 80px;
    }

    footer {
        padding-bottom: 110px;
    }
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.btn-back-to-top {
    background: var(--white);
    color: var(--primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.05);
}

.btn-back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-back-to-top:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .floating-actions {
        right: 20px;
        bottom: 90px; /* Mobile nav bar height adjustment */
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}