/* Base Styles & Variables */
:root {
    --navy-blue: #00162A;
    --navy-blue-light: #002A54;
    --navy-blue-lighter: #003A6E;
    --golden-yellow: #966919;
    --golden-yellow-light: #B8860B;
    --golden-yellow-lighter: #DAA520;
    --sparkling-gold: linear-gradient(135deg, #966919 0%, #B8860B 25%, #DAA520 50%, #B8860B 75%, #966919 100%);
    --gold-gradient: linear-gradient(135deg, #966919, #DAA520);
    --blue-gradient: linear-gradient(135deg, #00162A, #002A54);
    --light-yellow: #FFF8E7;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --super-gradient: linear-gradient(135deg, #00162A 0%, #966919 50%, #00162A 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: var(--dark-gray);
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

h1, h2, h3, h4 {
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--super-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 15px rgba(150, 105, 25, 0.3);
    position: relative;
    display: inline-block;
}

h1:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    background: var(--sparkling-gold);
    bottom: -5px;
    left: 0;
    border-radius: 2px;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--sparkling-gold);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.2rem;
}

section {
    padding: 5rem 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-block;
    background: var(--sparkling-gold);
    color: var(--navy-blue);
    padding: 0.9rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(150, 105, 25, 0.3);
    position: relative;
    overflow: hidden;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn:hover:before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(150, 105, 25, 0.4);
}

.btn-navy {
    background: var(--blue-gradient);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 22, 42, 0.3);
}

.btn-navy:hover {
    background: linear-gradient(135deg, var(--navy-blue-light) 0%, var(--navy-blue) 100%);
    box-shadow: 0 6px 20px rgba(0, 22, 42, 0.4);
}

.highlight {
    color: var(--navy-blue);
    font-weight: 700;
}

.super-badge {
    background: var(--sparkling-gold);
    color: var(--navy-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 0.5rem;
    vertical-align: middle;
    white-space: nowrap; /* prevents wrapping on mobile */
}

/* Header & Navigation */
header {
    background: var(--blue-gradient);
    box-shadow: 0 5px 20px rgba(0, 22, 42, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.8rem;
}

.logo-img {
    height: 50px;
    width: 50px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(0, 22, 42, 0.9), rgba(0, 42, 84, 0.9));
}

.logo-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--sparkling-gold);
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.logo-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 6px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(150, 105, 25, 0.4), rgba(218, 165, 32, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.logo:hover .logo-img {
    transform: translateY(-2px) rotate(2deg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.logo-text {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 800;
}

.logo-text span {
    background: var(--sparkling-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--sparkling-gold);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

.nav-links a:hover:after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--golden-yellow-lighter);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 1rem;
}

.social-icon {
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon.whatsapp:hover {
    background-color: #25D366;
    color: white;
    transform: translateY(-3px);
}

.social-icon.facebook:hover {
    background-color: #1877F2;
    color: white;
    transform: translateY(-3px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--white);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 22, 42, 0.85) 0%, rgba(0, 42, 84, 0.75) 100%), 
                url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    padding: 10rem 1rem;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23966919' fill-opacity='0.08' fill-rule='evenodd'/%3E%3C/svg%3E");
    animation: sparkle 20s linear infinite;
    pointer-events: none;
}

@keyframes sparkle {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-1000px) translateX(-1000px); }
}

.hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #ffffff 0%, var(--golden-yellow-lighter) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

/* Gallery Section */
.gallery {
    background-color: var(--light-gray);
    position: relative;
}

.gallery:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--sparkling-gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 22, 42, 0.1);
    transition: var(--transition);
    height: 250px;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 22, 42, 0.2);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 22, 42, 0.9), transparent);
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: var(--golden-yellow-lighter);
    margin-bottom: 0.5rem;
}

.gallery-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* Services Section */
.services {
    background-color: var(--light-gray);
    position: relative;
}

.services:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--sparkling-gold);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 22, 42, 0.08);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(150, 105, 25, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--sparkling-gold);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 22, 42, 0.15);
}

.service-icon {
    background: var(--sparkling-gold);
    color: var(--white);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(150, 105, 25, 0.3);
}

.schedules {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.schedule-badge {
    background: var(--blue-gradient);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 22, 42, 0.2);
}

/* Specialized Services */
.specialized-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.specialized-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 22, 42, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(150, 105, 25, 0.1);
}

.specialized-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 22, 42, 0.15);
}

.specialized-header {
    background: var(--blue-gradient);
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.specialized-header:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--sparkling-gold);
    opacity: 0.1;
    transform: rotate(45deg);
}

.specialized-header h3 {
    color: var(--white);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.specialized-body {
    padding: 1.5rem;
}

/* Industries Section */
.industries {
    background-color: var(--light-gray);
    position: relative;
}

.industries:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--sparkling-gold);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.industry-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 22, 42, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(150, 105, 25, 0.05);
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 22, 42, 0.1);
    border: 1px solid rgba(150, 105, 25, 0.2);
}

.industry-icon {
    background: var(--sparkling-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    margin-right: 1rem;
    min-width: 50px;
    filter: drop-shadow(0 2px 5px rgba(150, 105, 25, 0.3));
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.trust-badges span {
    background: var(--sparkling-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.trust-badges i {
    font-size: 1.2rem;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 22, 42, 0.1);
    border: 5px solid transparent;
    background: linear-gradient(white, white) padding-box,
                var(--sparkling-gold) border-box;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.contact {
    background-color: var(--light-gray);
    position: relative;
}

.contact:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--sparkling-gold);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info h3 {
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    background: var(--sparkling-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
    filter: drop-shadow(0 2px 5px rgba(150, 105, 25, 0.3));
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 22, 42, 0.1);
    border: 1px solid rgba(150, 105, 25, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--navy-blue);
}

.form-control {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--golden-yellow);
    box-shadow: 0 0 0 3px rgba(150, 105, 25, 0.2);
}

select.form-control {
    height: 3.2rem;
}

/* Footer */
footer {
    background: var(--blue-gradient);
    color: var(--white);
    padding: 3rem 1rem;
    position: relative;
    overflow: hidden;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--sparkling-gold);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-logo span {
    background: var(--sparkling-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social .social-icon {
    color: var(--white);
    font-size: 1.3rem;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
}

.footer-social .social-icon:hover {
    transform: translateY(-5px);
}

.footer-social .social-icon.whatsapp:hover {
    background-color: #25D366;
}

.footer-social .social-icon.facebook:hover {
    background-color: #1877F2;
}

.footer-links h4, .footer-services h4 {
    color: var(--golden-yellow-lighter);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul, .footer-services ul {
    list-style: none;
}

.footer-links li, .footer-services li {
    margin-bottom: 0.8rem;
}

.footer-links a, .footer-services a {
    color: #ddd;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover, .footer-services a:hover {
    color: var(--golden-yellow-lighter);
    transform: translateX(5px);
}

.footer-legal {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-legal a {
    color: #ddd;
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer-legal a:hover {
    color: var(--golden-yellow-lighter);
}

.copyright {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #aaa;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Sticky Mobile CTA */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--navy-blue);
    padding: 0.8rem 1rem;
    text-align: center;
    z-index: 99;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.2);
}

.mobile-cta .btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.4rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 8rem 1rem;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--blue-gradient);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 5px 20px rgba(0, 22, 42, 0.3);
        z-index: 1000;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .social-icons {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    section {
        padding: 3.5rem 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    /* Show sticky CTA on mobile */
    .mobile-cta {
        display: block;
    }

    /* Adjust bottom padding to avoid overlapping with CTA */
    body {
        padding-bottom: 70px;
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.4rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .service-card, .specialized-card {
        padding: 1.5rem;
    }
    
    .whatsapp-float {
        bottom: 80px; /* raise above mobile CTA */
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .logo-img {
        height: 45px;
        width: 45px;
    }
}