/* ============================================
   CSS Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Premium Attractive Color Palette with Beautiful Gradients */
    --primary-color: #1e40af; /* Rich Royal Blue */
    --primary-dark: #1e3a8a; /* Deep Navy Blue */
    --primary-light: #3b82f6; /* Bright Sky Blue */
    --primary-lighter: #60a5fa; /* Light Sky Blue */
    
    --accent-color: #f59e0b; /* Vibrant Amber Gold */
    --accent-dark: #d97706; /* Rich Amber */
    --accent-light: #fbbf24; /* Light Gold */
    
    --secondary-color: #1f2937; /* Charcoal Gray */
    --secondary-dark: #111827; /* Deep Charcoal */
    
    --success: #10b981; /* Emerald Green */
    --success-dark: #059669; /* Deep Emerald */
    --success-light: #34d399; /* Light Emerald */
    
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    
    --white: #ffffff;
    --gray-light: #f9fafb; /* Almost White */
    --gray-medium: #f3f4f6; /* Very Light Gray */
    --gray-border: #e5e7eb; /* Light Border Gray */
    
    /* Beautiful Multi-Color Gradients */
    --gradient-primary: linear-gradient(135deg, #1e40af 0%, #1e3a8a 50%, #1e3a8a 100%);
    --gradient-primary-light: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    --gradient-primary-bright: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #1e40af 100%);
    
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #f59e0b 100%);
    --gradient-accent-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    --gradient-accent-warm: linear-gradient(135deg, #fcd34d 0%, #fbbf24 50%, #f59e0b 100%);
    
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-success-bright: linear-gradient(135deg, #34d399 0%, #10b981 50%, #059669 100%);
    
    /* Mixed Attractive Gradients */
    --gradient-blue-gold: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #f59e0b 100%);
    --gradient-blue-teal: linear-gradient(135deg, #1e40af 0%, #10b981 50%, #059669 100%);
    --gradient-gold-blue: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #3b82f6 100%);
    --gradient-purple-blue: linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #1e40af 100%);
    
    /* Sophisticated Shadows */
    --shadow: rgba(30, 64, 175, 0.12);
    --shadow-md: rgba(30, 64, 175, 0.18);
    --shadow-lg: rgba(30, 64, 175, 0.25);
    --shadow-gold: rgba(245, 158, 11, 0.25);
    --shadow-gold-lg: rgba(245, 158, 11, 0.35);
    --shadow-success: rgba(16, 185, 129, 0.25);
    --shadow-xl: rgba(0, 0, 0, 0.15);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    position: fixed;
    background: var(--white);
    backdrop-filter: blur(10px);
}

/* For contact page and other pages */
body:not(.home-page) .navbar {
    position: fixed;
    background: var(--white);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px var(--shadow-lg);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-cta {
    background: var(--gradient-accent-gold);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--shadow-gold);
    border: 2px solid transparent;
}

.nav-cta:hover {
    background: var(--gradient-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--shadow-gold-lg);
    border-color: var(--accent-light);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: var(--transition);
    border-radius: 3px;
}

/* ============================================
   Floating Buttons
   ============================================ */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 4px 15px var(--shadow-lg);
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.float-btn:nth-child(2) {
    animation-delay: 0.5s;
}

.whatsapp-btn {
    background: var(--gradient-success-bright);
    box-shadow: 0 4px 20px var(--shadow-success);
}

.call-btn {
    background: var(--gradient-primary);
    box-shadow: 0 4px 20px var(--shadow-md);
}

.float-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 30px var(--shadow-lg);
}

.whatsapp-btn:hover {
    box-shadow: 0 8px 30px var(--shadow-success);
}

.call-btn:hover {
    box-shadow: 0 8px 30px var(--shadow-lg);
}

.float-btn i {
    font-size: 1.5rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.slide-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    padding: 2rem;
    max-width: 800px;
    position: relative;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary-bright);
    color: var(--white);
    box-shadow: 0 4px 20px var(--shadow-md);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--shadow-lg);
}

.btn-secondary {
    background: var(--gradient-success-bright);
    color: var(--white);
    box-shadow: 0 4px 20px var(--shadow-success);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    background: var(--gradient-success);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--shadow-success);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--secondary-color);
}

.btn-block {
    width: 100%;
    text-align: center;
}

.rating-badge {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stars {
    background: var(--gradient-accent-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px var(--shadow-gold));
}

.rating-text {
    font-weight: 700;
    margin-right: 10px;
}

.review-count {
    color: var(--text-light);
    font-size: 0.9rem;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 3;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent-color);
    width: 30px;
    border-radius: 6px;
}

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-accent-gold);
    border-radius: 10px;
    box-shadow: 0 2px 10px var(--shadow-gold);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 1.5rem;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    background: var(--gray-light);
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-border);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary-bright);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-lg);
    border-color: var(--primary-light);
}

/* About Story Section */
.about-story {
    margin-bottom: 4rem;
}

.story-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    max-width: 900px;
    margin: 0 auto;
}

.story-title {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.story-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-accent-gold);
    border-radius: 2px;
}

.story-text {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.story-text:last-child {
    margin-bottom: 0;
}

.story-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Statistics Section */
.stats-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background: var(--gradient-primary-bright);
    border-radius: 25px;
    box-shadow: 0 15px 50px var(--shadow-lg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stat-card {
    text-align: center;
    color: var(--white);
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mission & Vision Section */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.mission-card,
.vision-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary-bright);
}

.vision-card::before {
    background: var(--gradient-accent-gold);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-lg);
}

.mission-icon,
.vision-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary-bright);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 8px 20px var(--shadow-md);
}

.vision-icon {
    background: var(--gradient-accent-gold);
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.mission-card p,
.vision-card p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
    text-align: justify;
}

/* Why Choose Section */
.why-choose-section {
    margin-top: 4rem;
}

.why-title {
    font-size: 2.2rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.why-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-accent-gold);
    border-radius: 10px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary-bright);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 6px 20px var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.feature-item p {
    color: var(--text-light);
}

/* ============================================
   Services Section
   ============================================ */
.services-section {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border: 2px solid var(--gray-medium);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.15), transparent);
    transition: var(--transition);
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-lg), 0 0 0 1px rgba(245, 158, 11, 0.1);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-blue-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--white);
    transition: var(--transition);
    box-shadow: 0 6px 25px var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: var(--transition-slow);
}

.service-card:hover .service-icon::after {
    width: 200px;
    height: 200px;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-btn {
    background: var(--gradient-primary-bright);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition);
}

.service-btn:hover::before {
    left: 100%;
}

.service-btn:hover {
    background: var(--gradient-accent-gold);
    color: var(--white);
    border-color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-gold-lg);
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonials-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 3rem;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px var(--shadow-lg);
    border: 2px solid var(--gray-border);
    position: relative;
    transition: var(--transition);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-accent-gold);
    border-radius: 20px 20px 0 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px var(--shadow-lg);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--gray-light);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary-bright);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 15px var(--shadow-md);
}

.testimonial-info {
    flex: 1;
}

.testimonial-info h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.testimonial-stars {
    color: var(--accent-color);
    font-size: 1rem;
    display: flex;
    gap: 3px;
}

.google-badge {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
    flex-shrink: 0;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: var(--primary-light);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-date {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: right;
    font-weight: 500;
}

.testimonial-prev,
.testimonial-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gradient-primary-bright);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--shadow-md);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-prev {
    left: 0;
}

.testimonial-next {
    right: 0;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--gradient-primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px var(--shadow-lg);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-medium);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background: var(--accent-color);
    width: 30px;
    border-radius: 6px;
}

/* Google Reviews Embed Section */
.google-reviews-embed-section {
    margin-top: 4rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px var(--shadow-lg);
}

.google-reviews-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gray-light);
}

.google-rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.google-logo-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.3);
}

.rating-details {
    text-align: center;
}

.rating-score {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.rating-stars-large {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    gap: 3px;
    justify-content: center;
}

.total-reviews {
    font-size: 1.2rem;
    color: var(--text-medium);
    font-weight: 600;
}

.google-reviews-embed-container {
    min-height: 400px;
    background: var(--gray-light);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
}

.google-reviews-note {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-medium);
}

.google-reviews-note i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.google-reviews-note p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.google-reviews-note small {
    display: block;
    margin-top: 1rem;
}

.google-reviews-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.google-reviews-note a:hover {
    text-decoration: underline;
}

.google-reviews-widget {
    width: 100%;
    min-height: 400px;
}

.google-reviews-link {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.view-all-reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-primary-bright);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 8px 25px var(--shadow-md);
}

.view-all-reviews-btn:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--shadow-lg);
}

.write-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-accent-gold);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 8px 25px var(--shadow-gold);
}

.write-review-btn:hover {
    background: var(--gradient-accent);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--shadow-gold-lg);
}

.view-all-reviews-btn i {
    font-size: 1.3rem;
}

/* Google Review Item Styles */
.manual-reviews-display {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.google-review-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    border-left: 4px solid var(--accent-color);
    transition: var(--transition);
}

.google-review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-md);
    border-left-color: var(--primary-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-light);
}

.review-author {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.review-rating {
    color: var(--accent-color);
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.review-time {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
}

.review-text {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-source {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.review-source i {
    color: #4285f4;
    font-size: 1.2rem;
}

/* ============================================
   Updates Section
   ============================================ */
.updates-section {
    background: linear-gradient(135deg, var(--gray-light), var(--white));
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.update-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.update-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-accent-gold);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: var(--transition-slow);
}

.update-card:hover::after {
    transform: scaleY(1);
}

.update-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px var(--shadow-lg);
}

.update-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: 0 4px 15px var(--shadow-gold);
    position: relative;
    overflow: hidden;
}

.update-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.update-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.update-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    background: var(--white);
    padding: 80px 0;
}

.faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--gray-border);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 3px 10px var(--shadow);
}

.faq-item:hover {
    box-shadow: 0 5px 20px var(--shadow-md);
    border-color: var(--primary-light);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--gray-light);
    transition: var(--transition);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    position: relative;
    z-index: 1;
}

.faq-question:hover {
    background: var(--primary-light);
    color: var(--white);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    flex: 1;
    pointer-events: none;
    user-select: none;
}

.faq-question:hover h3 {
    color: var(--white);
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-question:hover i {
    color: var(--white);
    transform: rotate(180deg);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    background: var(--gradient-primary-bright);
    color: var(--white);
}

.faq-item.active .faq-question h3 {
    color: var(--white);
}

.faq-item.active .faq-question i {
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
    padding: 0 2rem;
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 1.5rem 2rem;
    opacity: 1;
}

.faq-answer p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
    display: block;
    visibility: visible;
}

.faq-answer strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* ============================================
   Map Section
   ============================================ */
.map-section {
    background: var(--white);
    padding: 60px 0;
}

.map-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-lg);
}

.map-info {
    background: var(--gradient-accent-gold);
    padding: 1.5rem;
    text-align: center;
    color: var(--white);
    box-shadow: 0 4px 20px var(--shadow-gold);
}

.map-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.map-info i {
    margin-right: 10px;
}

.map-info p {
    font-size: 1rem;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    background: var(--gray-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-lg);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary-bright);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 15px var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: var(--transition-slow);
}

.contact-item:hover .contact-icon::before {
    width: 150px;
    height: 150px;
}

.whatsapp-icon {
    background: var(--success);
    color: var(--white);
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary-dark);
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
}

.highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-lg);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-medium);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.15), 0 4px 15px var(--shadow);
    transform: translateY(-2px);
}

.form-note {
    text-align: center;
    color: var(--text-light);
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo .logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.footer-logo:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px var(--primary-color));
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: var(--accent-color);
    margin-top: 5px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-5px);
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--success);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: var(--transition);
}

.footer-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.seo-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Animations
   ============================================ */
.animate-fade-in {
    animation: fadeIn 1s ease-in-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-in-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-in-out 0.6s both;
}

.animate-fade-in-delay-3 {
    animation: fadeIn 1s ease-in-out 0.9s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .logo-img {
        height: 40px;
    }

    .logo span {
        font-size: 1.2rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px var(--shadow);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-cta {
        margin-top: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .float-btn span {
        display: none;
    }

    .float-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 0;
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid,
    .services-grid,
    .updates-grid {
        grid-template-columns: 1fr;
    }

    .story-content {
        padding: 2rem 1.5rem;
    }

    .story-title {
        font-size: 1.8rem;
    }

    .story-text {
        font-size: 1rem;
        text-align: left;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-icon {
        font-size: 2.5rem;
    }

    .mission-vision {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-card,
    .vision-card {
        padding: 2rem 1.5rem;
    }

    .why-title {
        font-size: 1.8rem;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-item.active .faq-answer {
        padding: 1.2rem 1.5rem;
    }

    .faq-answer p {
        font-size: 1rem;
    }

    .testimonials-slider-wrapper {
        padding: 0 1rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .google-reviews-embed-section {
        padding: 2rem 1.5rem;
    }

    .google-rating-summary {
        flex-direction: column;
        gap: 1.5rem;
    }

    .rating-score {
        font-size: 2.5rem;
    }

    .google-reviews-embed-container {
        padding: 1.5rem;
        min-height: 300px;
    }

    .google-review-item {
        padding: 1.5rem;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .google-reviews-link {
        flex-direction: column;
        align-items: center;
    }

    .view-all-reviews-btn,
    .write-review-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .testimonial-header {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .testimonial-prev,
    .testimonial-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .testimonial-prev {
        left: -10px;
    }

    .testimonial-next {
        right: -10px;
    }

    .view-all-reviews-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo .logo-img {
        height: 40px;
    }

    .social-links {
        justify-content: center;
    }

    .slider-controls {
        padding: 0 1rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-card,
    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .map-info {
        padding: 1rem;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .navbar,
    .floating-buttons,
    .slider-controls,
    .slider-dots {
        display: none;
    }
}

