* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #222222;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(30, 144, 255, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px;
    /* Adjust based on your layout */
    width: auto;
    display: block;
}


.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #222222;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1e90ff;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #1e90ff;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fcff 100%);
    padding: 100px 20px 80px;
    margin-top: 40px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #1e90ff, #00bfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #1e90ff, #00bfff);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(30, 144, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #1e90ff;
    padding: 15px 30px;
    border: 2px solid #1e90ff;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: #1e90ff;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(30, 144, 255, 0.3);
}

.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out;
}

.hero-graphic {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #1e90ff, #00bfff);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: white;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.hero-graphic img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: -2s;
}

.floating-element:nth-child(3) {
    width: 40px;
    height: 40px;
    bottom: 20%;
    left: 20%;
    animation-delay: -4s;
}



/* Services Section */
.services-section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #1e90ff, #00bfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: slideInDown 1s ease-out;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #1e90ff, #00bfff);
    border-radius: 2px;
    animation: expandWidth 1.5s ease-out;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(30, 144, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    animation: cardFloat 6s ease-in-out infinite;
}

.service-card:nth-child(2) {
    animation-delay: -2s;
}

.service-card:nth-child(3) {
    animation-delay: -4s;
}

.service-card:nth-child(4) {
    animation-delay: -1s;
}

.service-card:nth-child(5) {
    animation-delay: -3s;
}

.service-card:nth-child(6) {
    animation-delay: -5s;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 144, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(30, 144, 255, 0.2);
    border-color: #1e90ff;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e90ff, #00bfff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
}

.service-card:hover .service-icon::after {
    width: 100px;
    height: 100px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222222;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: #1e90ff;
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.service-card:hover .service-description {
    color: #555;
}

.quote-btn {
    background: linear-gradient(135deg, #1e90ff, #00bfff);
    color: white;
    border: none;
    padding: 0; /* Remove padding since link will handle it */
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block; /* Make button block level */
}

.quote-btn a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 15px 30px; /* Move padding to the link */
    color: inherit;
    text-decoration: none;
    position: relative;
    z-index: 2; /* Ensure link is above the shine effect */
}

.quote-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1; /* Keep shine effect below the link */
}

.quote-btn:hover::before {
    left: 100%;
}

.quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 144, 255, 0.4);
}

/* Ensure the link text inherits button styles */
.quote-btn a:visited,
.quote-btn a:link,
.quote-btn a:active {
    color: white;
    text-decoration: none;
}

/* Optional: Add focus styles for accessibility */
.quote-btn:focus,
.quote-btn a:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* Ensure the button maintains its appearance on different states */
.quote-btn:active {
    transform: translateY(0px);
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.3);
}

.special-card {
    background: linear-gradient(135deg, #1e90ff, #00bfff) !important;
    color: white !important;
}

.special-card .service-title,
.special-card .service-description {
    color: white !important;
}

.special-card .service-icon {
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px) !important;
}

.special-card .quote-btn {
    background: rgb(0, 0, 0) !important;
    
    border: none !important;
    transition: background 0.3s ease, transform 0.3s ease !important;
}

.special-card .quote-btn:hover {
    background: #1e90ff !important;
    transform: translateY(-2px) !important;
}


/* About Section */
.about {
    padding: 80px 20px;
    background: #f8fcff;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #222222;
}

.about-content h2 .highlight {
    color: #1e90ff;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.1);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1e90ff, #00bfff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.about-visual {
    background: linear-gradient(135deg, #1e90ff, #00bfff);
    border-radius: 30px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

/* CTA Section */
.cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e90ff, #00bfff);
    color: white;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta .btn-primary {
    background: white;
    color: #1e90ff;
    font-size: 1.2rem;
    padding: 18px 40px;
}

.cta .btn-primary:hover {
    background: #f0f8ff;
}

/* Footer */
.footer {
    background: #222222;
    color: white;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1e90ff;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #1e90ff;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #999;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }

    to {
        width: 80px;
    }
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        transition: all 0.3s ease;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        gap: 15px;
        background: #1e90fF;
        position: absolute;
        top: 70px;
        right: 20px;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(30, 144, 255, 0.2);
        z-index: 1001;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

/* Custom Cursor Styles */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: #1e90ff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out, width 0.3s ease, height 0.3s ease, background 0.3s ease;
    box-shadow: 0 0 20px rgba(30, 144, 255, 0.5);
}

.cursor-bubble {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(30, 144, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease-out, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
    background: rgba(30, 144, 255, 0.1);
    backdrop-filter: blur(5px);
}

/* Hide default cursor */
* {
    cursor: none !important;
}

/* Hover effects for interactive elements */
a:hover~.custom-cursor,
button:hover~.custom-cursor,
input:hover~.custom-cursor,
textarea:hover~.custom-cursor,
select:hover~.custom-cursor,
[onclick]:hover~.custom-cursor {
    width: 30px;
    height: 30px;
    background: #000000;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

a:hover~.cursor-bubble,
button:hover~.cursor-bubble,
input:hover~.cursor-bubble,
textarea:hover~.cursor-bubble,
select:hover~.cursor-bubble,
[onclick]:hover~.cursor-bubble {
    width: 60px;
    height: 60px;
    border-color: rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.1);
}

/* Mobile responsiveness */
/* Removed media query that hides custom cursor on mobile to enable bubble cursor animations on mobile */
/* @media (hover: none) and (pointer: coarse) {
    * {
        cursor: auto !important;
    }

    .custom-cursor,
    .cursor-bubble {
        display: none;
    }
} */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: linear-gradient(135deg, #25D366 0%, #1ba970 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(12, 219, 88, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(25, 241, 105, 0.6);
}

/* ===================
   UNIVERSAL MOBILE MENU STYLES
   =================== */

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
    z-index: 1001;
    transition: all 0.3s ease;
    outline: none;
}

.mobile-menu-btn:focus {
    outline: 2px solid #1e90ff;
    outline-offset: 2px;
    border-radius: 4px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #1e90ff;
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
    border-radius: 2px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
}

.mobile-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-logo img {
    height: 50px;
    filter: brightness(0) invert(1);
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
    border-radius: 50%;
    outline: none;
}

.mobile-menu-close:hover,
.mobile-menu-close:focus {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
    outline: 2px solid rgba(255, 255, 255, 0.5);
}

.mobile-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 30px;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    margin-bottom: 50px;
}

.mobile-nav-links li {
    margin: 20px 0;
    transform: translateX(-50px);
    opacity: 0;
    transition: all 0.4s ease;
}

.mobile-menu.active .mobile-nav-links li {
    transform: translateX(0);
    opacity: 1;
}

.mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-links li:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav-links li:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav-links li:nth-child(4) { transition-delay: 0.4s; }
.mobile-nav-links li:nth-child(5) { transition-delay: 0.5s; }

.mobile-nav-links a {
    color: white;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    display: block;
    padding: 15px 30px;
    border-radius: 10px;
    outline: none;
}

.mobile-nav-links a::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.8));
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.mobile-nav-links a:hover::after,
.mobile-nav-links a:focus::after {
    width: 60px;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:focus {
    color: #ffffff;
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.1);
    outline: 2px solid rgba(255, 255, 255, 0.3);
}

.mobile-nav-links a.active-page {
    background: rgba(255, 255, 255, 0.2);
    font-weight: 400;
}

.mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s ease 0.6s;
}

.mobile-menu.active .mobile-contact {
    transform: translateY(0);
    opacity: 1;
}

.mobile-phone,
.mobile-email,
.mobile-whatsapp {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 15px 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    outline: none;
}

.mobile-phone:hover,
.mobile-phone:focus,
.mobile-email:hover,
.mobile-email:focus,
.mobile-whatsapp:hover,
.mobile-whatsapp:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    outline: 2px solid rgba(255, 255, 255, 0.5);
}

.mobile-whatsapp {
    background: rgba(37, 211, 102, 0.2);
    border-color: rgba(37, 211, 102, 0.5);
}

.mobile-whatsapp:hover,
.mobile-whatsapp:focus {
    background: rgba(37, 211, 102, 0.3);
    border-color: #25D366;
}

.mobile-phone i,
.mobile-email i,
.mobile-whatsapp i {
    font-size: 1.2rem;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
    height: 100vh;
}

/* Media Queries for Mobile Menu */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-nav-links a {
        font-size: 1.5rem;
    }
    
    .mobile-contact {
        flex-direction: column;
    }
    
    .mobile-phone,
    .mobile-email,
    .mobile-whatsapp {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .mobile-menu-header {
        padding: 15px 20px;
    }
    
    .mobile-nav {
        padding: 30px 20px;
    }
    
    .mobile-nav-links a {
        font-size: 1.3rem;
        padding: 12px 20px;
    }
    
    .mobile-phone,
    .mobile-email,
    .mobile-whatsapp {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    .hero-graphic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
}
/* ==========================================
   COOKIE BANNER & PREFERENCES
   Add this to the END of your style.css
   ========================================== */

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
    will-change: transform;
}

@keyframes slideUp {
    from { 
        transform: translateY(100%); 
        opacity: 0;
    }
    to { 
        transform: translateY(0); 
        opacity: 1;
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-buttons button {
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}

.btn-accept {
    background: linear-gradient(135deg, #1e90ff, #00bfff);
    color: white;
}

.btn-accept:hover {
    background: linear-gradient(135deg, #0056b3, #1e90ff);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 144, 255, 0.4);
}

.btn-decline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Preference Controls (Optional) */
#preference-controls {
    background: white;
    border: 2px solid #1e90ff;
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(30, 144, 255, 0.1);
}

.pref-group {
    margin-bottom: 20px;
}

.pref-group:last-child {
    margin-bottom: 0;
}

.pref-group label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 15px;
    color: #222;
}

.pref-group select {
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    font-size: 14px;
    cursor: pointer;
    min-width: 140px;
    transition: all 0.3s ease;
}

.pref-group select:hover,
.pref-group select:focus {
    border-color: #1e90ff;
    outline: none;
}

.pref-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #1e90ff;
}

/* Theme Variables */
:root {
    --bg-color: #ffffff;
    --text-color: #222222;
    --border-color: #e0e0e0;
    --animation-duration: 0.3s;
}

[data-theme="dark"] {
    --bg-color: #1a1a1a;
    --text-color: #e0e0e0;
    --border-color: #333333;
}

[data-theme="dark"] body {
    background-color: #1a1a1a;
    color: #e0e0e0;
}

[data-theme="dark"] .navbar {
    background: rgba(26, 26, 26, 0.95);
}

[data-theme="dark"] .service-card {
    background: #2a2a2a;
    color: #e0e0e0;
}

[data-theme="dark"] .service-title {
    color: #ffffff;
}

[data-theme="dark"] .service-description {
    color: #cccccc;
}

/* Font Size Variants */
[data-font-size="small"] {
    font-size: 14px;
}

[data-font-size="medium"] {
    font-size: 16px;
}

[data-font-size="large"] {
    font-size: 18px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Mobile Responsive for Cookie Banner */
@media (max-width: 768px) {
    #cookie-banner {
        padding: 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-content p {
        font-size: 13px;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-buttons button {
        flex: 1;
        min-width: 120px;
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
    
    #preference-controls {
        padding: 20px;
    }
    
    .pref-group label {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .pref-group select {
        width: 100%;
    }
}