/* ============================================
   Global Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent horizontal scrolling globally */
*, *::before, *::after {
    max-width: 100%;
}

:root {
    --primary-color: #4CAF50;
    --primary-dark: #45a049;
    --secondary-color: #2196F3;
    --dark-color: #333;
    --light-color: #f5f5f5;
    --white: #ffffff;
    --text-color: #555;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden !important;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden !important;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* ============================================
   Top Bar
   ============================================ */
/* Top bar removed */

/* ============================================
   Header & Navigation - Professional Design
   ============================================ */
.main-header {
    width: 100%;
    max-width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-color);
    margin: 0;
    padding: 0;
    left: 0;
    right: 0;
}

.header-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.header-container .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    gap: 30px;
}

.nav-brand {
    flex-shrink: 0;
    margin-right: auto;
}

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark-color);
    gap: 15px;
    transition: transform 0.3s;
}

.nav-brand a:hover {
    transform: translateX(5px);
}

.logo {
    height: 60px;
    width: auto;
}

.logo-placeholder {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-color), #45a049);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 30px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    transition: all 0.3s;
}

.logo-placeholder:hover {
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.brand-text h2 {
    font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 2px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.brand-text p {
    font-size: 11px;
    color: var(--primary-color);
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 5px;
    margin-left: auto;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 15px;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.nav-menu a span {
    display: inline-block;
}

.nav-menu a i {
    font-size: 14px;
    transition: transform 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
    background: rgba(76, 175, 80, 0.1);
    transform: translateY(-2px);
}

.nav-menu a:hover i {
    transform: scale(1.2);
}

.nav-menu a.active {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-color), #45a049);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.nav-menu a.active::after {
    display: none;
}

.nav-menu a.active i {
    animation: pulse 2s infinite;
}


.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: linear-gradient(135deg, var(--primary-color), #45a049);
    border: none;
    cursor: pointer;
    gap: 5px;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    padding: 12px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    transition: all 0.3s;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    background: linear-gradient(135deg, #45a049, var(--primary-color));
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: block;
}

.mobile-menu-toggle.active {
    background: linear-gradient(135deg, #f44336, #e53935);
}

.mobile-menu-toggle.active:hover {
    background: linear-gradient(135deg, #e53935, #f44336);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: #1976D2;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

/* ============================================
   Hero Slider
   ============================================ */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin: 0 !important;
    padding: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: rgba(0,0,0,0.5);
    color: var(--white);
}

.slide-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.slide-content p {
    font-size: 24px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.slider-controls button {
    background: rgba(255,255,255,0.3);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
}

.slider-controls button:hover {
    background: rgba(255,255,255,0.5);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

/* ============================================
   Sections
   ============================================ */
section {
    padding: 80px 0;
}

/* Remove padding from hero slider */
.hero-slider {
    padding: 0 !important;
    margin: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Ensure no gap between header and slider */
.main-header + .hero-slider {
    margin-top: 0 !important;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 50px;
}

/* ============================================
   Intro Section
   ============================================ */
.intro-section {
    background: var(--light-color);
    padding-top: 80px;
    padding-bottom: 80px;
    margin-top: 0;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.intro-content .tagline {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.intro-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ============================================
   Highlights Section
   ============================================ */
.highlights-section {
    background: var(--white);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.highlight-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
}

.highlight-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* ============================================
   Products Section
   ============================================ */
.featured-products,
.products-section {
    background: var(--light-color);
}

.products-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-preview-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.product-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-preview-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-preview-content {
    padding: 25px;
}

.product-preview-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.product-features {
    margin-bottom: 15px;
}

.product-features p {
    margin-bottom: 8px;
    font-size: 14px;
}

.product-features i {
    color: var(--primary-color);
    margin-right: 8px;
    width: 20px;
}

.product-description {
    margin-bottom: 20px;
    color: var(--text-color);
}

.product-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ============================================
   About Page
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.content-section {
    padding: 80px 0;
    background: var(--light-color);
}

.content-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.content-wrapper h2 {
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.content-wrapper p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-wrapper ul,
.content-wrapper ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-wrapper li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.mission-vision {
    background: var(--light-color);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.mv-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.mv-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 40px;
}

.mv-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.objective-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.objective-item i {
    color: var(--primary-color);
    font-size: 24px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.team-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 25px;
}

.team-info h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.detail-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.detail-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.detail-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

/* ============================================
   Services Page
   ============================================ */
.services-overview {
    background: var(--light-color);
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-intro h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-price {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 15px;
}

.booking-form-container {
    max-width: 800px;
    margin: 50px auto 0;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.service-form {
    margin-top: 30px;
}

/* ============================================
   Gallery Page
   ============================================ */
.gallery-nav {
    background: var(--light-color);
    padding: 30px 0;
}

.gallery-tabs {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
    margin: 0 !important;
    padding: 20px 0 !important;
}

.gallery-nav .gallery-tabs .tab-btn,
.tab-btn {
    padding: 16px 40px !important;
    background: #ffffff !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    color: #333333 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08) !important;
    font-family: 'Poppins', sans-serif !important;
    text-transform: none !important;
    outline: none !important;
    position: relative !important;
    overflow: hidden !important;
    min-width: 180px !important;
}

.gallery-nav .gallery-tabs .tab-btn::before,
.tab-btn::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent) !important;
    transition: left 0.5s !important;
}

.gallery-nav .gallery-tabs .tab-btn:hover::before,
.tab-btn:hover::before {
    left: 100% !important;
}

.gallery-nav .gallery-tabs .tab-btn i,
.tab-btn i {
    font-size: 20px !important;
    display: inline-block !important;
    transition: transform 0.3s !important;
}

.gallery-nav .gallery-tabs .tab-btn:hover i,
.tab-btn:hover i {
    transform: scale(1.1) !important;
}

.gallery-nav .gallery-tabs .tab-btn:hover,
.tab-btn:hover {
    background: var(--primary-color) !important;
    color: #ffffff !important;
    border-color: var(--primary-color) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.35) !important;
}

.gallery-nav .gallery-tabs .tab-btn.active,
.tab-btn.active {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%) !important;
    color: #ffffff !important;
    border-color: #4CAF50 !important;
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.5) !important;
    transform: translateY(-2px) !important;
}

.gallery-nav .gallery-tabs .tab-btn.active i,
.tab-btn.active i {
    transform: scale(1.15) !important;
    color: #ffffff !important;
}

.tab-btn {
    padding: 15px 35px !important;
    background: var(--white) !important;
    border: 2px solid var(--border-color) !important;
    border-radius: 30px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    color: var(--text-color) !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    font-family: 'Poppins', sans-serif !important;
}

.tab-btn i {
    font-size: 18px !important;
}

.tab-btn:hover {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    border-color: var(--primary-color) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3) !important;
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
    color: var(--white) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4) !important;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.gallery-section {
    padding: 60px 0;
    background: var(--white);
}

.gallery-tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.no-images {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-color);
    grid-column: 1 / -1;
}

.no-images i {
    font-size: 64px;
    color: var(--border-color);
    margin-bottom: 20px;
    display: block;
}

.no-images p {
    font-size: 18px;
    color: var(--text-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.testimonial-rating {
    color: #FFC107;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

/* ============================================
   Career Page
   ============================================ */
.career-intro {
    background: var(--light-color);
}

.career-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.career-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.job-card {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.job-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    margin-bottom: 20px;
}

.job-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.job-details {
    margin-bottom: 15px;
}

.job-details p {
    margin-bottom: 8px;
    font-size: 14px;
}

.job-details i {
    color: var(--primary-color);
    margin-right: 8px;
    width: 20px;
}

.job-requirements {
    list-style: none;
    margin-top: 15px;
}

.job-requirements li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.job-requirements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.application-form-container {
    max-width: 800px;
    margin: 50px auto 0;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.application-note {
    margin-top: 30px;
    padding: 20px;
    background: var(--light-color);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

/* ============================================
   Contact Page
   ============================================ */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-info-card {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 32px;
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-form-container,
.contact-map-container {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form-container h2,
.contact-map-container h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.map-wrapper {
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    border: none;
}

.quick-contact {
    margin-top: 30px;
}

.quick-contact h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.quick-contact-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.business-hours {
    background: var(--light-color);
}

.hours-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.hours-card h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.hours-card h2 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.hours-list {
    text-align: left;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-item:last-child {
    border-bottom: none;
}

/* ============================================
   Forms
   ============================================ */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group label i {
    margin-right: 8px;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: var(--text-color);
    font-size: 12px;
}

.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* ============================================
   Form Loading & Success Popup
   ============================================ */
.form-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.loading-spinner {
    text-align: center;
    color: var(--white);
}

.loading-spinner i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.loading-spinner p {
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    margin-top: 15px;
}

.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10001;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.popup-content {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    animation: slideUp 0.4s ease;
}

.popup-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease;
}

.popup-icon i {
    font-size: 40px;
    color: var(--white);
}

.popup-content h3 {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.popup-content p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.6;
}

.popup-content .btn {
    min-width: 120px;
    padding: 12px 30px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* Button Loading State */
.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--white);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    background: var(--white);
    color: var(--primary-color);
}

.cta-buttons .btn:hover {
    background: var(--light-color);
}

/* ============================================
   Footer
   ============================================ */
.main-footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.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;
    color: var(--white);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 5px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

.newsletter-form button {
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-developer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-developer p {
    margin: 0;
    color: #ccc;
    font-size: 14px;
}

.footer-developer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-developer a:hover {
    color: var(--white);
}

/* ============================================
   WhatsApp Float & Scroll Top
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: var(--shadow-hover);
    z-index: 999;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20ba5a;
}

.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ============================================
   Why Choose Us Section
   ============================================ */
.why-choose-section {
    background: var(--white);
    padding: 80px 0;
}

.why-choose-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-content h2 {
    text-align: left;
    margin-bottom: 15px;
}

.why-choose-content .section-subtitle {
    text-align: left;
    margin-bottom: 40px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.why-choose-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s;
    border-left: 4px solid var(--primary-color);
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background: var(--white);
}

.why-choose-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    margin-bottom: 20px;
}

.why-choose-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.why-choose-card p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 14px;
}

.why-choose-image {
    position: relative;
}

.why-choose-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
}

/* ============================================
   Why Trust Us Section
   ============================================ */
.why-trust-section {
    background: var(--light-color);
    padding: 80px 0;
}

.trust-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.trust-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s;
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.trust-card-image {
    height: 250px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), #45a049);
}

.trust-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-number {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--white);
    text-align: center;
}

.number-big {
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.number-text {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.3;
}

.trust-card-content {
    padding: 30px;
}

.trust-card-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.trust-card-content p {
    color: var(--text-color);
    line-height: 1.7;
}

/* ============================================
   FAQ Section
   ============================================ */
.faq-section {
    background: var(--white);
    padding: 80px 0;
}

.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.faq-header h2 {
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.faq-content {
    width: 100%;
}

.faq-item {
    background: var(--light-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--white);
    transition: all 0.3s;
}

.faq-question:hover {
    background: var(--light-color);
}

.faq-question h3 {
    font-size: 18px;
    color: var(--dark-color);
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 16px;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}

.faq-answer.active {
    max-height: 500px;
    padding: 20px 25px;
}

.faq-answer p {
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   Responsive Design
   ============================================ */
/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 998;
    backdrop-filter: blur(4px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .gallery-tabs {
        gap: 12px !important;
        padding: 15px 0 !important;
    }
    
    .gallery-nav .gallery-tabs .tab-btn,
    .tab-btn {
        padding: 14px 20px !important;
        font-size: 15px !important;
        gap: 10px !important;
        min-width: auto !important;
        max-width: 100% !important;
        width: auto !important;
    }
    
    .gallery-nav .gallery-tabs .tab-btn i,
    .tab-btn i {
        font-size: 18px !important;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
        margin-top: 30px;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none;
        box-shadow: -5px 0 30px rgba(0,0,0,0.2);
        transition: right 0.3s ease;
        z-index: 999;
        gap: 0;
        overflow-y: auto;
    }
    
    /* Custom Scrollbar for Mobile Menu */
    .nav-menu::-webkit-scrollbar {
        width: 6px;
    }
    
    .nav-menu::-webkit-scrollbar-track {
        background: rgba(0,0,0,0.05);
        border-radius: 10px;
    }
    
    .nav-menu::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, var(--primary-color), #45a049);
        border-radius: 10px;
    }
    
    .nav-menu::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, #45a049, var(--primary-color));
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-menu-header {
        display: none !important;
    }
    
    .mobile-menu-close {
        display: none !important;
    }
    
    .nav-menu li {
        width: 100%;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .nav-menu li:first-child {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .nav-menu li:first-child a {
        border-top: none;
        margin-top: 0 !important;
        padding-top: 16px !important;
    }
    
    .nav-menu a {
        width: 100%;
        margin: 0;
        padding: 16px 20px;
        border-radius: 0;
        justify-content: flex-start;
        background: var(--white);
        border-bottom: 1px solid #f0f0f0;
        border-left: 4px solid transparent;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
    }
    
    .nav-menu a:hover {
        background: #f8f9fa;
        border-left-color: var(--primary-color);
    }
    
    .nav-menu a.active {
        background: var(--primary-color);
        color: var(--white);
        border-left-color: var(--white);
    }
    
    .nav-menu a span {
        margin-left: 15px;
        font-weight: 600;
        font-size: 16px;
    }
    
    .nav-menu a i {
        font-size: 18px;
        width: 24px;
        text-align: center;
    }
    
    .nav-menu a.active i {
        color: var(--white);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .slide-content h1 {
        font-size: 32px;
    }
    
    .slide-content p {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .navbar {
        gap: 15px;
    }
    
    .nav-brand {
        margin-right: 0;
    }
    
    .nav-brand a {
        gap: 10px;
    }
    
    .header-container .container {
        padding: 0 15px;
    }
    
    /* Reduce container padding on mobile to minimize side gaps */
    .container {
        padding: 0 15px;
    }
    
    /* Ensure body and html have no extra padding/margin */
    body, html {
        margin: 0;
        padding: 0;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden !important;
        position: relative;
    }
    
    /* Prevent all elements from overflowing */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Make sure all sections use full width on mobile */
    section {
        width: 100%;
        max-width: 100vw;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    /* Hero slider full width on mobile */
    .hero-slider {
        width: 100%;
        max-width: 100vw;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }
    
    /* Fix buttons and elements that might overflow */
    .btn, button {
        max-width: 100%;
        word-wrap: break-word;
        white-space: normal;
    }
    
    /* Fix images and media */
    img, video, iframe, embed, object {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    /* Fix text overflow */
    p, h1, h2, h3, h4, h5, h6, span, div {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Fix tables */
    table {
        width: 100%;
        max-width: 100%;
        table-layout: fixed;
    }
    
    /* Fix forms */
    input, textarea, select {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .products-grid,
    .highlights-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-wrapper {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-wrapper {
        grid-template-columns: 1fr;
    }
    
    .faq-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .gallery-tabs {
        gap: 10px !important;
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 15px 0 !important;
    }
    
    .gallery-nav .gallery-tabs .tab-btn,
    .tab-btn {
        padding: 14px 20px !important;
        font-size: 14px !important;
        justify-content: center !important;
        width: 100% !important;
        min-width: auto !important;
    }
    
    .gallery-nav .gallery-tabs .tab-btn i,
    .tab-btn i {
        font-size: 16px !important;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .navbar {
        padding: 12px 0;
        gap: 10px;
    }
    
    .nav-brand a {
        gap: 10px;
    }
    
    .brand-text h2 {
        font-size: 16px;
        line-height: 1.1;
    }
    
    .brand-text p {
        font-size: 9px;
        line-height: 1.1;
    }
    
    .logo-placeholder {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .logo {
        height: 50px;
    }
    
    .why-choose-wrapper {
        gap: 30px;
    }
    
    .why-choose-grid {
        gap: 15px;
    }
    
    .why-choose-card {
        padding: 20px;
    }
    
    .why-choose-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .trust-cards-grid {
        gap: 20px;
    }
    
    .trust-card-image {
        height: 200px;
    }
    
    .number-big {
        font-size: 60px;
    }
    
    .faq-wrapper {
        gap: 30px;
    }
    
    .faq-header h2 {
        font-size: 28px;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .logo-placeholder {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .hero-slider {
        height: 400px;
    }
    
    .slide-content h1 {
        font-size: 24px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    /* Further reduce padding on small mobile devices */
    .container {
        padding: 0 10px;
    }
    
    .header-container .container {
        padding: 0 10px;
    }
    
    /* Ensure no horizontal overflow - stronger rules for small devices */
    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    body, html {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
    }
    
    section, div, article, aside, header, footer, main, nav {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    img, video, iframe, embed, object {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Fix buttons on small screens */
    .btn, button {
        max-width: 100% !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        min-width: auto !important;
    }
    
    /* Fix gallery tabs and buttons */
    .gallery-nav .gallery-tabs .tab-btn,
    .tab-btn {
        min-width: auto !important;
        max-width: 100% !important;
    }
    
    /* Fix any element with min-width */
    [style*="min-width"], 
    .btn[style*="min-width"],
    button[style*="min-width"] {
        min-width: auto !important;
    }
    
    /* Fix containers */
    .container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Fix text elements */
    p, h1, h2, h3, h4, h5, h6, span, div, li, td, th {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
    }
}

