/* ===== RESET & VARIABLES ===== */
:root {
    --primary: #c9a227;
    --primary-dark: #b88c1f;
    --primary-light: #e0b84d;
    --dark: #0a0a0a;
    --dark-light: #1a1a1a;
    --dark-lighter: #2a2a2a;
    --white: #ffffff;
    --gray: #cccccc;
    --gray-dark: #666666;
    --overlay: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 100%);
    --font-head: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
    --shadow-hover: 0 20px 40px -10px rgba(0,0,0,0.7);
    --glass-bg: rgba(255,255,255,0.05);
    --glass-border: rgba(255,255,255,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--white);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-title-left {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
}

.section-title-left::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin-top: 15px;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.text-gold {
    color: var(--primary);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(201, 162, 39, 0.5);
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px -5px rgba(201, 162, 39, 0.5);
}

.btn-large {
    padding: 14px 42px;
    font-size: 1rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-link i {
    transition: transform 0.2s;
}

.btn-link:hover {
    color: var(--primary-light);
}

.btn-link:hover i {
    transform: translateX(5px);
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-head);
    font-weight: 400;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .logo {
        font-size: 1rem;
        font-weight: 400;
    }
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 0;
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-cta {
    display: none;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 2rem;
    cursor: pointer;
    z-index: 200;
    padding: 5px;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    min-height: 700px;
    background-image: url('/static/images/p.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary);
    margin-bottom: 20px;
    animation: fadeUp 1s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    animation: fadeUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1s ease-out 0.6s both;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-scroll a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    line-height: 40px;
    text-align: center;
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.hero-scroll a:hover {
    background: var(--primary);
    color: var(--dark);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: transparent;
    padding: 20px 0;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

/* ===== STATS ===== */
.stats {
    padding: 60px 0;
    background: var(--dark);
    border-bottom: 1px solid #333;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--primary);
    border-radius: 8px;
    pointer-events: none;
    opacity: 0;
    transition: var(--transition);
}

.about-image:hover::before {
    opacity: 1;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-text p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.about-feature i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* ===== SERVICES VISUAL BAND ===== */
.services {
    padding: 80px 0;
    background: #000;
}

.services-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    position: relative;
}

.service-panel {
    position: relative;
    background: var(--dark-light);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-panel:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

.panel-image {
    height: 300px; /* tall portrait aspect */
    overflow: hidden;
}

.panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-panel:hover .panel-image img {
    transform: scale(1.05);
}

.panel-content {
    padding: 25px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.panel-content h3 {
    font-family: var(--font-head);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
    flex: 1;
}

.service-features li {
    color: var(--gray);
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
}

.service-features li::before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Floating QR on right panel */
.qr-float {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 10px;
    padding: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===== GET STARTED TODAY SECTION ===== */
.cta-get-started {
    background-image: url('/static/images/tn.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.cta-get-started .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0000007f;
    display: flex;
    align-items: center;
}

.cta-get-started .cta-content {
    width: 100%;
}

.cta-micro {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 300;
    color: var(--primary);
    margin-bottom: 20px;
}

.cta-get-started h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.2;
}

.cta-get-started .btn {
    margin-bottom: 20px;
}

.cta-divider {
    width: 60px;
    height: 2px;
    background: var(--primary);
    margin: 20px auto;
}

.cta-get-started .cta-phone {
    font-size: 1.3rem;
    color: var(--white);
}

.cta-get-started .cta-phone a {
    color: var(--primary);
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.cta-get-started .cta-phone a:hover {
    border-bottom-color: var(--primary);
}

/* ===== FLOATING WHATSAPP QR MODULE ===== */
.whatsapp-qr-float {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    border: 2px solid var(--primary);
    z-index: 1001;
    display: block;
    transition: transform 0.3s;
}

.whatsapp-qr-float:hover {
    transform: scale(1.05);
}

.whatsapp-qr-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Hide on mobile */
@media (max-width: 768px) {
    .whatsapp-qr-float {
        display: none;
    }
}

/* ===== FLEET ===== */
.fleet {
    padding: 80px 0;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.fleet-card {
    background: var(--dark-light);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #333;
    transition: var(--transition);
}

.fleet-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

.fleet-image {
    height: 400px;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.05);
}

.fleet-body {
    padding: 25px 20px 20px;
}

.fleet-body h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--white);
}

.fleet-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.fleet-specs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    color: var(--gray);
    font-size: 0.9rem;
}

.fleet-specs i {
    color: var(--primary);
    margin-right: 5px;
}

.fleet-cta {
    text-align: center;
}

/* ===== WHY US ===== */
.why-us {
    padding: 80px 0;
    background: #0a0a0a;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--dark);
    border-radius: 10px;
    border: 1px solid #333;
    transition: var(--transition);
}

.why-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid var(--primary);
}

.why-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.why-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--white);
}

.why-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 80px 0;
    background: var(--dark);
    position: relative;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 250px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
    padding: 20px;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.testimonial-content {
    background: var(--dark-light);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #333;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content i {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray);
    padding-left: 40px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.testimonial-author h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 5px;
}

.stars {
    color: var(--primary);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-controls button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.slider-controls button:hover {
    background: var(--primary);
    color: var(--dark);
}

/* ===== ORIGINAL CTA SECTION (height increased) ===== */
.cta-section {
    background-image: url('/static/images/pl.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.cta-section .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0000007f;
    display: flex;
    align-items: center;
}

.cta-section .cta-content {
    width: 100%;
}

.cta-section h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 20px;
    color: var(--white);
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-section .cta-phone {
    margin-top: 20px;
    font-size: 1.2rem;
}

.cta-section .cta-phone a {
    color: var(--primary);
    font-weight: bold;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.cta-section .cta-phone a:hover {
    border-bottom-color: var(--primary);
}

/* ===== FOOTER ===== */
footer {
    background: #000;
    padding: 60px 0 0;
    border-top: 1px solid #333;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-grid h4 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-grid p,
.footer-grid li {
    color: var(--gray);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-grid i {
    margin-right: 8px;
    color: var(--primary);
    width: 20px;
}

.footer-about .logo {
    font-size: 1.8rem;
    margin-bottom: 15px;
    justify-content: flex-start;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 50%;
    color: var(--primary);
    transition: var(--transition);
}

.footer-links ul li a {
    transition: color 0.3s, padding-left 0.3s;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    background: #000;
    text-align: center;
    padding: 20px;
    color: var(--gray-dark);
    font-size: 0.9rem;
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 2.5rem;
    line-height: 60px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #20b859;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}

/* ===== STICKY MOBILE CTA ===== */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.sticky-cta .btn {
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.5);
    padding: 12px 30px;
    font-size: 1rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .services-band,
    .fleet-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0px;
        left: -100%;
        width: 80%;
        max-width: 350px;
        height: calc(100vh - 70px);
        background: var(--dark-light);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 40px 30px;
        gap: 30px;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0,0,0,0.5);
        z-index: 99;
    }
    
    .nav-menu.active {
        left: 0px;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }
    
    .nav-cta {
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .services-band,
    .fleet-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid,
    .stats-grid {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .sticky-cta {
        display: block;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 2rem;
        line-height: 50px;
        bottom: 80px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* ===== ACCESSIBILITY ===== */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
}



.logof {
    font-family: var(--font-head);
    font-weight: 400;
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .logof {
        font-size: 1rem;
        font-weight: 400;
    }
}