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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Global Image Responsiveness */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Floating WhatsApp & Call Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-btn, .call-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.call-btn {
    background: #FF6B35;
}

.call-btn:hover {
    background: #FF8C42;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn, .call-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Top Bar */
.top-bar {
    background: #FF6B35;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
}

.top-nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    transition: opacity 0.3s;
}

.top-nav a:hover {
    opacity: 0.8;
}

/* Header */
header {
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s;
}

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

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: opacity 0.3s;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.logo-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.logo-circle svg {
    width: 50px;
    height: 50px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 28px;
    font-weight: 700;
    color: #FF6B35;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 1px;
}

.logo-description {
    font-size: 12px;
    color: #666;
    margin: 3px 0 0 0;
    line-height: 1.3;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-nav a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.header-nav a:not(.contact-btn):hover {
    color: #FF6B35;
}

.header-nav a:not(.contact-btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF6B35;
    transition: width 0.3s ease;
}

.header-nav a:not(.contact-btn):hover::after {
    width: 100%;
}

.contact-btn {
    background: linear-gradient(90deg, #FF6B35 0%, #FF8C42 100%);
    color: white !important;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.contact-btn::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    z-index: 1001;
}

/* Mobile Menu Sidebar */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 350px;
    height: 100%;
    background: white;
    z-index: 9999;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-menu-sidebar.active {
    left: 0;
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: white;
    position: sticky;
    top: 0;
    z-index: 1;
}

.mobile-logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex: 1;
    transition: opacity 0.3s;
}

.mobile-logo-link:hover {
    opacity: 0.8;
}

.mobile-logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    cursor: pointer;
}

.mobile-logo-section .logo-circle {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.mobile-logo-section .logo-circle svg {
    width: 50px;
    height: 50px;
}

.mobile-logo-text {
    display: flex;
    flex-direction: column;
}

.mobile-logo-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.mobile-logo-description {
    font-size: 10px;
    color: #666;
    margin: 3px 0 0 0;
    line-height: 1.3;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
    flex-shrink: 0;
}

.mobile-menu-close:hover {
    color: #FF6B35;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 0;
}

.mobile-nav a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s, padding-left 0.3s;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    color: #FF6B35;
    padding-left: 10px;
}

.mobile-contact-btn {
    background: linear-gradient(90deg, #FF6B35 0%, #FF8C42 100%);
    color: white !important;
    padding: 15px 20px !important;
    border-radius: 25px;
    text-align: center;
    margin-top: 10px;
    border: none !important;
}

.mobile-contact-btn:hover {
    padding-left: 20px !important;
    opacity: 0.9;
}

/* Hero Slider */
.hero-slider {
    position: relative !important;
    height: 600px !important;
    overflow: hidden !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hero-slider .slide {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    transition: opacity 1s ease-in-out !important;
    background-size: cover !important;
    background-position: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    visibility: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hero-slider .slide-image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    z-index: 0 !important;
    display: block !important;
}

.hero-slider .slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1 !important;
}

.hero-slider .slide-content {
    text-align: center !important;
    color: white !important;
    z-index: 2 !important;
    max-width: 800px !important;
    padding: 0 20px !important;
    position: relative !important;
}

.slide-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 24px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-slider .slide-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.4) !important;
    z-index: 1 !important;
}

.slide-bg-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.slide-bg-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.slide-bg-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.slide-bg-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.btn-primary {
    background: #FF6B35;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

/* Button Groups */
.btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 25px;
}

.btn-group .btn-primary {
    margin: 0;
}

/* Location Card */
.location-card {
    max-width: 800px;
    margin: 35px auto;
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.location-card-content {
    text-align: center;
    margin-bottom: 30px;
}

.location-icon {
    font-size: 48px;
    color: #FF6B35;
    margin-bottom: 20px;
}

.location-card h3 {
    color: #333;
    margin-bottom: 15px;
}

.location-card p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

.location-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

/* Contact Form */
.contact-form-container {
    max-width: 600px;
    margin: 50px auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    width: 100%;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    width: 100%;
}

.contact-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Form Messages */
#form-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

#form-message i {
    margin-right: 8px;
}

/* Contact Cards Grid */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 50px auto;
}

.hero-slider .slider-nav {
    position: absolute !important;
    bottom: 30px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    gap: 10px !important;
    z-index: 10 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hero-slider .slider-dot {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.5) !important;
    cursor: pointer !important;
    transition: background 0.3s !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}

.hero-slider .slider-dot.active {
    background: white !important;
}

/* Section Styles */
.section {
    padding: 50px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Intro Section */
.intro-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
    padding: 40px 40px;
    border-bottom: 1px solid #e9ecef;
}

.intro-section h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.intro-section p {
    font-size: 18px;
    color: #666;
    max-width: 900px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

.highlight {
    color: #FF6B35;
    font-weight: 700;
}

/* Services Section Background */
.services-bg-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 35px;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.15);
    border-color: #FF6B35;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    transition: transform 0.3s;
}

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

.service-image {
    width: 100%;
    height: 250px;
    margin: 0 auto 20px;
    border-radius: 12px;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

.service-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card a {
   
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid #FF6B35;
    border-radius: 25px;
    margin-top: 10px;
}

.service-card a:hover {
    color: white;
    background: #FF6B35;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.1);
}

.feature-item i {
    font-size: 48px;
    color: #FF6B35;
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.feature-item p {
    color: #666;
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f0f0f0;
    position: relative;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
}

.gallery-info {
    padding: 20px;
}

.gallery-info h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.gallery-info p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.product-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.btn-view, .btn-details {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-view {
    background: #FF6B35;
    color: white;
}

.btn-view:hover {
    background: #FF8C42;
}

.btn-details {
    background: #f0f0f0;
    color: #333;
}

.btn-details:hover {
    background: #e0e0e0;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 80px;
    color: #FF6B35;
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.2;
}

.testimonial-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #333;
}

.testimonial-location {
    color: #999;
    font-size: 14px;
}

/* Franchise Section */
.franchise-section {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
    text-align: center;
    padding: 50px 40px;
    margin: 0;
}

.franchise-section .section-title,
.franchise-section .section-subtitle {
    color: white;
}

.franchise-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 35px;
}

.franchise-option {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s, background 0.3s;
}

.franchise-option:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.franchise-option h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.franchise-option p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.franchise-option a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid white;
    transition: opacity 0.3s;
}

.franchise-option a:hover {
    opacity: 0.8;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 60px 40px 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #FF6B35;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #FF6B35;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #FF6B35;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
}

/* Main Content */
main {
    padding: 0;
}

/* Image Card Slider Section */
.image-slider-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    width: 100% !important;
}

.image-slider-section .section {
    max-width: 100% !important;
    width: 100% !important;
    padding: 50px 40px !important;
    margin: 0 !important;
}

.image-card-slider-container {
    position: relative;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto;
    padding: 0 40px;
}

.image-card-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    position: relative;
    cursor: grab;
}

.image-card-slider:active {
    cursor: grabbing;
}

.image-card-slider::-webkit-scrollbar {
    display: none;
}

.image-card-slide {
    flex: 0 0 calc(33.333% - 14px);
    scroll-snap-align: start;
    min-width: 300px;
    flex-shrink: 0;
}

.image-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 300px;
    cursor: pointer;
    border: 2px solid transparent;
}

.image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
    border-color: #FF6B35;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.image-card:hover img {
    transform: scale(1.1);
}

.image-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px 20px 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.image-card:hover .image-card-overlay {
    transform: translateY(0);
}

.image-card-overlay h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #FF6B35;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: background 0.3s, transform 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    opacity: 0.9;
}

.slider-btn:hover {
    background: #FF8C42;
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-btn-prev {
    left: 10px;
}

.slider-btn-next {
    right: 10px;
}

.slider-dots-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dot-item {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.slider-dot-item.active {
    background: #FF6B35;
    transform: scale(1.3);
}

.slider-dot-item:hover {
    background: #FF8C42;
}

/* Responsive Design */

/* Large Tablets and Small Desktops (1024px - 1200px) */
@media (max-width: 1200px) {
    .header-container {
        padding: 15px 30px;
    }
    
    .section {
        padding: 60px 30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .image-card-slider-container {
        padding: 0 30px;
    }
    
    .image-card-slide {
        flex: 0 0 calc(33.333% - 14px);
        min-width: 280px;
    }
    
    .image-slider-section .section {
        padding: 50px 30px !important;
    }
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .top-bar-container {
        padding: 0 30px;
    }
    
    .header-container {
        padding: 15px 30px;
    }
    
    .header-nav {
        gap: 20px;
    }
    
    .header-nav a {
        font-size: 14px;
    }
    
    .contact-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .hero-slider {
        height: 500px;
    }
    
    .slide-content h2 {
        font-size: 40px;
    }
    
    .slide-content p {
        font-size: 20px;
    }
    
    .section {
        padding: 60px 30px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 25px;
    }
    
    .features {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .franchise-options {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Small Tablets and Large Phones (600px - 768px) */
@media (max-width: 768px) {
    .top-bar {
        display: none; /* Hide top bar on mobile */
    }
    
    .header-container {
        padding: 15px 20px;
        flex-wrap: nowrap;
    }
    
    .logo-section {
        gap: 12px;
        flex: 1;
    }
    
    .logo-circle {
        width: 50px;
        height: 50px;
    }
    
    .logo-circle svg {
        width: 50px;
        height: 50px;
    }
    
    .logo-title {
        font-size: 18px;
    }
    
    .logo-description {
        font-size: 10px;
    }
    
    .header-nav {
        display: none; /* Always hidden on mobile, use sidebar instead */
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu-sidebar {
        display: block;
    }
    
    .hero-slider {
        height: 450px;
    }
    
    .slide-content {
        padding: 0 15px;
    }
    
    .slide-content h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .slide-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .btn-primary {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .slider-nav {
        bottom: 20px;
    }
    
    .section {
        padding: 50px 20px;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .intro-section {
        padding: 50px 20px;
    }
    
    .intro-section h2 {
        font-size: 28px;
    }
    
    .intro-section p {
        font-size: 16px;
    }
    
    .services-grid,
    .products-grid,
    .testimonials-grid,
    .features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .image-slider-section {
        padding: 35px 0;
    }
    
    .franchise-section {
        padding: 40px 20px;
    }
    
    .image-card-slider-container {
        padding: 0 20px;
    }
    
    .image-card-slide {
        flex: 0 0 calc(50% - 10px);
        min-width: 250px;
    }
    
    .image-card {
        height: 250px;
    }
    
    .image-slider-section .section {
        padding: 50px 20px !important;
    }
    
    .image-card-slider-container {
        padding: 0 20px;
    }
    
    .image-card-slide {
        flex: 0 0 calc(50% - 10px);
        min-width: 250px;
    }
    
    .image-card {
        height: 250px;
    }
    
    .location-card {
        padding: 25px;
        margin: 25px auto;
    }
    
    .location-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .location-buttons .btn-primary {
        width: 100%;
        text-align: center;
    }
    
    .btn-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-group .btn-primary {
        width: 100%;
        text-align: center;
    }
    
    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-btn-prev {
        left: 5px;
    }
    
    .slider-btn-next {
        right: 5px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    .service-image {
        height: 200px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .service-card h3 {
        font-size: 22px;
    }
    
    .feature-item i {
        font-size: 40px;
    }
    
    .feature-item h4 {
        font-size: 18px;
    }
    
    .franchise-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        padding: 0 20px;
    }
    
    footer {
        padding: 50px 20px 20px;
    }
}

/* Mobile Phones (480px - 600px) */
@media (max-width: 600px) {
    .mobile-menu-sidebar {
        width: 90%;
        max-width: 320px;
    }
    
    .mobile-logo-section {
        gap: 10px;
    }
    
    .mobile-logo-section .logo-circle {
        width: 45px;
        height: 45px;
    }
    
    .mobile-logo-section .logo-circle svg {
        width: 45px;
        height: 45px;
    }
    
    .mobile-logo-title {
        font-size: 16px;
    }
    
    .mobile-logo-description {
        font-size: 9px;
    }
    .top-bar {
        font-size: 11px;
    }
    
    .top-bar-container {
        padding: 8px 15px;
    }
    
    .contact-info span {
        font-size: 11px;
    }
    
    .top-nav a {
        font-size: 11px;
    }
    
    .header-container {
        padding: 12px 15px;
    }
    
    .logo-circle {
        width: 50px;
        height: 50px;
    }
    
    .logo-circle svg {
        width: 35px;
        height: 35px;
    }
    
    .logo-title {
        font-size: 18px;
    }
    
    .logo-description {
        font-size: 9px;
    }
    
    .hero-slider {
        height: 400px;
    }
    
    .slide-content h2 {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .slide-content p {
        font-size: 14px;
        margin-bottom: 18px;
        line-height: 1.5;
    }
    
    .btn-primary {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .section {
        padding: 35px 15px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .section-subtitle {
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .intro-section {
        padding: 30px 15px;
    }
    
    .image-slider-section {
        padding: 30px 0;
    }
    
    .image-slider-section .section {
        padding: 30px 15px !important;
    }
    
    .image-card-slider-container {
        padding: 0 15px;
    }
    
    .image-card-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .image-card {
        height: 220px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .slider-btn-prev {
        left: 5px;
    }
    
    .slider-btn-next {
        right: 5px;
    }
    
    .franchise-section {
        padding: 35px 15px;
    }
    
    .intro-section h2 {
        font-size: 24px;
    }
    
    .location-card {
        padding: 20px;
    }
    
    .location-card-content {
        margin-bottom: 20px;
    }
    
    .location-icon {
        font-size: 40px;
    }
    
    .location-card h3 {
        font-size: 20px;
    }
    
    .location-card p {
        font-size: 14px;
    }
    
    .location-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .location-buttons .btn-primary {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .btn-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-group .btn-primary {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .intro-section p {
        font-size: 15px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
    
    .service-card p {
        font-size: 14px;
    }
    
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 12px;
    }
    
    .whatsapp-btn, .call-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .location-card {
        padding: 25px 15px;
        margin: 25px auto;
    }
    
    .location-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .location-card h3 {
        font-size: 18px;
    }
    
    .location-card p {
        font-size: 13px;
    }
    
    .location-buttons {
        gap: 12px;
    }
    
    .contact-form-container {
        padding: 25px 15px;
        margin: 25px auto;
    }
    
    .contact-form {
        gap: 15px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 14px;
    }
    
    .contact-cards-grid {
        gap: 20px;
        margin: 25px auto;
    }
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Responsive Button Groups */
@media (max-width: 768px) {
    .btn-group {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }
    
    .btn-group .btn-primary {
        width: 100%;
        margin: 0;
    }
    
    .location-card {
        padding: 30px 20px;
        margin: 30px auto;
    }
    
    .location-icon {
        font-size: 40px;
    }
    
    .location-card h3 {
        font-size: 20px;
    }
    
    .location-card p {
        font-size: 14px;
    }
    
    .location-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .location-buttons .btn-primary {
        width: 100%;
    }
    
    .contact-form-container {
        padding: 30px 20px;
        margin: 30px auto;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 30px auto;
    }
}

/* Small Mobile Phones (320px - 480px) */
@media (max-width: 480px) {
    .header-container {
        padding: 12px 15px;
    }
    
    .logo-section {
        gap: 10px;
    }
    
    .logo-circle {
        width: 45px;
        height: 45px;
    }
    
    .logo-circle svg {
        width: 45px;
        height: 45px;
    }
    
    .logo-title {
        font-size: 16px;
    }
    
    .logo-description {
        font-size: 9px;
    }
    
    .mobile-menu-toggle {
        font-size: 22px;
    }
    
    .mobile-menu-sidebar {
        width: 85%;
    }
    
    .mobile-menu-header {
        padding: 15px;
    }
    
    .mobile-logo-section .logo-circle {
        width: 40px;
        height: 40px;
    }
    
    .mobile-logo-section .logo-circle svg {
        width: 40px;
        height: 40px;
    }
    
    .mobile-logo-title {
        font-size: 15px;
    }
    
    .mobile-logo-description {
        font-size: 8px;
    }
    
    .mobile-menu-close {
        font-size: 20px;
    }
    
    .mobile-nav {
        padding: 15px;
    }
    
    .mobile-nav a {
        font-size: 15px;
        padding: 12px 0;
    }
    
    .hero-slider {
        height: 350px;
    }
    
    .slide-content {
        padding: 0 10px;
    }
    
    .slide-content h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .slide-content p {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .btn-primary {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .slider-nav {
        bottom: 15px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .section {
        padding: 30px 10px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
        line-height: 1.6;
    }
    
    .image-slider-section .section {
        padding: 30px 10px !important;
    }
    
    .image-card-slider-container {
        padding: 0 10px;
    }
    
    .image-card-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .image-card {
        height: 200px;
    }
    
    .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .slider-btn-prev {
        left: 3px;
    }
    
    .slider-btn-next {
        right: 3px;
    }
    
    .intro-section {
        padding: 30px 10px;
    }
    
    .intro-section h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .intro-section p {
        font-size: 14px;
    }
    
    .services-grid,
    .products-grid,
    .testimonials-grid,
    .features {
        gap: 15px;
        margin-top: 25px;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .feature-item i {
        font-size: 32px;
        margin-bottom: 10px;
    }
    
    .feature-item h4 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .feature-item p {
        font-size: 13px;
    }
    
    .service-card {
        padding: 18px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .service-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .service-card p {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .feature-item i {
        font-size: 36px;
        margin-bottom: 12px;
    }
    
    .feature-item h4 {
        font-size: 16px;
    }
    
    .feature-item p {
        font-size: 13px;
    }
    
    .franchise-option {
        padding: 20px;
    }
    
    .franchise-option h3 {
        font-size: 20px;
    }
    
    .franchise-option p {
        font-size: 14px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    footer {
        padding: 40px 15px 15px;
    }
    
    .footer-section h3 {
        font-size: 18px;
    }
    
    .footer-bottom {
        font-size: 12px;
        padding-top: 15px;
    }
    
    .floating-buttons {
        bottom: 12px;
        right: 12px;
        gap: 10px;
    }
    
    .whatsapp-btn, .call-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* Extra Small Devices (< 320px) */
@media (max-width: 320px) {
    .logo-title {
        font-size: 14px;
    }
    
    .logo-description {
        font-size: 7px;
    }
    
    .hero-slider {
        height: 300px;
    }
    
    .slide-content h2 {
        font-size: 20px;
    }
    
    .slide-content p {
        font-size: 12px;
    }
    
    .btn-primary {
        padding: 8px 18px;
        font-size: 12px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .section-subtitle {
        font-size: 13px;
    }
    
    .service-card {
        padding: 15px;
    }
    
    .whatsapp-btn, .call-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .location-card {
        padding: 20px 12px;
        margin: 20px auto;
    }
    
    .location-icon {
        font-size: 32px;
    }
    
    .location-card h3 {
        font-size: 16px;
    }
    
    .location-card p {
        font-size: 12px;
    }
    
    .contact-form-container {
        padding: 20px 12px;
        margin: 20px auto;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 10px;
        font-size: 13px;
    }
    
    .image-card-slide {
        flex: 0 0 100%;
        min-width: 280px;
    }
    
    .image-card {
        height: 250px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* Landscape Orientation for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-slider {
        height: 350px;
    }
    
    .slide-content h2 {
        font-size: 28px;
    }
    
    .slide-content p {
        font-size: 15px;
    }
    
    .image-card-slider-container {
        padding: 0 20px;
    }
    
    .image-card-slide {
        flex: 0 0 calc(50% - 10px);
        min-width: 200px;
    }
    
    .image-card {
        height: 180px;
    }
}

/* Extra Large Screens (1400px+) */
@media (min-width: 1400px) {
    .section {
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .image-card-slider-container {
        max-width: 1400px;
    }
}

/* Ensure touch targets are large enough on mobile */
@media (max-width: 768px) {
    a, button {
        min-height: 44px;
        min-width: 44px;
    }
    
    .slider-dot,
    .slider-dot-item {
        min-width: 12px;
        min-height: 12px;
    }
    
    .logo-link,
    .mobile-logo-link {
        min-height: auto;
        min-width: auto;
    }
}

/* Print Styles */
@media print {
    .floating-buttons,
    .mobile-menu-toggle,
    .top-bar,
    .slider-nav {
        display: none;
    }
    
    header {
        position: static;
    }
}
