/* ================================================
   SPD SPORTS THERAPY - ENHANCED PROFESSIONAL CSS
   Maintains current style while adding modern touches
================================================ */

/* ================================================
   ROOT & GLOBAL STYLES
================================================ */

:root {
    --primary-blue: #2563eb;
    --dark-blue: #1d4ed8;
    --light-blue: #dbe7f5;
    --dark-bg: rgba(0, 0, 0, 0.85);
    --text-dark: #0f172a;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', 'Georgia', serif;
    background: var(--light-blue);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ================================================
   NAVBAR
================================================ */

.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: var(--dark-bg);
    z-index: 100;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-logo {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
    margin-right: 10px;
    transition: var(--transition);
}

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

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-links li a {
    color: var(--primary-blue);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    transition: var(--transition);
    font-weight: 500;
    position: relative;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-blue);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-links li a:hover {
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--dark-blue);
}

.nav-links li a:hover::after {
    width: 20px;
}

.nav-current-page {
    display: none !important;
}

/* Mobile Hamburger Menu */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    color: white;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}

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

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

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

/* ================================================
   PAGE CONTAINER & LAYOUT
================================================ */

.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    background-color: rgba(255, 255, 255, 0.95);
    width: 95%;
    max-width: 1000px;
    margin: 50px auto;
    text-align: center;
    box-shadow: var(--shadow-md);
    border-radius: 12px;
    overflow: hidden;
    padding: 50px 40px;
    flex: 1;
}

/* ================================================
   HERO SECTIONS
================================================ */

.hero-section {
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 20px;
    border-radius: 12px;
    margin-bottom: 50px;
    position: relative;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.7), rgba(29, 78, 216, 0.8));
    border-radius: 12px;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: white;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-content .service-button {
    display: inline-block;
    padding: 14px 32px;
    background: white;
    color: var(--primary-blue);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.hero-content .service-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Services page hero */
.hero {
    min-height: 65vh;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.hero-overlay {
    max-width: 850px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 25px;
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================================
   BUTTONS & LINKS
================================================ */

.primary-btn,
.secondary-btn,
.service-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 1rem;
}

.primary-btn,
.service-button {
    background: var(--primary-blue);
    color: white;
}

.primary-btn:hover,
.service-button:hover {
    background: var(--dark-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

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

.secondary-btn:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-2px);
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

/* ================================================
   INTRO SECTION
================================================ */

.intro-section {
    padding: 80px 20px 50px;
    text-align: center;
    background: white;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.intro-content {
    max-width: 850px;
    margin: auto;
}

.intro-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.intro-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ================================================
   SECTION STYLING
================================================ */

.section {
    padding: 80px 30px;
    background: white;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
}

.section h2 {
    color: var(--text-dark);
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.seo-text {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* ================================================
   HEADER & TAGLINE
================================================ */

.header {
    font-size: 2.8rem;
    font-weight: 700;
    padding: 40px 0;
    color: var(--text-dark);
}

.tagline {
    font-size: 1.3rem;
    padding: 25px 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
    color: var(--primary-blue);
    font-weight: 600;
}

/* ================================================
   TOP LINKS
================================================ */

.top-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-size: 0.95rem;
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.9);
    gap: 10px;
}

.top-links a {
    text-decoration: none;
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 6px;
    transition: var(--transition);
    font-weight: 500;
    display: inline-block;
}

.top-links a[href*="wa.me"] {
    background-color: var(--primary-blue);
    color: white;
}

.top-links a[href*="wa.me"]:hover {
    background-color: var(--dark-blue);
}

.top-links a:not([href*="wa.me"]):hover {
    background-color: var(--light-blue);
}

/* ================================================
   RATES SECTION
================================================ */

.rates {
    text-align: center;
    padding: 30px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.rates div {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--light-blue);
    padding: 20px 30px;
    border-radius: 8px;
    min-width: 200px;
    justify-content: center;
}

.rates .duration {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
}

.rates .price-sep {
    margin: 0;
    font-weight: 700;
    color: var(--primary-blue);
}

.rates .amount {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.3rem;
}

/* ================================================
   SERVICES GRID
================================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    margin-bottom: 40px;
}

.service-card {
    background: white;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 20px auto;
    border-radius: 50%;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
}

.service-content {
    padding: 20px 30px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card h2 {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
    flex-grow: 1;
}

.service-card ul {
    margin-bottom: 20px;
    padding-left: 0;
    list-style: none;
}

.service-card li {
    margin-bottom: 10px;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.service-card i {
    color: var(--primary-blue);
    margin-right: 10px;
    font-size: 0.9rem;
}

/* ================================================
   WHY US SECTION
================================================ */

.why-us-section {
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    margin-bottom: 40px;
}

.why-us-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

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

.why-card {
    background: var(--light-blue);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: rgba(37, 99, 235, 0.05);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 15px;
    border-radius: 50%;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    transform: scale(1.1);
}

.why-card h3 {
    margin-bottom: 12px;
    color: var(--text-dark);
}

.why-card p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.8;
}

/* ================================================
   TESTIMONIALS
================================================ */

.testimonials-section {
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-dark);
}

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

/* Horizontal Scrolling Carousel Styles */
.testimonials-scroll-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.testimonials-carousel {
    display: flex;
    gap: 25px;
    overflow-x: hidden;
    padding-bottom: 15px;
    scroll-behavior: smooth;
    max-width: 665px;
    margin: 0 auto;
    width: 665px;
}

/* Webkit scrollbar styling */
.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

/* Slide in animation */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-100px);
    }
}

.testimonial-card {
    background: var(--light-blue);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    flex: 0 0 320px;
    min-width: 320px;
    animation: slideInRight 0.6s ease-out;
}

.testimonial-card.slide-out {
    animation: slideOutLeft 0.6s ease-in forwards;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-card.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.carousel-controls {
    display: none;
}

.carousel-btn {
    display: none;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.testimonial-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-card h4 {
    color: var(--primary-blue);
    font-weight: 600;
}

/* ================================================
   SHARE REVIEW CTA
================================================ */

.share-review-cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
}

.share-review-cta p {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
}

.share-review-cta .secondary-btn {
    background: white;
    color: var(--primary-blue);
    border: none;
    font-weight: 600;
    transition: var(--transition);
}

.share-review-cta .secondary-btn:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ================================================
   CTA SECTION
================================================ */

.final-cta {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 12px;
    margin-bottom: 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
    z-index: 1;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.final-cta .primary-btn {
    position: relative;
    z-index: 1;
    background: white;
    color: var(--primary-blue);
}

.final-cta .primary-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* ================================================
   FOOTER
================================================ */

.footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 50px 20px 30px;
    text-align: center;
    margin-top: auto;
    width: 100%;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
}

.footer h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
    color: white;
}

.footer p {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.footer a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.footer a:hover {
    color: white;
    text-decoration: underline;
}

/* ================================================
   FLOATING WHATSAPP BUTTON
================================================ */

.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--primary-blue);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    z-index: 1000;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.floating-whatsapp:hover {
    background: var(--dark-blue);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
}

/* ================================================
   RESPONSIVE DESIGN
================================================ */

/* Tablet & Smaller Desktop (max 1024px) */
@media only screen and (max-width: 1024px) {
    
    .container {
        max-width: 90%;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}

/* Tablet (max 768px) */
@media only screen and (max-width: 768px) {

    /* Navbar adjustments */
    .nav-toggle {
        display: flex;
    }
    
    .nav-container {
        flex-wrap: wrap;
        gap: 0;
        padding: 12px 15px;
    }
    
    .nav-logo {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .nav-links {
        width: 100%;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background-color: rgba(0, 0, 0, 0.95);
        margin-top: 10px;
        border-radius: 8px;
    }
    
    .nav-links.active {
        max-height: 300px;
    }
    
    .nav-links li {
        border-bottom: 1px solid rgba(37, 99, 235, 0.1);
        width: 100%;
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links li a {
        display: block;
        padding: 12px 20px;
        font-size: 1rem;
        width: 100%;
        border-radius: 0;
    }
    
    .nav-links li a::after {
        display: none;
    }
    
    .nav-links li a:hover {
        background-color: rgba(37, 99, 235, 0.15);
    }

    /* Container adjustments */
    .container {
        width: 90%;
        padding: 25px 20px;
        margin: 25px auto;
    }

    /* Typography */
    h2 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    
    p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* Hero section */
    .hero {
        min-height: 50vh;
        padding: 50px 20px;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .hero-buttons {
        gap: 10px;
        flex-direction: column;
    }

    /* Buttons */
    .primary-btn,
    .secondary-btn,
    .service-button {
        padding: 12px 24px;
        font-size: 0.95rem;
        min-height: 44px;
    }

    /* Hero section cards */
    .hero-section {
        padding: 60px 20px;
        margin-bottom: 25px;
    }

    .hero-content h2 {
        font-size: 1.6rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    /* Sections */
    .section {
        padding: 35px 20px;
        margin-bottom: 25px;
    }

    .section h2 {
        font-size: 1.8rem;
    }

    .intro-section {
        padding: 35px 20px;
    }

    .intro-content h2 {
        font-size: 1.8rem;
    }

    /* Services grid */
    .services-grid {
        grid-template-columns: 1fr;
        padding: 35px 20px;
        gap: 20px;
    }

    .service-card h2 {
        font-size: 1.3rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }

    /* Why us section */
    .why-us-section {
        padding: 35px 20px;
    }

    .why-us-container h2 {
        font-size: 1.8rem;
    }
    
    .why-us-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 35px 20px;
    }

    .testimonials-section h2 {
        font-size: 1.8rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonials-scroll-container {
        display: flex;
        justify-content: center;
        max-width: 280px;
        margin: 0 auto;
    }

    .testimonials-carousel {
        gap: 15px;
        max-width: 280px;
        width: 280px;
    }

    .testimonial-card {
        flex: 0 0 280px;
        min-width: 280px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* CTA section */
    .final-cta {
        padding: 50px 20px;
        margin-bottom: 25px;
    }

    .final-cta h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .final-cta p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    /* Rates */
    .rates {
        gap: 15px;
        flex-direction: column;
        align-items: stretch;
    }

    .rates div {
        min-width: 100%;
        padding: 18px 20px;
        flex-direction: row;
        justify-content: space-between;
    }

    /* Top links */
    .top-links {
        flex-wrap: wrap;
        gap: 10px;
    }

    .top-links a {
        padding: 10px 15px;
        font-size: 0.9rem;
        flex: 1;
        min-width: 120px;
    }

    /* Floating button */
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        padding: 10px 16px;
        font-size: 0.85rem;
        min-height: 44px;
        min-width: 44px;
    }

    /* Footer */
    .footer {
        padding: 30px 20px 20px;
    }

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

    .footer p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .header {
        font-size: 1.6rem;
    }

    .tagline {
        font-size: 1rem;
    }
}

/* Mobile (max 480px) */
@media only screen and (max-width: 480px) {

    /* Navbar mobile */
    .nav-container {
        padding: 10px 12px;
    }
    
    .logo-img {
        height: 35px;
        margin-right: 5px;
    }
    
    .nav-toggle {
        margin-left: auto;
    }
    
    .nav-links {
        margin-top: 8px;
    }
    
    .nav-links.active {
        max-height: 250px;
    }
    
    .nav-links li a {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    /* Typography */
    h1 {
        font-size: 1.6rem;
    }
    
    h2 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Container */
    .container {
        width: 95%;
        padding: 20px 15px;
        margin: 20px auto;
    }

    /* Hero */
    .hero {
        min-height: 40vh;
        padding: 40px 15px;
    }

    .hero h1 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    /* Buttons */
    .primary-btn,
    .secondary-btn,
    .service-button {
        padding: 11px 20px;
        font-size: 0.9rem;
        width: 100%;
        min-height: 44px;
    }

    /* Hero section */
    .hero-section {
        padding: 50px 15px;
        margin-bottom: 20px;
    }

    .hero-content h2 {
        font-size: 1.4rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    /* Sections */
    .section {
        padding: 25px 15px;
        margin-bottom: 20px;
    }

    .section h2 {
        font-size: 1.4rem;
    }

    .intro-section {
        padding: 25px 15px;
    }

    .intro-content h2 {
        font-size: 1.4rem;
    }
    
    .intro-content p {
        font-size: 0.9rem;
    }

    /* Services grid */
    .services-grid {
        grid-template-columns: 1fr;
        padding: 25px 15px;
        gap: 15px;
    }

    .service-card {
        border-radius: 8px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin: 15px auto;
    }

    .service-content {
        padding: 15px 20px 20px;
    }

    .service-card h2 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .service-card p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .service-card li {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    /* Why us */
    .why-us-section {
        padding: 25px 15px;
    }

    .why-us-container h2 {
        font-size: 1.4rem;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .why-card {
        padding: 20px;
        border-radius: 8px;
    }

    .why-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .why-card h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .why-card p {
        font-size: 0.85rem;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 25px 15px;
    }

    .testimonials-section h2 {
        font-size: 1.4rem;
    }

    .testimonials-grid {
        gap: 15px;
    }

    .testimonials-scroll-container {
        display: flex;
        justify-content: center;
        max-width: 260px;
        margin: 0 auto;
    }

    .testimonials-carousel {
        gap: 12px;
        padding-bottom: 10px;
        max-width: 260px;
        width: 260px;
        margin: 0 auto;
    }

    .testimonial-card {
        flex: 0 0 260px;
        min-width: 260px;
        padding: 20px;
        border-radius: 8px;
    }

    .stars {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .testimonial-card p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .testimonial-card h4 {
        font-size: 0.9rem;
    }

    /* CTA */
    .final-cta {
        padding: 40px 15px;
        margin-bottom: 20px;
    }

    .final-cta h2 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .final-cta p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    /* Rates */
    .rates {
        gap: 10px;
        flex-direction: column;
    }

    .rates div {
        min-width: 100%;
        padding: 15px 15px;
        font-size: 0.9rem;
    }

    .rates .duration {
        font-size: 0.9rem;
    }

    .rates .amount {
        font-size: 1.1rem;
    }

    /* Top links */
    .top-links {
        flex-direction: column;
        gap: 8px;
        padding: 15px;
        font-size: 0.85rem;
    }

    .top-links a {
        padding: 10px 12px;
        font-size: 0.85rem;
        width: 100%;
        min-height: 44px;
    }

    /* Header & Tagline */
    .header {
        font-size: 1.4rem;
        padding: 25px 0;
    }

    .tagline {
        font-size: 0.95rem;
        padding: 15px 0;
    }

    .seo-text {
        font-size: 0.9rem;
    }

    /* Floating button */
    .floating-whatsapp {
        bottom: 15px;
        right: 15px;
        padding: 10px 12px;
        font-size: 0.8rem;
        min-height: 44px;
        min-width: 44px;
        gap: 6px;
    }

    /* Footer */
    .footer {
        padding: 25px 15px 15px;
    }

    .footer h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .footer p {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
}

/* Extra Small Devices (max 360px) */
@media only screen and (max-width: 360px) {
    
    .container {
        width: 96%;
        padding: 18px 12px;
    }
    
    .hero h1 {
        font-size: 1.4rem;
    }
    
    h2 {
        font-size: 1.25rem;
    }
    
    .primary-btn,
    .secondary-btn,
    .service-button {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .nav-links li a {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .floating-whatsapp {
        padding: 8px 10px;
        font-size: 0.75rem;
    }
}

/* ================================================
   ANIMATIONS & EFFECTS
================================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-in {
    animation: slideInLeft 0.6s ease-out;
}
