:root {
    --primary: #0056b3;
    --primary-light: #337ab7;
    --secondary: #007bff;
    --secondary-hover: #0056b3;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --font-main: 'Inter', sans-serif;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for sticky navbar */
}

body {
    font-family: var(--font-main);
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

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

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

/* Typography */
h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

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

h4 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 600;
}

.text-highlight {
    color: var(--secondary);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-primary-small {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--dark);
    transform: translateY(-3px);
}

.btn-primary-small {
    padding: 10px 24px;
    background-color: var(--secondary);
    color: var(--white);
}

.btn-primary-small:hover {
    background-color: var(--secondary-hover);
}

.w-100 {
    width: 100%;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, #0056b3, #007bff, #0056b3);
    background-size: 200% auto;
    color: var(--white);
    padding: 12px 0;
    position: relative;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.5);
    animation: gradientMove 3s linear infinite;
}

.top-bar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.top-bar-text {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.7rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
}

.top-bar-phone {
    position: absolute;
    right: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 50px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.top-bar-phone:hover {
    background-color: var(--white);
    color: #0056b3;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .top-bar {
        padding: 10px 0;
    }
    .top-bar-container {
        flex-direction: column;
        gap: 10px;
    }
    .top-bar-text {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    .top-bar-phone {
        position: static;
        font-size: 1rem;
        padding: 5px 15px;
        width: fit-content;
    }
}

@keyframes gradientMove {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

@keyframes textPulse {
    0% { transform: scale(1); text-shadow: 0 0 0 rgba(255, 255, 255, 0); }
    50% { transform: scale(1.05); text-shadow: 0 0 10px rgba(255, 255, 255, 0.8); }
    100% { transform: scale(1); text-shadow: 0 0 0 rgba(255, 255, 255, 0); }
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    max-height: 70px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .logo img {
        max-height: 55px;
    }
}

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

.nav-links a:not(.btn-primary-small) {
    font-weight: 500;
    color: var(--dark);
    position: relative;
    transition: var(--transition);
}

.nav-links a:not(.btn-primary-small)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary);
    transition: var(--transition);
}

.nav-links a:not(.btn-primary-small):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1100;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Slider Section */
.hero-section {
    padding: 60px 0;
    background-color: var(--white);
}

.slider-container {
    position: relative;
    max-width: 1100px;
    height: clamp(250px, 45vh, 500px);
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    background-color: var(--dark);
}

.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide {
    position: relative;
    min-width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    cursor: pointer;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.slide:hover img {
    transform: scale(1.05);
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 40px 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--white);
}

.slide-overlay h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.slide-overlay p {
    font-size: 1.1rem;
    opacity: 0.9;
    color: var(--secondary);
    font-weight: 600;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

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

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--secondary);
    width: 24px;
    border-radius: 8px;
}

/* Services */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    position: relative;
    background: var(--dark);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 300px;
    display: block;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-img {
    height: 100%;
    width: 100%;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.15);
}

.service-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: all 0.4s ease;
    padding: 20px;
}

.service-info h3 {
    margin: 0;
    font-size: 1.8rem;
    color: var(--white);
    text-align: center;
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    text-shadow: 0 2px 15px rgba(0,0,0,0.9), 0 0 5px rgba(0,0,0,0.5);
    font-weight: 800;
}

.service-card:hover .service-info h3 {
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .service-info h3 {
        transform: translateY(0) scale(1);
    }
}

/* Portfolio Section */
.portfolio {
    background-color: var(--white);
}

.portfolio-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.portfolio-grid {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollPortfolio 100s linear infinite;
}

.portfolio-grid:hover {
    animation-play-state: paused;
}

.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 320px;
    width: 320px;
    flex-shrink: 0;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

@keyframes scrollPortfolio {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 10px)); }
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

/* About Section Redesign */
.about {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(0, 86, 179, 0.05);
    z-index: 0;
}

.about-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.about-header .subtitle {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 123, 255, 0.1);
    color: var(--secondary);
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.about-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-header p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-content p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.about-stats-new {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--gray);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-features-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.feature-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

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

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: rgba(0, 86, 179, 0.05);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-stats-new {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-features-cards {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--primary) 0%, #004494 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.contact > * {
    position: relative;
    z-index: 1;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    padding: 20px 0;
}

.contact-info h2 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 2.5rem;
    font-weight: 800;
}

.contact-info p {
    opacity: 0.9;
    margin-bottom: 45px;
    font-size: 1.1rem;
}

.info-item {
    margin-bottom: 25px;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.info-item strong {
    white-space: nowrap;
    min-width: 100px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.95);
}

.info-item span, 
.info-item a {
    flex: 1;
    line-height: 1.5;
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--secondary-hover);
    text-decoration: underline;
}

.contact-wrapper.single-column {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info.text-center {
    text-align: center;
}

.info-item.justify-center {
    justify-content: center;
}

.contact-form-container {
    padding: 50px;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--light);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
}

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    height: 100%;
}

.contact-map iframe {
    display: block;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Modal (Lightbox) */
.modal {
    display: none; 
    justify-content: center;
    align-items: center;
    position: fixed; 
    z-index: 2000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.9); 
    backdrop-filter: blur(5px);
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
    animation: zoomModal 0.3s;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
}

.modal-close:hover,
.modal-close:focus {
    color: var(--secondary);
    text-decoration: none;
}

@keyframes zoomModal {
    from {transform:scale(0.8); opacity: 0;} 
    to {transform:scale(1); opacity: 1;}
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* Existing Animations */
@keyframes slowZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 0; /* Remove gap as info block has padding and map fills space */
    }
}

/* FAQ Section */
.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border-left: 5px solid var(--secondary);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.faq-item h3 {
    color: var(--dark);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-item {
        padding: 20px;
    }
    .faq-item:hover {
        transform: none;
    }
    .faq-item h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        z-index: 1099;
        padding: 40px;
        box-shadow: 0 0 50px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 20px;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-section {
        padding: 30px 0;
    }
    
    .slider-container {
        height: 250px;
        border-radius: 16px;
    }

    .slide img {
        object-fit: contain;
        background-color: #f9f9f9;
    }

    .slide-overlay {
        padding: 40px 20px 20px;
    }

    .slide-overlay h2 {
        font-size: 1.4rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .contact-info {
        padding: 0 0 40px 0;
        text-align: center;
    }

    .contact-info h2 {
        font-size: 2rem;
    }
    
    .contact-wrapper {
        margin: 0;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
        margin-bottom: 30px;
    }

    .info-item strong {
        min-width: auto;
    }

    .info-item span, 
    .info-item a {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .faq-grid {
        padding: 0 10px;
    }

    .contact-map iframe {
        min-height: 300px !important;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 250px;
    }
    .slide-overlay h2 {
        font-size: 1.2rem;
    }
    .stat-number {
        font-size: 2.2rem;
    }
    .top-bar-text {
        font-size: 1rem;
    }
}
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .stat-box {
        padding: 25px;
    }
}

/* Service Detail Page */
.service-detail {
    background-color: var(--light);
    min-height: calc(100vh - 200px);
}

.back-link-container {
    margin-bottom: 30px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--secondary);
    transform: translateX(-5px);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 50px;
    box-shadow: var(--shadow);
}

.detail-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
}

.detail-info h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.detail-info .description {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.features-list {
    background: rgba(0, 86, 179, 0.03);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.features-list h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.features-list ul {
    list-style: none;
    padding: 0;
}

.features-list li {
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.check-icon {
    color: var(--secondary);
    font-weight: bold;
    margin-right: 12px;
    font-size: 1.2rem;
}

.action-buttons {
    display: flex;
    gap: 20px;
}

@media (max-width: 992px) {
    .detail-grid {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 40px;
    }
}
@media (max-width: 576px) {
    .action-buttons {
        flex-direction: column;
    }
}

/* Offer Notification */
.offer-notification {
    position: fixed;
    bottom: -150px; /* Hidden initially */
    right: 30px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    z-index: 1000;
    width: 350px;
    max-width: calc(100vw - 40px);
    border-left: 5px solid var(--secondary);
    transition: bottom 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
}

.offer-notification.show {
    bottom: 110px; /* Appear above the whatsapp button */
    opacity: 1;
}

.offer-content {
    padding: 25px;
    position: relative;
    display: flex;
    gap: 15px;
}

.offer-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
    line-height: 1;
    transition: color 0.3s;
}

.offer-close:hover {
    color: var(--dark);
}

.offer-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.offer-text h4 {
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 1.1rem;
}

.offer-text p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.4;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .offer-notification {
        right: 20px;
        bottom: -200px;
    }
    .offer-notification.show {
        bottom: 100px;
    }
}

/* Product Detail Pages */
.detail-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.main-image-container {
    margin-bottom: 20px;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    background: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
    transition: var(--transition);
}

.thumbnail-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.thumbnail-grid .thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.thumbnail-grid .thumb.active,
.thumbnail-grid .thumb:hover {
    border-color: var(--primary);
}

@media (max-width: 992px) {
    .detail-grid-new {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .detail-info-box {
        text-align: center;
    }
    
    .features-card ul {
        text-align: left;
    }
    
    .cta-box {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .main-image-container {
        border-radius: 12px;
    }
    
    .thumbnail-grid .thumb {
        width: 60px;
        height: 60px;
    }
}

.detail-info-box h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.detail-info-box p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.features-card {
    background: var(--light);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
}

.features-card h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.features-card ul {
    display: grid;
    gap: 15px;
    list-style: none;
    padding: 0;
}

.features-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.features-card li .check {
    color: #25d366;
    font-weight: bold;
}

.cta-box {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-box .btn-call {
    font-size: 1.1rem;
    padding: 18px 35px;
    border-radius: 50px;
}

.cta-box .btn-whatsapp-round {
    background: #25d366;
    color: white;
    border: none;
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
}

.cta-box .btn-whatsapp-round:hover {
    transform: scale(1.1);
}
