* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, #4FD1C7 0%, #3B82F6 30%, #06B6D4 70%, #14B8A6 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(79, 209, 199, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(79, 209, 199, 0.2);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.logo h1 {
    background: linear-gradient(135deg, #4FD1C7, #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(79, 209, 199, 0.2);
}

.nav {
    display: flex;
    gap: 2.5rem;
    transition: all 0.3s ease;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #2d80ec, #3B82F6);
    transition: width 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
    color: #1f75ed;
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 101;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, #4FD1C7, #3B82F6);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 99;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    transition: all 0.3s ease;
    transform: translateX(-100%);
}

.nav-mobile.active {
    display: flex;
    transform: translateX(0);
}

.nav-mobile .nav-link {
    font-size: 2rem;
    font-weight: 600;
    color: #374151;
}

/* Enhanced Floating Buttons */
.floating-buttons {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    animation: pulse 2s infinite, vibrate 0.5s ease-in-out infinite alternate;
}

.floating-buttons:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.35);
    animation: pulse 1s infinite, vibrate 0.3s ease-in-out infinite alternate, bounce 0.6s ease-in-out infinite;
}

/* Call Button - Exact Blue Color */
.call-floating {
    left: 20px;
    bottom: 20px;
    background: #007AFF;
    background: linear-gradient(135deg, #007AFF 0%, #0056CC 100%);
}

/* WhatsApp Button - Exact Green Color */
.whatsapp-floating {
    right: 20px;
    bottom: 20px;
    background: #25D366;
    background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
}

.call-btn,
.whatsapp-btn {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.call-btn i,
.whatsapp-btn i {
    font-size: 28px;
    animation: ring 2s ease-in-out infinite;
}

.call-btn:hover,
.whatsapp-btn:hover {
    color: white;
    transform: scale(1.05);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0,0,0,0.25), 0 0 0 0 rgba(0, 122, 255, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0,0,0,0.25), 0 0 0 10px rgba(0, 122, 255, 0);
    }
}

@keyframes vibrate {
    0% { transform: translateX(0) rotate(0deg); }
    25% { transform: translateX(-1px) rotate(-0.5deg); }
    50% { transform: translateX(1px) rotate(0.5deg); }
    75% { transform: translateX(-0.5px) rotate(-0.25deg); }
    100% { transform: translateX(0) rotate(0deg); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.05); }
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-10deg) scale(1.05); }
    75% { transform: rotate(10deg) scale(1.05); }
}

/* WhatsApp Button Specific Pulse */
.whatsapp-floating {
    animation: pulse-whatsapp 2s infinite, vibrate 0.5s ease-in-out infinite alternate;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0,0,0,0.25), 0 0 0 0 rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0,0,0,0.25), 0 0 0 10px rgba(37, 211, 102, 0);
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4FD1C7 0%, #3B82F6 30%, #06B6D4 70%, #14B8A6 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-image {
    margin: 3rem 0;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-image img {
    max-width: 900px;
    width: 100%;
    height: 350px;
    
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.hero-image img:hover {
    transform: scale(1.02);
}

.cta-btn {
    background: rgba(255, 255, 255, 0.95);
    color: #4FD1C7;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
    border: 2px solid rgba(79, 209, 199, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255,255,255,0.4);
    background: white;
    border-color: #4FD1C7;
}

/* Services Overview */
.services-overview {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.services-overview h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #4FD1C7, #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
}

.services-overview h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4FD1C7, #3B82F6);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(79, 209, 199, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(79, 209, 199, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4FD1C7, #3B82F6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(79, 209, 199, 0.3);
    border-color: #4FD1C7;
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 8px rgba(79, 209, 199, 0.3));
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #4FD1C7, #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.service-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-images img {
    width: 100%;
    height: 140px;
    
    border-radius: 15px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 209, 199, 0.2);
    border: 2px solid rgba(79, 209, 199, 0.1);
}

.service-images img:hover {
    transform: scale(1.05);
    border-color: #4FD1C7;
}

/* Enhanced Brands Section with Image Carousel */
.brands-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-top: 2px solid rgba(79, 209, 199, 0.2);
    border-bottom: 2px solid rgba(79, 209, 199, 0.2);
    overflow: hidden;
}

.brands-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #4FD1C7, #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
}

.brands-section h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #4FD1C7, #3B82F6);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.carousel-container {
    overflow: hidden;
    position: relative;
    mask: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.carousel {
    display: flex;
    animation: infiniteScroll 25s linear infinite;
    gap: 2rem;
}

.brand-slide {
    flex: 0 0 220px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid rgba(79, 209, 199, 0.2);
    box-shadow: 0 5px 20px rgba(79, 209, 199, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.brand-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 209, 199, 0.05), rgba(59, 130, 246, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-slide:hover::before {
    opacity: 1;
}

.brand-slide:hover {
    transform: translateY(-5px);
    border-color: #4FD1C7;
    box-shadow: 0 10px 30px rgba(79, 209, 199, 0.25);
}

.brand-logo {
    width: 100%;
    height: 100px;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease;
    background: white;
    padding: 10px;
}

.brand-slide:hover .brand-logo {
    transform: scale(1.05);
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #4FD1C7, #3B82F6);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle fill="rgba(255,255,255,0.05)" cx="200" cy="200" r="100"/><circle fill="rgba(255,255,255,0.03)" cx="800" cy="800" r="150"/></svg>');
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.3rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1E293B, #334155);
    color: white;
    padding: 4rem 0 2rem;
    border-top: 3px solid #4FD1C7;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: #f1f5f9;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #4FD1C7;
}

.footer-section p {
    color: #cbd5e1;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section ul li a:hover {
    color: #4FD1C7;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #475569;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
}

/* Page Specific Styles */
.about-section,
.services-detail,
.contact-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.about-section h1,
.services-detail h1,
.contact-section h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #4FD1C7, #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
}

.about-section h1::after,
.services-detail h1::after,
.contact-section h1::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #4FD1C7, #3B82F6);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .brand-slide {
        flex: 0 0 180px;
    }
}

@media (max-width: 768px) {
    /* Show hamburger menu and hide desktop nav */
    .hamburger {
        display: flex;
    }
    
    .nav {
        display: none;
    }
    
    /* Logo adjustments */
    .logo h1 {
        font-size: 1.5rem;
    }
    
    /* Hero section responsive */
    .hero {
        padding: 4rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
        margin-bottom: 2rem;
    }
    
    .hero-image img {
        height: 250px;
        border-radius: 15px;
    }
    
    .cta-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    /* Services section responsive */
    .services-overview {
        padding: 4rem 0;
    }
    
    .services-overview h2 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    /* Brands section responsive */
    .brands-section {
        padding: 4rem 0;
    }
    
    .brands-section h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .brand-slide {
        flex: 0 0 150px;
        padding: 1rem;
    }
    
    .brand-logo {
        height: 80px;
    }
    
    /* Contact CTA responsive */
    .contact-cta {
        padding: 4rem 0;
    }
    
    .contact-cta h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-item {
        font-size: 1.1rem;
    }
    
    /* Footer responsive */
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    /* Floating buttons responsive */
    .floating-buttons {
        width: 55px;
        height: 55px;
    }
    
    .call-btn i,
    .whatsapp-btn i {
        font-size: 24px;
    }
    
    .call-floating {
        left: 15px;
        bottom: 15px;
    }
    
    .whatsapp-floating {
        right: 15px;
        bottom: 15px;
    }
}

@media (max-width: 480px) {
    /* Container adjustments */
    .container {
        padding: 0 8px;
    }
    
    /* Logo adjustments */
    .logo h1 {
        font-size: 1.2rem;
    }
    
    /* Hero section adjustments */
    .hero {
        padding: 3rem 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-image img {
        height: 200px;
        border-radius: 10px;
    }
    
    .cta-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Services section adjustments */
    .services-overview {
        padding: 3rem 0;
    }
    
    .services-overview h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        line-height: 1.2;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .service-card {
        padding: 1.2rem 0.5rem;
        width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
        min-width: 0;
        max-width: 100%;
    }
    
    .service-icon {
        font-size: 2.2rem;
        margin-bottom: 0.7rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.7rem;
    }
    
    .service-images img {
        height: 100px;
        border-radius: 8px;
    }

    /* Contact page grid adjustments */
    .contact-grid {
        display: block !important;
        width: 100% !important;
        max-width: 100vw !important;
        gap: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .contact-info-card, .service-showcase {
        display: block !important;
        width: 100% !important;
        max-width: 100vw !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        margin: 0 0 1.2rem 0 !important;
        padding: 0.5rem 0.2rem !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }
    .service-showcase .main-image {
        width: 100% !important;
        height: auto !important;
        max-width: 100vw !important;
        min-width: 0 !important;
        display: block !important;
        margin: 0 auto 1rem auto !important;
    }
    .service-gallery {
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    .service-gallery img {
        width: 48%;
        min-width: 0;
        height: 70px;
        object-fit: cover;
        border-radius: 6px;
    }

    /* Services page grid adjustments */
    .service-images-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 1rem !important;
        width: 100% !important;
    }
    .service-image-item {
        width: 90% !important;
        max-width: 350px !important;
        box-sizing: border-box !important;
        text-align: center !important;
        margin: 0 auto 1rem auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .service-image-item img {
        width: 100%;
        max-width: 100%;
        height: 90px;
        object-fit: cover;
        border-radius: 8px;
    }
    .service-category h2 {
        font-size: 1.2rem;
        margin-bottom: 0.7rem;
    }
    .service-image-item h3 {
        font-size: 1rem;
        margin: 0.3rem 0;
    }
    .service-image-item p {
        font-size: 0.95rem;
    }
    
    /* Brands section adjustments */
    .brands-section {
        padding: 3rem 0;
    }
    
    .brands-section h2 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    
    .brand-slide {
        flex: 0 0 100px;
        padding: 0.5rem;
    }
    
    .brand-logo {
        height: 40px;
    }
    
    /* Contact CTA adjustments */
    .contact-cta {
        padding: 2rem 0;
    }
    
    .contact-cta h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    .contact-info {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: stretch;
    }
    .contact-item {
        font-size: 0.95rem;
        width: 100%;
        box-sizing: border-box;
        word-break: break-word;
        padding: 0.5rem 0.2rem;
    }
    
    /* Footer adjustments */
    .footer {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    /* Floating buttons adjustments */
    .floating-buttons {
        width: 50px;
        height: 50px;
    }
    
    .call-btn i,
    .whatsapp-btn i {
        font-size: 20px;
    }
    
    .call-floating {
        left: 10px;
        bottom: 10px;
    }
    
    .whatsapp-floating {
        right: 10px;
        bottom: 10px;
    }
}

body {
    overflow-x: hidden;
}
