/* Costex-inspired Redesign CSS - Mobile Optimized */
/* ================================================= */

/* CSS Variables */
:root {
    --primary-yellow: #f6c63e;
    --light-yellow: #fff9e6;
    --yellow-hover: #c59e32;
    --dark-yellow: #e6b833;
    --dark-gray: #2c2c2c;
    --medium-gray: #555555;
    --light-gray: #f9f9f9;
    --hover-gray: #eeeeee;
    --topbar-bg: #636363;
    --nav-text: #2c2c2c;
    --nav-hover: #f6c63e;
    --container-width: 1320px;
    --white: #ffffff;
    --black: #000000;
    --border-color: #e0e0e0;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

.header .container {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    overflow: visible !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-element {
    opacity: 0;
}

.fade-element.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
    /* Auto-hide after 4 seconds as fallback */
    animation: autoHideLoading 4s forwards;
}

.loading-screen.fade-out {
    opacity: 0;
}

@keyframes autoHideLoading {
    0% { opacity: 1; }
    75% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
}

.loader {
    text-align: center;
    color: var(--white);
}

.loader-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.loader p {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Top Bar */
.top-bar {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 25px;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left i {
    color: var(--primary-yellow);
}

.top-bar-right {
    display: flex;
    gap: 12px;
}

.top-bar-right a {
    color: var(--white);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.top-bar-right a:hover {
    background: var(--primary-yellow);
    color: var(--dark-gray);
    transform: translateY(-3px);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(246, 198, 62, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(246, 198, 62, 0.6);
}

/* Floating Shapes Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes floatReverse {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(20px) rotate(-5deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(246, 198, 62, 0.15), transparent);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(230, 184, 51, 0.1), transparent);
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite reverse;
}

/* Header (Sticky) */
.header {
    background: var(--light-yellow);
    box-shadow: 0 3px 15px rgba(246, 198, 62, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 18px 0;
    border-bottom: 3px solid var(--primary-yellow);
    transition: all 0.3s ease;
    overflow: visible !important;
}

.header.scrolled {
    box-shadow: 0 5px 25px rgba(246, 198, 62, 0.3);
    padding: 12px 0;
}

.header-content {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 20px !important;
    width: 100% !important;
    padding: 0 !important;
    flex-wrap: nowrap !important;
}

/* RTL Support */
[dir="rtl"] .header-content {
    flex-direction: row !important;
}

.header-right {
    order: 1 !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    margin-left: auto !important;
    padding-right: 20px !important;
    overflow: visible !important;
    position: relative !important;
    flex-wrap: nowrap !important;
    flex-shrink: 0 !important;
}

/* RTL Support for Header Right */
[dir="rtl"] .header-right {
    order: -1 !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    padding-right: 0 !important;
    padding-left: 20px !important;
    flex-direction: row !important;
}

/* RTL Support for Search Position */
[dir="rtl"] .header-search {
    order: 3 !important;
}

[dir="rtl"] .language-toggle {
    order: 2 !important;
}

[dir="rtl"] .main-nav {
    order: 1 !important;
}

/* Language Toggle */
.language-toggle {
    display: flex;
    align-items: center;
    background: var(--light-gray);
    border-radius: 20px;
    padding: 2px;
    position: relative;
}

.language-btn {
    padding: 6px 12px;
    border: none;
    background: transparent;
    border-radius: 18px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--medium-gray);
}

.language-btn.active {
    background: var(--primary-yellow);
    color: var(--white);
}

.logo {
    order: -1 !important;
    margin-right: auto !important;
    padding-left: 20px !important;
}

/* RTL Support for Logo */
[dir="rtl"] .logo {
    order: 1 !important;
    margin-right: auto !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    padding-right: 20px !important;
}

.logo img {
    max-width: 200px;
    height: auto;
    max-height: 70px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

/* Header Search Bar */
.header-search {
    position: relative !important;
    max-width: 300px;
    min-width: 250px;
    overflow: visible !important;
    flex-shrink: 0;
    display: block !important;
    z-index: 1001 !important;
}

.search-input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    outline: none;
    display: block;
    position: relative;
}

.search-input:focus {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 4px rgba(246, 198, 62, 0.1);
}

.search-btn {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(246, 198, 62, 0.4);
}

/* Search Autocomplete Dropdown */
.header-search .search-suggestions,
#search-suggestions-dropdown {
    position: absolute !important;
    top: 100% !important;
    bottom: auto !important;
    left: 0 !important;
    right: auto !important;
    transform: translateY(8px) translateX(0) !important;
    background: #ffffff !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25) !important;
    max-height: 350px !important;
    overflow-y: auto !important;
    z-index: 999999 !important;
    display: none !important;
    margin: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    min-width: 300px !important;
    width: 300px !important;
    float: none !important;
}

.header-search .search-suggestions.active,
#search-suggestions-dropdown.active {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: absolute !important;
    left: 0 !important;
    right: auto !important;
}
}

.search-suggestion-item {
    padding: 12px 20px !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid var(--hover-gray) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 15px !important;
    white-space: nowrap !important;
    background: #ffffff !important;
}

.search-suggestion-item:last-child {
    border-bottom: none !important;
}

.search-suggestion-item:hover {
    background-color: var(--light-yellow) !important;
}

.suggestion-name {
    font-size: 14px !important;
    color: #2c2c2c !important;
    font-weight: 500 !important;
    flex: 1 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    display: inline-block !important;
}

.suggestion-separator {
    font-size: 14px !important;
    color: #999999 !important;
    font-weight: 400 !important;
    white-space: nowrap !important;
    display: inline-block !important;
}

.suggestion-price {
    font-size: 14px !important;
    color: #f6c63e !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
}

.no-results {
    padding: 20px;
    text-align: center;
    color: var(--medium-gray);
    font-size: 14px;
}

.search-loading {
    padding: 20px;
    text-align: center;
    color: var(--medium-gray);
    font-size: 14px;
}

.search-loading i {
    margin-right: 8px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

/* Mobile Navigation Header - Hidden on Desktop */
.mobile-nav-header {
    display: none;
}

.mobile-language-toggle {
    display: none;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--dark-gray);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 0px;
    flex-wrap: nowrap;
}

/* RTL Support for Navigation Order */
[dir="rtl"] .main-nav ul {
    flex-direction: row-reverse;
}

.main-nav a {
    color: var(--nav-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 12px 18px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    letter-spacing: 0.5px;
    border-radius: 8px;
    display: inline-block;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.main-nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(246, 198, 62, 0.3) 25%,
        var(--primary-yellow) 50%, 
        rgba(246, 198, 62, 0.3) 75%,
        transparent 100%);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
    transform: skewX(-20deg);
}

.main-nav a span {
    position: relative;
    z-index: 2;
}

.main-nav a:hover::before {
    left: 150%;
    transform: skewX(-20deg) scale(1.2);
}

.main-nav a:hover {
    color: var(--white);
    background-color: var(--primary-yellow);
    transform: translateY(-5px) scale(1.08) rotateX(5deg);
    box-shadow: 0 15px 35px rgba(246, 198, 62, 0.6);
    border-radius: 15px;
}

.main-nav a.active {
    color: var(--white);
    background-color: var(--primary-yellow);
    border-radius: 8px;
}

.main-nav a i {
    margin-right: 6px;
}

.main-nav a span i {
    margin-right: 6px;
}

/* Dropdown Menu Styles */
.main-nav .dropdown {
    position: relative;
}

.main-nav .dropdown-toggle i {
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.main-nav .dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.main-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 2px solid var(--border-color);
}

.main-nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav .dropdown-menu li {
    list-style: none;
}

.main-nav .dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--dark-gray);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 0;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav .dropdown-menu a:hover {
    background: var(--light-yellow);
    color: var(--dark-gray);
    padding-left: 30px;
}

.main-nav .dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--primary-yellow);
    transition: height 0.3s ease;
}

.main-nav .dropdown-menu a:hover::before {
    height: 60%;
}

[dir="rtl"] .main-nav .dropdown-menu {
    left: auto;
    right: 0;
}

[dir="rtl"] .main-nav .dropdown-toggle i {
    margin-left: 0;
    margin-right: 8px;
}

[dir="rtl"] .main-nav .dropdown-menu a:hover {
    padding-left: 20px;
    padding-right: 30px;
}

[dir="rtl"] .main-nav .dropdown-menu a::before {
    left: auto;
    right: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(246, 198, 62, 0.25) 0%, rgba(230, 184, 51, 0.15) 100%),
                url('../assets/omatsu.png') center/cover no-repeat;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
    min-height: 650px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 249, 230, 0.92) 0%, rgba(255, 255, 255, 0.88) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -1.5px;
    text-shadow: 2px 2px 4px rgba(246, 198, 62, 0.1);
}

.hero-lead {
    font-size: 22px;
    color: var(--medium-gray);
    margin-bottom: 45px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 45px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    border: 2px solid transparent;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 25%,
        rgba(255, 255, 255, 0.5) 50%, 
        rgba(255, 255, 255, 0.2) 75%,
        transparent 100%);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
    transform: skewX(-20deg);
}

.btn:hover::before {
    left: 150%;
    transform: skewX(-20deg) scale(1.2);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    color: var(--dark-gray);
    border-color: var(--primary-yellow);
    box-shadow: 0 4px 15px rgba(246, 198, 62, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--dark-yellow) 0%, var(--yellow-hover) 100%);
    transform: translateY(-5px) scale(1.05) rotateX(3deg);
    box-shadow: 0 15px 40px rgba(246, 198, 62, 0.6);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--dark-gray);
    border-color: var(--primary-yellow);
    border-width: 2px;
}

.btn-secondary:hover {
    background-color: var(--primary-yellow);
    color: var(--dark-gray);
    transform: translateY(-5px) scale(1.05) rotateY(2deg);
    box-shadow: 0 15px 40px rgba(246, 198, 62, 0.5);
}

.btn-outline {
    background-color: var(--light-gray);
    color: var(--dark-gray);
    border-color: var(--light-gray);
}

.btn-outline:hover {
    background-color: var(--hover-gray);
    border-color: var(--hover-gray);
}

.btn-primary-solid {
    background-color: #1D773D;
    color: var(--white);
    border-color: #1D773D;
}

.btn-primary-solid:hover {
    background-color: #145828;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 20px 50px;
    font-size: 17px;
}

/* Product Categories Section */
.product-categories {
    padding: 90px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-gray);
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.title-divider {
    width: 140px;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
    margin: 0 auto;
    border-radius: 10px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 35px;
    margin-bottom: 60px;
}

.category-card {
    text-align: center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-12px) scale(1.05) rotateY(2deg);
}

.category-card a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
}

.category-card a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 249, 230, 0.4) 20%,
        var(--light-yellow) 40%, 
        rgba(246, 198, 62, 0.8) 60%,
        var(--light-yellow) 80%,
        transparent 100%);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
    transform: skewX(-15deg);
}

.category-card a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--dark-yellow));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.category-card:hover a::after {
    left: 150%;
    transform: skewX(-15deg) scale(1.1);
}

.category-card:hover a {
    border-color: var(--primary-yellow);
    background: var(--light-yellow);
    box-shadow: 0 25px 80px rgba(246, 198, 62, 0.4);
    transform: translateY(-8px) rotateX(3deg);
}

.category-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 18px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-gray);
    text-transform: uppercase;
    line-height: 1.4;
    margin: auto 0 0 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    z-index: 2;
}

.category-card:hover h3 {
    color: var(--primary-yellow);
}

.category-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

/* Statistics Section */
.statistics-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(246, 198, 62, 0.05);
    border-radius: 50%;
}

.statistics-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(246, 198, 62, 0.03);
    border-radius: 50%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 2px solid rgba(246, 198, 62, 0.2);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(246, 198, 62, 0.1);
    border-color: var(--primary-yellow);
    box-shadow: 0 15px 40px rgba(246, 198, 62, 0.3);
}

.stat-icon {
    font-size: 48px;
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Section */
.services {
    padding: 90px 0;
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 45px;
    margin-top: 60px;
}

.service-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-yellow) 100%);
    padding: 50px 35px;
    text-align: center;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    box-shadow: 0 6px 20px rgba(246, 198, 62, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--dark-yellow));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 45px rgba(246, 198, 62, 0.3);
    border-color: var(--primary-yellow);
}

.service-icon {
    font-size: 56px;
    color: var(--primary-yellow);
    margin-bottom: 25px;
    transition: all 0.4s ease;
    display: inline-block;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotateY(360deg);
    color: var(--dark-yellow);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 18px;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-yellow);
}

.service-card p {
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials-section {
    padding: 90px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    color: var(--primary-yellow);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-yellow);
    box-shadow: 0 15px 40px rgba(246, 198, 62, 0.25);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--primary-yellow);
    font-size: 16px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid var(--light-gray);
}

.author-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.author-info span {
    font-size: 13px;
    color: var(--medium-gray);
}

/* Management Team Section */
.management-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.management-section .section-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--medium-gray);
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.management-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.management-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(246, 198, 62, 0.35);
    border-color: var(--primary-yellow);
}

.management-image {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-yellow) 0%, var(--primary-yellow) 100%);
}

.management-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.management-card:hover .management-image img {
    transform: scale(1.1);
}

.management-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(246, 198, 62, 0.95) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.management-card:hover .management-overlay {
    opacity: 1;
}

.management-social {
    display: flex;
    gap: 15px;
}

.management-social a {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    opacity: 0;
}

.management-card:hover .management-social a {
    transform: translateY(0);
    opacity: 1;
}

.management-card:hover .management-social a:nth-child(1) {
    transition-delay: 0.1s;
}

.management-card:hover .management-social a:nth-child(2) {
    transition-delay: 0.2s;
}

.management-card:hover .management-social a:nth-child(3) {
    transition-delay: 0.3s;
}

.management-social a:hover {
    background: var(--primary-yellow);
    color: var(--white);
    transform: translateY(-5px) scale(1.1);
}

.management-info {
    padding: 30px;
    text-align: center;
}

.management-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.management-position {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    padding: 6px 20px;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.management-bio {
    font-size: 14px;
    line-height: 1.7;
    color: var(--medium-gray);
    margin-top: 15px;
}

.management-contact {
    margin-top: 20px;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    color: var(--dark-gray);
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
}

.phone-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    z-index: 1;
}

.phone-link:hover::before {
    left: 100%;
}

.phone-link:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(246, 198, 62, 0.4);
    background: linear-gradient(135deg, var(--dark-yellow), var(--yellow-hover));
}

.phone-link i,
.phone-link span {
    position: relative;
    z-index: 2;
}

/* Featured Banner */
.featured-banner {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-yellow) 100%);
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.banner-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 380px;
    border: 3px solid var(--border-color);
    transition: all 0.4s ease;
}

.banner-item:hover {
    border-color: var(--primary-yellow);
    box-shadow: 0 15px 40px rgba(246, 198, 62, 0.3);
    transform: translateY(-8px);
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-item:hover img {
    transform: scale(1.15);
}

.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, 
                rgba(246, 198, 62, 0.95) 0%, 
                rgba(230, 184, 51, 0.8) 50%, 
                transparent 100%);
    padding: 35px 25px;
    transition: all 0.4s ease;
}

.banner-item:hover .banner-overlay {
    padding: 45px 25px;
}

.banner-overlay h3 {
    color: var(--white);
    font-size: 26px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.banner-item:hover .banner-overlay h3 {
    transform: translateY(-5px);
    letter-spacing: 0.5px;
}

/* Newsletter Section */
.newsletter-section {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--light-yellow) 0%, var(--white) 100%);
    border-top: 3px solid var(--primary-yellow);
    border-bottom: 3px solid var(--primary-yellow);
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.newsletter-text {
    flex: 1;
}

.newsletter-text h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.newsletter-text h3 i {
    color: var(--primary-yellow);
    font-size: 36px;
}

.newsletter-text p {
    font-size: 16px;
    color: var(--medium-gray);
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex: 1;
    max-width: 500px;
}

.newsletter-input {
    flex: 1;
    padding: 16px 25px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 4px rgba(246, 198, 62, 0.1);
}

.newsletter-form .btn {
    white-space: nowrap;
    padding: 16px 25px;
    min-width: 200px;
    max-width: 250px;
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: visible;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-sizing: border-box;
}

.newsletter-form .btn .btn-text,
.newsletter-form .btn .btn-loader {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.newsletter-form .btn .btn-loader {
    display: none;
}

.newsletter-form .btn.loading .btn-text {
    display: none;
}

.newsletter-form .btn.loading .btn-loader {
    display: inline-flex;
}

.newsletter-form .btn:disabled {
    opacity: 0.8;
    cursor: not-allowed;
    transform: none !important;
    pointer-events: none;
}

.newsletter-form .btn .loading,
.newsletter-form .btn .btn-loader .fas {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(44, 44, 44, 0.4);
    border-radius: 50%;
    border-top-color: var(--dark-gray);
    animation: spin 1s linear infinite;
}

.newsletter-form .btn .btn-loader .fas {
    border: none;
    width: auto;
    height: auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Contact CTA Section */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, 
                var(--primary-yellow) 0%, 
                var(--dark-yellow) 100%);
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.contact-cta::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatReverse 10s ease-in-out infinite;
}

.cta-content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-badge i {
    font-size: 18px;
    animation: pulse 2s ease-in-out infinite;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.15);
    letter-spacing: -1px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 45px;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 45px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-info-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.cta-info-card:hover {
    background: var(--white);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border-color: var(--white);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.4s ease;
}

.info-icon i {
    font-size: 26px;
    color: var(--white);
    transition: all 0.4s ease;
}

.cta-info-card:hover .info-icon {
    background: var(--primary-yellow);
    transform: scale(1.1) rotate(360deg);
}

.cta-info-card:hover .info-icon i {
    color: var(--white);
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    transition: color 0.3s ease;
}

.cta-info-card:hover .info-label {
    color: var(--medium-gray);
}

.info-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    transition: color 0.3s ease;
    text-decoration: none;
}

.info-value:hover {
    text-decoration: underline;
}

.cta-info-card:hover .info-value {
    color: var(--dark-gray);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta i {
    font-size: 18px;
    transition: transform 0.4s ease;
}

.btn-cta:hover i {
    transform: translateX(5px);
}

.btn-cta-white {
    background: var(--white);
    color: var(--dark-gray);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-cta-white:hover {
    background: var(--dark-gray);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.btn-cta-outline {
    background: transparent;
    color: var(--white);
    border: 3px solid var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-cta-outline:hover {
    background: var(--white);
    color: var(--dark-gray);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--dark-gray) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, 
                var(--primary-yellow) 0%, 
                var(--dark-yellow) 50%, 
                var(--primary-yellow) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--primary-yellow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-yellow);
    border-radius: 2px;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.footer-col ul li a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-yellow);
    transform: translateX(5px);
}

.footer-col ul li a:hover::before {
    transform: translateX(5px);
}

.footer-col ul li i {
    margin-right: 12px;
    color: var(--primary-yellow);
    width: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, 
                rgba(246, 198, 62, 0.2), 
                rgba(230, 184, 51, 0.15));
    border: 2px solid rgba(246, 198, 62, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.4s ease;
}

.footer-social a:hover {
    background: linear-gradient(135deg, 
                var(--primary-yellow), 
                var(--dark-yellow));
    color: var(--dark-gray);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 8px 20px rgba(246, 198, 62, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 2px solid rgba(246, 198, 62, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

/* Responsive Design */
@media (max-width: 1366px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .management-grid {
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .header-search {
        max-width: 300px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .management-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .management-image {
        height: 320px;
    }
    
    .cta-info-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .cta-content h2 {
        font-size: 38px;
    }
    
    .banner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
    
    .newsletter-form .btn {
        min-width: 180px;
        font-size: 13px;
        padding: 14px 20px;
        letter-spacing: 0.2px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-left {
        flex-direction: column;
        gap: 8px;
    }
    
    .top-bar-right {
        gap: 8px;
    }
    
    .top-bar-right a {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .header-search {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
    }
    
    .language-toggle {
        display: none !important;
    }
    
    .header-content {
        padding: 0 15px;
        justify-content: space-between;
    }
    
    .header-right {
        justify-content: flex-end;
        align-items: center;
        margin-left: auto;
    }
    
    .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
        margin-right: 15px;
        order: 999;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
        padding: 0;
        transition: right 0.4s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
        border-bottom: 1px solid var(--hover-gray);
        background: var(--light-yellow);
        position: relative;
        z-index: 9998;
    }
    
    .mobile-language-toggle {
        display: flex;
        gap: 8px;
        padding: 15px 20px 20px;
        border-bottom: 1px solid var(--hover-gray);
        background: var(--light-yellow);
    }
    
    .mobile-language-btn {
        background: var(--white);
        border: 1px solid var(--hover-gray);
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        color: var(--dark-gray);
    }
    
    .mobile-language-btn.active,
    .mobile-language-btn:hover {
        background: var(--primary-yellow);
        color: var(--white);
        border-color: var(--primary-yellow);
    }
    
    .mobile-nav-search {
        display: flex;
        align-items: center;
        flex: 1;
        margin-right: 15px;
        background: var(--white);
        border-radius: 25px;
        overflow: hidden;
        border: 1px solid #ddd;
    }
    
    .mobile-search-input {
        flex: 1;
        border: none;
        padding: 10px 15px;
        font-size: 14px;
        outline: none;
        background: transparent;
    }
    
    .mobile-search-btn {
        background: var(--primary-yellow);
        border: none;
        padding: 10px 15px;
        color: var(--white);
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .mobile-search-btn:hover {
        background: var(--yellow-hover);
    }
    
    .mobile-nav-close {
        background: none;
        border: none;
        font-size: 22px;
        color: var(--dark-gray);
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: all 0.3s ease;
        flex-shrink: 0;
        position: relative;
        z-index: 10;
        -webkit-tap-highlight-color: transparent;
        outline: none;
    }
    
    .mobile-nav-close:hover,
    .mobile-nav-close:focus {
        background: var(--hover-gray);
        color: var(--primary-yellow);
        transform: scale(1.05);
    }
    
    .mobile-nav-close:active {
        background: var(--primary-yellow);
        color: var(--white);
        transform: scale(0.95);
    }
    
    /* Touch-friendly mobile close button */
    @media (max-width: 768px) and (pointer: coarse) {
        .mobile-nav-close {
            min-width: 44px;
            min-height: 44px;
            width: 44px;
            height: 44px;
            font-size: 24px;
        }
    }
    
    /* Ensure close button is always clickable */
    .mobile-nav-close {
        pointer-events: auto;
        user-select: none;
    }
    
    .mobile-nav-close i {
        pointer-events: none;
    }
    
    .main-nav ul {
        padding: 20px 0;
        margin: 0;
    }
    
    .main-nav li {
        display: block;
        margin: 0;
        border-bottom: 1px solid var(--hover-gray);
    }
    
    .main-nav li:last-child {
        border-bottom: none;
    }
    
    .main-nav li a {
        display: block;
        padding: 15px 20px;
        color: var(--dark-gray);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .main-nav li a:hover,
    .main-nav li a.active {
        background: var(--light-yellow);
        color: var(--primary-yellow);
        padding-left: 30px;
    }
    
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav a {
        display: block;
        padding: 15px 20px;
        border-radius: 8px;
        margin-bottom: 8px;
        white-space: nowrap;
        transition: all 0.3s ease;
    }
    
    .main-nav > ul > li > a {
        font-weight: 600;
        border: 1px solid transparent;
    }
    
    .main-nav > ul > li > a:hover {
        background: rgba(234, 179, 8, 0.1);
        border-color: rgba(234, 179, 8, 0.2);
    }
    
    /* Modern Mobile Dropdown Styles */
    .main-nav .dropdown-menu {
        position: static !important;
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        transform: none !important;
        background: linear-gradient(135deg, #fff9e6 0%, #fff3cc 100%);
        margin: 8px 0 15px 0;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(234, 179, 8, 0.2);
        padding: 8px 0;
        overflow: hidden;
        pointer-events: none !important;
        max-height: 0;
        transition: max-height 0.3s ease-out, opacity 0.3s ease-out !important;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            max-height: 0;
        }
        to {
            opacity: 1;
            max-height: 500px;
        }
    }
    
    .main-nav .dropdown.active .dropdown-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        max-height: 500px !important;
        overflow: visible !important;
        animation: slideDown 0.3s ease-out forwards !important;
    }
    
    /* Ensure dropdown items are visible */
    .main-nav .dropdown.active .dropdown-menu li {
        display: block !important;
    }
    
    .main-nav .dropdown-menu a {
        padding: 12px 20px;
        margin: 2px 8px;
        font-size: 14px;
        border-radius: 8px;
        color: var(--dark-gray);
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
        display: flex;
        align-items: center;
        text-decoration: none;
    }
    
    /* Arrow removed - no ::before content */
    
    .main-nav .dropdown-menu a:hover,
    .main-nav .dropdown-menu a.active {
        background: linear-gradient(135deg, var(--primary-yellow) 0%, #f59e0b 100%);
        color: var(--white);
        transform: translateX(5px);
        box-shadow: 0 2px 10px rgba(234, 179, 8, 0.3);
    }
    
    /* Arrow hover effect removed */
    
    .main-nav .dropdown-toggle {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .main-nav .dropdown.active .dropdown-toggle {
        background: linear-gradient(135deg, rgba(234, 179, 8, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
        color: var(--primary-yellow);
        border-radius: 8px;
    }
    
    .main-nav .dropdown-toggle i {
        transition: transform 0.3s ease;
        margin-left: 8px;
    }
    
    .main-nav .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
        color: var(--primary-yellow);
    }
    
    /* RTL Mobile Navigation */
    [dir="rtl"] .main-nav {
        right: auto;
        left: -100%;
    }
    
    [dir="rtl"] .main-nav.active {
        left: 0;
    }
    
    [dir="rtl"] .main-nav .dropdown-menu {
        margin: 5px 20px 10px 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-lead {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .management-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .management-image {
        height: 400px;
    }
    
    .management-info {
        padding: 25px;
    }
    
    .banner-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-text h3 {
        font-size: 24px;
        flex-direction: column;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form .btn {
        width: 100%;
        max-width: none;
        min-width: auto;
        font-size: 13px;
        padding: 16px 15px;
        margin-top: 15px;
        letter-spacing: 0.2px;
        text-transform: none;
    }
    
    .contact-cta {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .cta-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-cta {
        width: 100%;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-text h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        font-size: 12px;
        padding: 8px 0;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    /* Ensure header search is completely hidden on mobile */
    .header-search,
    .header-right .header-search,
    .header .header-search {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .logo img {
        max-width: 120px;
    }
    
    .header-content {
        padding: 0 10px;
        min-height: 60px;
    }
    
    .mobile-menu-toggle {
        width: 35px;
        height: 35px;
    }
    
    .main-nav {
        width: 280px;
    }
    
    .mobile-nav-header {
        padding: 15px;
    }
    
    .mobile-nav-search {
        margin-right: 10px;
    }
    
    .mobile-language-toggle {
        padding: 10px 15px 15px;
    }
    
    .mobile-language-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    /* Improved mobile dropdown spacing for small screens */
    .main-nav .dropdown-menu {
        margin: 5px 0 12px 0;
        border-radius: 10px;
        padding: 6px 0;
    }
    
    .main-nav .dropdown-menu a {
        padding: 10px 16px;
        margin: 1px 6px;
        font-size: 13px;
    }
    
    .mobile-search-input {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .mobile-search-btn {
        padding: 8px 12px;
    }
    
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }
    
    .cta-content h2 {
        font-size: 26px;
    }
    
    .cta-badge {
        font-size: 12px;
        padding: 8px 20px;
    }
    
    .btn-cta {
        padding: 15px 30px;
        font-size: 14px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
    }
    
    .info-icon i {
        font-size: 22px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .newsletter-text h3 {
        font-size: 20px;
    }
    
    .cta-text h2 {
        font-size: 28px;
    }
}

/* ===================== */
/* Page-Specific Styles */
/* ===================== */

/* Page Hero Styles */
.page-hero {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
    background-image: url('../assets/3054-engine-blocks-main.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 80px;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.page-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.breadcrumb a:hover {
    color: var(--primary-yellow);
}

.breadcrumb i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

.breadcrumb span {
    color: var(--primary-yellow);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
}

.page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    font-weight: 500;
}

/* CEO Hero - Enhanced text visibility */
.ceo-hero .page-title {
    color: white;
    text-shadow: 4px 4px 10px rgba(0,0,0,0.9), 2px 2px 6px rgba(0,0,0,0.8);
    font-size: 52px;
}

.ceo-hero .page-subtitle {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 3px 3px 8px rgba(0,0,0,0.9), 1px 1px 4px rgba(0,0,0,0.8);
    font-weight: 500;
}

.ceo-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.9);
}

.ceo-hero .breadcrumb span {
    color: var(--primary-yellow);
    font-weight: 600;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.9);
}

/* Enhanced text visibility with better approach */
.page-hero .page-title {
    color: white;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.8), 1px 1px 4px rgba(0,0,0,0.9);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-hero .page-subtitle {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8), 1px 1px 3px rgba(0,0,0,0.9);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

.page-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.page-hero .breadcrumb a:hover {
    color: var(--primary-yellow);
}

.page-hero .breadcrumb i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

.page-hero .breadcrumb span {
    color: var(--primary-yellow);
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

/* Content Sections */
.content-section {
    padding: 60px 0;
}

.content-section:nth-child(even) {
    background-color: var(--light-gray);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-text {
    padding-right: 20px;
}

.content-image {
    position: relative;
}

.content-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.content-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 48px;
    color: var(--primary-yellow);
    margin-bottom: 15px;
    display: block;
}

.overlay-content h3 {
    font-size: 24px;
    font-weight: 600;
}

.image-stats {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 30px;
}

.stat-item {
    text-align: center;
    color: white;
    background: rgba(0,0,0,0.7);
    padding: 15px;
    border-radius: 10px;
}

.stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-yellow);
}

.stat-label {
    font-size: 12px;
    opacity: 0.9;
}

.lead-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.section-description {
    font-size: 16px;
    color: var(--medium-gray);
    line-height: 1.7;
    max-width: 800px;
    margin: 20px auto 50px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.feature-card p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-yellow);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: var(--primary-yellow);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    min-width: 100px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 0 30px;
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.timeline-content p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.team-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 15px;
}

.team-social a {
    width: 50px;
    height: 50px;
    background: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.team-social a:hover {
    transform: scale(1.2);
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-info h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.team-position {
    color: var(--primary-yellow);
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}

.team-info p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Achievement Cards */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.achievement-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--dark-yellow));
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.achievement-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
}

.achievement-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.achievement-card p {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
    color: white;
    text-align: center;
    border-radius: 20px;
    margin: 40px 0;
}

.cta-card {
    padding: 60px 40px;
}

.cta-card h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-card p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 60px;
        background-attachment: scroll;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-text {
        padding-right: 0;
    }
    
    .content-image img {
        height: 250px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 60px;
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        min-width: 80px;
        font-size: 14px;
        padding: 10px 15px;
    }
    
    .timeline-content {
        margin: 20px 0 0 0;
        width: 100%;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-card {
        padding: 40px 20px;
    }
    
    .cta-card h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Social Responsibility Page Styles */
.sr-pillars {
    margin: 60px 0;
}

.sr-pillars h2 {
    text-align: center;
    font-size: 36px;
    color: var(--dark-gray);
    margin-bottom: 50px;
    font-weight: 800;
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pillar-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-yellow);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(246, 198, 62, 0.2);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.pillar-icon i {
    font-size: 36px;
    color: #ffffff;
}

.pillar-card h3 {
    font-size: 24px;
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-weight: 700;
}

.pillar-card ul {
    list-style: none;
    padding: 0;
}

.pillar-card ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #555555;
    font-size: 15px;
    line-height: 1.6;
}

.pillar-card ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
    font-size: 18px;
}

/* Initiatives Section */
.sr-initiatives {
    margin: 60px 0;
    padding: 60px 0;
    background: var(--light-yellow);
    border-radius: 20px;
}

.sr-initiatives h2 {
    text-align: center;
    font-size: 36px;
    color: var(--dark-gray);
    margin-bottom: 50px;
    font-weight: 800;
}

.initiatives-list {
    max-width: 900px;
    margin: 0 auto;
}

.initiative-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.initiative-item:hover {
    box-shadow: 0 8px 25px rgba(246, 198, 62, 0.2);
    transform: translateX(10px);
}

.initiative-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-yellow);
    line-height: 1;
    flex-shrink: 0;
}

.initiative-content h3 {
    font-size: 22px;
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-weight: 700;
}

.initiative-content p {
    color: #555555;
    line-height: 1.8;
    font-size: 15px;
}

/* Impact Statement */
.impact-statement {
    margin: 60px 0;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--dark-gray), #1a1a1a);
    border-radius: 20px;
    text-align: center;
}

.impact-content {
    max-width: 800px;
    margin: 0 auto;
}

.impact-content i {
    font-size: 40px;
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

.impact-content p {
    font-size: 22px;
    color: #ffffff;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
}

.impact-author {
    font-size: 16px;
    color: var(--primary-yellow);
}

.impact-author strong {
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 60px 0;
    padding: 60px 40px;
    background: var(--light-yellow);
    border-radius: 20px;
}

.cta-section h2 {
    font-size: 36px;
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-section p {
    font-size: 18px;
    color: #555555;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .pillar-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .initiative-item {
        flex-direction: column;
        gap: 20px;
    }

    .initiative-number {
        font-size: 36px;
    }

    .sr-pillars h2,
    .sr-initiatives h2,
    .cta-section h2 {
        font-size: 28px;
    }

    .impact-content p {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .pillar-card {
        padding: 30px 20px;
    }

    .pillar-icon {
        width: 60px;
        height: 60px;
    }

    .pillar-icon i {
        font-size: 28px;
    }

    .initiative-item {
        padding: 20px;
    }

    .impact-statement {
        padding: 40px 20px;
    }

    .cta-section {
        padding: 40px 20px;
    }
}

/* Contact Page Styles */
/* Contact Hero Section */
.contact-hero-section {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(246,198,62,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.contact-hero-content {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(246, 198, 62, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--primary-yellow);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(246, 198, 62, 0.3);
}

.hero-badge i {
    font-size: 18px;
}

.contact-hero-content h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 800;
}

.contact-hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.contact-info-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(246, 198, 62, 0.3);
    border-color: var(--primary-yellow);
    background: #ffffff;
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.contact-info-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-card-icon i {
    font-size: 36px;
    color: #ffffff;
}

.contact-info-card h3 {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-info-card p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 15px;
}

.contact-link {
    display: block;
    color: var(--primary-yellow);
    font-weight: 600;
    margin: 8px 0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

.contact-link:hover {
    color: var(--dark-yellow);
    transform: translateX(5px);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    margin: 80px 0;
}

.contact-form-section {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 40px;
}

.contact-form-container {
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    padding: 60px 50px;
    border-radius: 25px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(246, 198, 62, 0.1);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--dark-yellow), var(--primary-yellow));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.contact-form-header {
    margin-bottom: 45px;
    position: relative;
}

.form-header-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 
        0 10px 30px rgba(246, 198, 62, 0.3),
        inset 0 -2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.form-header-icon::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    border-radius: 22px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(8px);
}

.form-header-icon i {
    font-size: 32px;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.contact-form-header h2 {
    font-size: 36px;
    color: var(--dark-gray);
    margin-bottom: 12px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.contact-form-header p {
    font-size: 17px;
    color: #666666;
    line-height: 1.7;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.contact-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
}

.contact-form label::after {
    content: '*';
    color: #e74c3c;
    margin-left: 4px;
    font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 18px 22px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    font-weight: 500;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
    border-color: #d0d0d0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary-yellow);
    box-shadow: 
        0 0 0 5px rgba(246, 198, 62, 0.12),
        0 8px 20px rgba(246, 198, 62, 0.15);
    background: #ffffff;
    transform: translateY(-2px);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

.btn-submit {
    width: 100%;
    padding: 20px;
    font-size: 17px;
    font-weight: 700;
    margin-top: 20px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    border: none;
    color: #ffffff;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 10px 30px rgba(246, 198, 62, 0.4),
        inset 0 -2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(246, 198, 62, 0.5),
        inset 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.btn-submit:hover::before {
    width: 400px;
    height: 400px;
}

.btn-submit:active {
    transform: translateY(-1px);
}

.form-message {
    margin-top: 25px;
    padding: 18px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card {
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.sidebar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sidebar-card:hover::before {
    opacity: 1;
}

.sidebar-card-primary {
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    color: #ffffff;
}

.sidebar-card-secondary {
    background: linear-gradient(135deg, var(--dark-gray), #1a1a1a);
    color: #ffffff;
}

.sidebar-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.sidebar-card:hover .sidebar-icon {
    transform: scale(1.1) rotate(10deg);
    background: rgba(255, 255, 255, 0.3);
}

.sidebar-icon i {
    font-size: 32px;
    color: #ffffff;
}

.sidebar-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #ffffff;
}

.sidebar-card p {
    font-size: 15px;
    margin-bottom: 25px;
    opacity: 0.95;
    color: #ffffff;
    line-height: 1.6;
}

.sidebar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffffff;
    color: var(--dark-gray);
    padding: 12px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sidebar-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.sidebar-info {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item i {
    color: var(--primary-yellow);
    font-size: 18px;
}

.info-item span {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 15px;
}

/* FAQ Section */
.contact-faq-section {
    margin: 80px 0 60px;
    padding: 70px 60px;
    background: linear-gradient(135deg, var(--light-yellow), #fff8e6);
    border-radius: 25px;
    position: relative;
}

.contact-faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(246,198,62,0.1)"/></svg>');
    opacity: 0.5;
}

.contact-faq-section h2 {
    text-align: center;
    font-size: 38px;
    color: var(--dark-gray);
    margin-bottom: 50px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border-left: 4px solid var(--primary-yellow);
}

.faq-item:hover {
    box-shadow: 0 15px 40px rgba(246, 198, 62, 0.2);
    transform: translateY(-8px);
}

.faq-item h3 {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h3::before {
    content: '?';
    width: 28px;
    height: 28px;
    background: var(--primary-yellow);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
}

.faq-item p {
    font-size: 15px;
    color: #555555;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .contact-form-section {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero-content h2 {
        font-size: 36px;
    }

    .contact-form-container {
        padding: 35px 25px;
    }

    .contact-faq-section {
        padding: 50px 30px;
    }
}

@media (max-width: 768px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .contact-hero-section {
        padding: 60px 0 40px;
    }

    .contact-hero-content h2 {
        font-size: 28px;
    }

    .contact-hero-content p {
        font-size: 16px;
    }

    .contact-form-header h2 {
        font-size: 26px;
    }

    .contact-faq-section h2 {
        font-size: 28px;
    }

    .sidebar-info {
        margin-top: 20px;
    }
}

/* Gallery Page Styles */
.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-header-content h2 {
    font-size: 38px;
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-weight: 800;
}

.gallery-header-content p {
    font-size: 18px;
    color: #666666;
    max-width: 700px;
    margin: 0 auto 40px;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    border: 2px solid var(--primary-yellow);
    background: #ffffff;
    color: var(--dark-gray);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: var(--primary-yellow);
    color: #ffffff;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(246, 198, 62, 0.4);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-item {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item-image {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    background: #f0f0f0;
}

.gallery-item-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-item-image img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-view {
    background: var(--primary-yellow);
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.gallery-item-view:hover {
    background: var(--dark-yellow);
    transform: scale(1.05);
}

.gallery-item-info {
    padding: 20px;
}

.gallery-item-info h3 {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 8px;
    font-weight: 700;
}

.gallery-item-info p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 12px;
    line-height: 1.6;
}

.gallery-item-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: #999999;
}

.gallery-item-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.gallery-item-meta i {
    color: var(--primary-yellow);
}

/* Gallery Loading State */
.gallery-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: #999999;
}

.gallery-loading i {
    font-size: 48px;
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

.gallery-loading p {
    font-size: 18px;
}

/* Gallery Empty State */
.gallery-empty {
    text-align: center;
    padding: 100px 20px;
    color: #999999;
}

.gallery-empty i {
    font-size: 80px;
    color: #e0e0e0;
    margin-bottom: 25px;
}

.gallery-empty h3 {
    font-size: 24px;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.gallery-empty p {
    font-size: 16px;
}

/* Gallery Modal */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.gallery-modal.active {
    display: flex;
}

.gallery-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.gallery-modal-content {
    position: relative;
    max-width: 1200px;
    width: 100%;
    z-index: 1;
    animation: modalSlideUp 0.4s ease;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-modal-close:hover {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    transform: rotate(90deg);
}

.gallery-modal-prev,
.gallery-modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-modal-prev {
    left: -70px;
}

.gallery-modal-next {
    right: -70px;
}

.gallery-modal-prev:hover,
.gallery-modal-next:hover {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
}

.gallery-modal-image-wrapper {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gallery-modal-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 70vh;
    object-fit: contain;
}

.gallery-modal-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.gallery-modal-info h3 {
    font-size: 28px;
    color: var(--dark-gray);
    margin-bottom: 12px;
    font-weight: 700;
}

.gallery-modal-info p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.modal-meta {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 14px;
    color: #999999;
}

.modal-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-meta i {
    color: var(--primary-yellow);
    font-size: 16px;
}

/* Responsive Gallery */
@media (max-width: 1200px) {
    .gallery-modal-prev {
        left: 10px;
    }
    
    .gallery-modal-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .gallery-header-content h2 {
        font-size: 28px;
    }
    
    .gallery-header-content p {
        font-size: 16px;
    }
    
    .gallery-modal-info h3 {
        font-size: 22px;
    }
    
    .gallery-modal-info {
        padding: 20px;
    }
    
    .gallery-modal-prev,
    .gallery-modal-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-btn {
        width: 100%;
    }
}

/* Sister Companies Section */
.sister-companies-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.sister-companies-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(246, 198, 62, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(246, 198, 62, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(246, 198, 62, 0.05) 0%, transparent 50%);
}

.sister-companies-section .container {
    position: relative;
    z-index: 1;
}

.sister-companies-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.sister-companies-section .section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sister-companies-section .title-divider {
    width: 140px;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
    margin: 20px auto;
    border-radius: 10px;
}

.sister-companies-section .section-subtitle {
    font-size: 18px;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.7;
}

.sister-companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
    margin: 80px 0;
    perspective: 1000px;
}

/* Ensure consistent card sizing */
.sister-companies-grid .sister-company-card {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sister-companies-grid .company-logo {
    flex-shrink: 0;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sister-companies-grid .company-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sister-company-card {
    background: var(--white) !important;
    border-radius: 25px !important;
    padding: 50px 40px !important;
    box-shadow: 
        0 20px 40px rgba(44, 44, 44, 0.08),
        0 8px 16px rgba(44, 44, 44, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    border: 1px solid rgba(246, 198, 62, 0.1) !important;
    position: relative !important;
    overflow: hidden !important;
    transform-style: preserve-3d !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    min-height: 400px !important;
}

.sister-company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, 
        var(--primary-yellow) 0%, 
        #ffd700 25%, 
        var(--dark-yellow) 50%, 
        #ffd700 75%, 
        var(--primary-yellow) 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}

.sister-company-card::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(246, 198, 62, 0.1), rgba(246, 198, 62, 0.2));
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.sister-company-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 
        0 30px 60px rgba(44, 44, 44, 0.15),
        0 15px 30px rgba(44, 44, 44, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: var(--primary-yellow);
}

.sister-company-card:hover::after {
    opacity: 1;
    transform: scale(1.2);
}

.company-logo {
    text-align: center !important;
    margin-bottom: 40px !important;
    position: relative !important;
    flex-shrink: 0 !important;
    height: 120px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.company-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(246, 198, 62, 0.05), rgba(246, 198, 62, 0.15));
    border-radius: 50%;
    z-index: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.sister-company-card:hover .company-logo::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.company-logo img {
    max-width: 200px !important;
    max-height: 90px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center !important;
    filter: brightness(1) contrast(1.1) saturate(1.1) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative !important;
    z-index: 1 !important;
    display: block !important;
    margin: 0 auto !important;
}

.sister-company-card:hover .company-logo img {
    transform: scale(1.08) translateY(-5px);
    filter: brightness(1.1) contrast(1.2) saturate(1.2);
}

.company-info {
    text-align: center !important;
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.company-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    transition: all 0.3s ease;
}

.company-name::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--dark-yellow));
    border-radius: 2px;
    transition: all 0.3s ease;
}

.sister-company-card:hover .company-name::after {
    width: 60px;
}

.company-description {
    color: var(--medium-gray);
    font-size: 16px;
    margin-bottom: 35px;
    line-height: 1.7;
    font-weight: 400;
}

.company-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
}

.company-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 240px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.company-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.company-link:hover::before {
    left: 100%;
}

.website-link {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    color: var(--dark-gray);
    border: 2px solid transparent;
    box-shadow: 0 8px 20px rgba(246, 198, 62, 0.3);
}

.website-link:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(246, 198, 62, 0.4);
    background: linear-gradient(135deg, var(--dark-yellow) 0%, var(--primary-yellow) 100%);
}

.email-link {
    background: var(--white);
    color: var(--medium-gray);
    border: 2px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(44, 44, 44, 0.05);
}

.email-link:hover {
    background: var(--light-gray);
    border-color: var(--primary-yellow);
    color: var(--dark-gray);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(44, 44, 44, 0.1);
}

.network-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 80px;
}

.benefit-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(44, 44, 44, 0.08);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(246, 198, 62, 0.1);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(246, 198, 62, 0.02), rgba(246, 198, 62, 0.05));
    opacity: 0;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(44, 44, 44, 0.12);
    border-color: var(--primary-yellow);
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--dark-yellow) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--dark-gray);
    box-shadow: 0 8px 20px rgba(246, 198, 62, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.benefit-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--dark-yellow));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 30px rgba(246, 198, 62, 0.4);
}

.benefit-item:hover .benefit-icon::before {
    opacity: 0.3;
}

.benefit-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    z-index: 1;
}

.benefit-item p {
    color: var(--medium-gray);
    font-size: 15px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Responsive Design for Sister Companies */
@media (max-width: 768px) {
    .sister-companies-section {
        padding: 80px 0;
    }
    
    .sister-companies-section .section-title {
        font-size: 32px;
    }
    
    .sister-companies-section .section-subtitle {
        font-size: 16px;
    }
    
    .sister-companies-section .title-divider {
        width: 100px;
        height: 4px;
        margin: 15px auto;
    }
    
    .sister-companies-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 60px 0;
    }
    
    .sister-companies-grid .sister-company-card {
        min-height: 350px;
    }
    
    .sister-companies-grid .company-logo {
        height: 100px;
    }
    
    .sister-company-card {
        padding: 40px 25px;
        border-radius: 20px;
    }
    
    .company-logo img {
        max-width: 170px;
        max-height: 70px;
    }
    
    .company-name {
        font-size: 24px;
    }
    
    .company-links {
        gap: 15px;
    }
    
    .company-link {
        min-width: 200px;
        padding: 14px 25px;
        font-size: 14px;
    }
    
    .network-benefits {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 60px;
    }
    
    .benefit-item {
        padding: 35px 25px;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .sister-companies-section {
        padding: 60px 0;
    }
    
    .sister-companies-section .section-title {
        font-size: 28px;
    }
    
    .sister-companies-section .title-divider {
        width: 80px;
        height: 3px;
        margin: 12px auto;
    }
    
    .sister-companies-grid {
        margin: 50px 0;
    }
    
    .sister-companies-grid .sister-company-card {
        min-height: 320px;
    }
    
    .sister-companies-grid .company-logo {
        height: 80px;
    }
    
    .sister-company-card {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .company-logo img {
        max-width: 150px;
        max-height: 60px;
    }
    
    .company-name {
        font-size: 22px;
    }
    
    .company-link {
        min-width: 180px;
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .benefit-item {
        padding: 30px 20px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* International Partners Section */
.international-partners-section {
    margin: 80px 0;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow: hidden;
}

.international-partners-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.international-partners-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.international-partners-section .section-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.partners-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px 0;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.1);
}

.partners-marquee {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
    width: calc(200% + 40px);
}

.partner-item {
    flex: 0 0 200px;
    margin: 0 20px;
    text-align: center;
    background: #fff;
    border-radius: 12px;
    padding: 20px 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.partner-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.partner-item img {
    width: 120px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.partner-item:hover img {
    transform: scale(1.1);
}

.partner-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    letter-spacing: 1px;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover for better UX */
.partners-marquee-container:hover .partners-marquee {
    animation-play-state: paused;
}

/* Responsive adjustments for International Partners */
@media (max-width: 768px) {
    .international-partners-section .section-title {
        font-size: 2rem;
    }
    
    .partner-item {
        flex: 0 0 160px;
        margin: 0 10px;
        padding: 15px 10px;
        min-height: 140px;
    }
    
    .partner-item img {
        width: 100px;
        height: 50px;
    }
    
    .partners-marquee {
        animation-duration: 20s;
    }
}

@media (max-width: 480px) {
    .international-partners-section .section-title {
        font-size: 1.8rem;
    }
    
    .partner-item {
        flex: 0 0 140px;
        margin: 0 8px;
    }
    
    .partner-item img {
        width: 80px;
        height: 40px;
    }
}

/* Customers Section */
.customers-section {
    margin: 80px 0;
    padding: 60px 20px;
    background: transparent;
    overflow: hidden;
}

.customers-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.customers-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.customers-section .section-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.customers-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 0;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.1);
}

.customers-marquee {
    display: flex;
    animation: customersMarqueeScroll 35s linear infinite;
    width: calc(200% + 40px);
}

.customer-item {
    flex: 0 0 280px;
    margin: 0 25px;
    text-align: center;
    background: #fff;
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid transparent;
}

.customer-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border-color: var(--primary-yellow);
}

.customer-item img {
    width: 200px;
    height: 100px;
    object-fit: contain;
    transition: all 0.3s ease;
    border-radius: 8px;
    filter: grayscale(20%);
}

.customer-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

@keyframes customersMarqueeScroll {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Pause animation on hover for better UX */
.customers-marquee-container:hover .customers-marquee {
    animation-play-state: paused;
}

/* Responsive adjustments for Customers Section */
@media (max-width: 768px) {
    .customers-section .section-title {
        font-size: 2rem;
    }
    
    .customer-item {
        flex: 0 0 180px;
        margin: 0 15px;
        padding: 20px 15px;
        min-height: 120px;
    }
    
    .customer-item img {
        width: 130px;
        height: 65px;
    }
    
    .customers-marquee {
        animation-duration: 25s;
    }
}

@media (max-width: 480px) {
    .customers-section .section-title {
        font-size: 1.8rem;
    }
    
    .customer-item {
        flex: 0 0 160px;
        margin: 0 10px;
        padding: 15px 10px;
    }
    
    .customer-item img {
        width: 110px;
        height: 55px;
    }
}

/* Additional Mobile Improvements */
@media (max-width: 768px) {
    /* Improved touch targets */
    .top-bar-right a {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Better spacing for mobile */
    .section {
        padding: 60px 0;
    }
    
    /* Improved button spacing */
    .hero-buttons .btn-cta {
        margin: 5px;
        min-width: 200px;
    }
    
    /* Better image responsiveness */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Improved text readability */
    body {
        line-height: 1.6;
    }
    
    /* Better form elements */
    input, textarea, select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .container {
        padding: 0 15px;
    }
    
    /* Stack hero buttons vertically */
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .hero-buttons .btn-cta {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    /* Smaller text for very small screens */
    .hero-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .hero-lead {
        font-size: 14px;
        margin: 15px 0 25px;
    }
    
    /* Better mobile navigation */
    .main-nav {
        width: 100%;
        right: -100%;
    }
    
    /* Improved mobile cards */
    .sidebar-card {
        margin-bottom: 20px;
        padding: 20px 15px;
    }
    
    /* Better mobile spacing */
    .section-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .section-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

/* Landscape phone improvements */
@media (max-width: 812px) and (orientation: landscape) {
    .hero {
        min-height: 60vh;
    }
    
    .page-hero {
        padding: 80px 0 40px;
    }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .btn:hover {
        transform: none;
    }
    
    /* Larger touch targets */
    button, .btn, a {
        min-height: 44px;
    }
}

/* CSS Updated: 2025-10-29 Mobile Optimized */
