/* The Road - Responsive Navbar & Header CSS */
/* Arabic RTL Optimized */

/* CSS Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #b8860b;
    --primary-dark: #9d7209;
    --primary-light: #daa520;
    --secondary-color: #64748b;
    --accent-color: #cd853f;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --dark-color: #1e293b;
    --light-color: #fefdf8;
    --white: #ffffff;
    --border-color: #f4f1e8;
    --shadow-light: 0 1px 3px rgba(184, 134, 11, 0.15);
    --shadow-medium: 0 4px 6px rgba(184, 134, 11, 0.12);
    --shadow-large: 0 10px 15px rgba(184, 134, 11, 0.2);
    --gold-gradient: linear-gradient(135deg, #daa520, #b8860b, #cd853f);
    --font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --transition: all 0.3s ease;
    --border-radius: 8px;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    background: var(--white);
    direction: rtl;
    text-align: right;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    animation: slideDown 0.6s ease-out;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-large);
    transform: translateY(0);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Top Bar */
.top-bar {
    background: var(--gold-gradient);
    border-bottom: 1px solid var(--primary-color);
    padding: 8px 0;
    animation: fadeIn 0.8s ease-out;
    transition: all 0.4s ease;
    overflow: hidden;
    max-height: 100px;
    opacity: 1;
    visibility: visible;
}

.top-bar.hidden {
    max-height: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    border-bottom: none;
}

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

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar .contact-info {
    display: flex;
    gap: 30px;
    background: none;
    background-color: transparent;
}

.top-bar .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    background: none;
    background-color: transparent;
    border: none;
    border-radius: 0;
}

.contact-item i {
    color: var(--white);
    font-size: 13px;
    opacity: 0.9;
}

.header-actions {
    display: flex;
    gap: 20px;
}

.action-link {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.action-link:hover {
    color: var(--primary-color);
}

.action-link i {
    font-size: 13px;
}

.cart-link .cart-count {
    position: absolute;
    top: -8px;
    left: -8px;
    background: var(--danger-color);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

/* Main Navbar */
.navbar {
    padding: 15px 0;
    animation: slideInFromTop 0.5s ease-out 0.3s both;
}

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

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--dark-color);
}

.logo-img {
    height: 85px;
    width: auto;
    transition: var(--transition);
    object-fit: contain;
    background: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    clip-path: inset(0);
}

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

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.mobile-menu-header {
    display: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 15px;
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    text-shadow: 0 1px 2px rgba(184, 134, 11, 0.1);
    transform: translateY(-1px);
    transition: var(--transition);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px 2px 0 0;
}

/* Dropdown Arrow */
.dropdown-arrow {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border: 1px solid var(--primary-light);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-large);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1001;
    list-style: none;
    padding: 8px 0;
    margin-top: 8px;
    animation: dropdownSlide 0.3s ease-out forwards;
}

@keyframes dropdownSlide {
    0% {
        opacity: 0;
        transform: translateY(-15px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
}

.dropdown-link:hover {
    background: var(--light-color);
    color: var(--primary-color);
    padding-right: 25px;
}

/* Navbar Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Search Box */
.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    border: 2px solid var(--border-color);
    border-radius: 25px;
    padding: 10px 45px 10px 18px;
    width: 280px;
    font-family: var(--font-family);
    font-size: 14px;
    background: var(--light-color);
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-btn {
    position: absolute;
    left: 8px;
    background: var(--gold-gradient);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.search-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* CTA Button */
.cta-btn {
    background: var(--gold-gradient);
    color: var(--white);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    white-space: nowrap;
    border: 1px solid var(--primary-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: var(--shadow-medium);
}

.cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(184, 134, 11, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(184, 134, 11, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(184, 134, 11, 0);
    }
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Welcome Section */
.main-content {
    min-height: 60vh;
}

.welcome-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-color) 100%);
    position: relative;
    overflow: hidden;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(184, 134, 11, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(205, 133, 63, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.welcome-text {
    animation: slideInFromRight 1s ease-out;
}

.welcome-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-subtitle {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 25px;
    opacity: 0.9;
}

.welcome-description {
    font-size: 1.1rem;
    color: var(--secondary-color);
    line-height: 1.8;
    margin-bottom: 40px;
}

.welcome-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border-right: 4px solid var(--primary-color);
}

.feature-item:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.feature-item span {
    font-weight: 500;
    color: var(--dark-color);
}

.welcome-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--white);
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
    animation: pulse 2s infinite;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

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

.welcome-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInFromLeft 1s ease-out;
}

.image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 400px;
}

.welcome-logo {
    width: 300px;
    height: auto;
    z-index: 2;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.welcome-section .image-overlay {
    display: none;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar-actions {
        gap: 15px;
    }

    .search-input {
        width: 220px;
    }

    .nav-menu {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    /* Hide desktop elements */
    .top-bar,
    .contact-info,
    .header-actions,
    .search-box {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .top-bar .container {
        justify-content: center;
    }

    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 80px 0 30px;
        gap: 0;
        overflow-y: auto;
        transition: right 0.3s ease;
        border-left: 1px solid var(--border-color);
        box-shadow: var(--shadow-large);
        z-index: 1001;
    }

    .nav-menu.active {
        right: 0;
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        border-bottom: 2px solid var(--border-color);
        background: var(--light-color);
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .mobile-logo .logo-img {
        height: 70px;
        width: auto;
    }

    .mobile-close {
        background: none;
        border: none;
        font-size: 20px;
        color: var(--secondary-color);
        cursor: pointer;
        padding: 8px;
        border-radius: 50%;
        transition: var(--transition);
    }

    .mobile-close:hover {
        background: var(--white);
        color: var(--primary-color);
    }

    .nav-item {
        border-bottom: 1px solid var(--border-color);
    }

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

    .nav-link {
        padding: 18px 25px;
        justify-content: space-between;
        border-bottom: none;
    }

    .nav-link.active::after {
        display: none;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: var(--light-color);
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-item.active .dropdown-menu {
        max-height: 300px;
    }

    .dropdown-link {
        padding: 15px 45px;
        font-size: 13px;
    }

    .navbar-actions {
        order: -1;
        margin: 0 0 20px;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
        padding: 15px;
        font-size: 16px;
    }

    .logo-text {
        font-size: 20px;
    }

    .welcome-section {
        padding: 60px 0;
    }

    .welcome-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .welcome-title {
        font-size: 2.5rem;
    }

    .welcome-subtitle {
        font-size: 1.2rem;
    }

    .welcome-description {
        font-size: 1rem;
    }

    .image-container {
        width: 300px;
        height: 300px;
    }

    .welcome-logo {
        width: 220px;
    }

    .welcome-actions {
        justify-content: center;
    }

    .welcome-image {
        order: -1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-menu {
        width: 100vw;
        right: -100vw;
    }

    .nav-menu.active {
        right: 0;
    }

    .navbar {
        padding: 12px 0;
    }

    .logo-img {
        height: 55px;
    }

    .logo-text {
        font-size: 18px;
    }

    .welcome-title {
        font-size: 2rem;
    }

    .welcome-subtitle {
        font-size: 1.1rem;
    }

    .welcome-description {
        font-size: 0.95rem;
    }

    .image-container {
        width: 250px;
        height: 250px;
    }

    .welcome-logo {
        width: 180px;
    }

    .welcome-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
        padding: 18px 24px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.nav-link:focus,
.dropdown-link:focus,
.search-input:focus,
.cta-btn:focus,
.mobile-toggle:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(184, 134, 11, 0.02) 0%, transparent 50%);
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-large);
    animation: slideInFromLeft 1s ease-out;
}

.about-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

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

.about-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 30px 30px;
    transform: translateY(100%);
    transition: var(--transition);
}

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

.overlay-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.stats-item {
    text-align: center;
    color: var(--white);
}

.stats-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-light);
    margin-bottom: 5px;
}

.stats-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-text {
    animation: slideInFromRight 1s ease-out;
}

.section-header {
    margin-bottom: 40px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    position: relative;
    padding-right: 20px;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 12px;
    height: 2px;
    background: var(--primary-color);
    transform: translateY(-50%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1.3;
    margin: 0;
}

.about-description {
    margin-bottom: 50px;
}

.about-description p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-description p:last-child {
    margin-bottom: 0;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: var(--light-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border-right: 4px solid transparent;
}

.value-item:hover {
    background: var(--white);
    border-right-color: var(--primary-color);
    box-shadow: var(--shadow-medium);
    transform: translateX(-10px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-size: 1.3rem;
    box-shadow: var(--shadow-light);
}

.value-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.value-content p {
    color: var(--secondary-color);
    line-height: 1.6;
    margin: 0;
}

.about-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive About Section */
@media (max-width: 1024px) {
    .about-content {
        gap: 60px;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .about-image {
        order: -1;
    }

    .about-img {
        height: 400px;
    }

    .overlay-content {
        flex-direction: column;
        gap: 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-description p {
        font-size: 1rem;
    }

    .value-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .value-icon {
        margin: 0 auto;
    }

    .about-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 60px 0;
    }

    .about-img {
        height: 300px;
    }

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

    .stats-number {
        font-size: 1.5rem;
    }

    .stats-label {
        font-size: 0.8rem;
    }

    .about-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--light-color) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.03) 0%, transparent 70%);
    animation: rotate 60s linear infinite;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-medium);
    animation: pulse 3s ease-in-out infinite;
}

.section-header .section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.section-header .section-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(184, 134, 11, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(184, 134, 11, 0.15);
    border-color: var(--primary-color);
}

.service-content {
    padding: 40px;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    position: relative;
    z-index: 2;
}

.service-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gold-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(-45deg);
    transition: all 0.6s;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(184, 134, 11, 0.4);
}

.service-card:hover .service-icon::before {
    top: 50%;
    left: 50%;
}

.service-info {
    flex: 1;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--primary-color);
}

.service-desc {
    color: var(--secondary-color);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    transition: color 0.3s ease;
}

.service-card:hover .service-desc {
    color: var(--dark-color);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.service-card:hover .service-overlay {
    opacity: 0.03;
}

/* Enhanced Animations */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
        transform: scale(1.05);
    }
}

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Stagger animation for service cards */
.service-card:nth-child(1) { animation: slideInFromBottom 0.6s ease-out 0.1s both; }
.service-card:nth-child(2) { animation: slideInFromBottom 0.6s ease-out 0.2s both; }
.service-card:nth-child(3) { animation: slideInFromBottom 0.6s ease-out 0.3s both; }
.service-card:nth-child(4) { animation: slideInFromBottom 0.6s ease-out 0.4s both; }
.service-card:nth-child(5) { animation: slideInFromBottom 0.6s ease-out 0.5s both; }
.service-card:nth-child(6) { animation: slideInFromBottom 0.6s ease-out 0.6s both; }

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-container {
        gap: 25px;
    }

    .section-header .section-title {
        font-size: 2.4rem;
    }

    .service-content {
        padding: 35px;
        gap: 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .section-header .section-title {
        font-size: 2rem;
    }

    .section-header .section-subtitle {
        font-size: 1.1rem;
    }

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

    .service-content {
        padding: 30px;
        gap: 18px;
    }

    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .service-desc {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 60px 0;
    }

    .section-header .section-title {
        font-size: 1.8rem;
    }

    .section-header .section-subtitle {
        font-size: 1rem;
    }

    .service-content {
        padding: 25px;
        gap: 15px;
        flex-direction: column;
        text-align: center;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 auto;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-desc {
        font-size: 0.9rem;
    }
}

/* Brands Section */
.brands-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.brands-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-color) 0%, transparent 50%, var(--light-color) 100%);
    z-index: 0;
}

.brands-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.brands-section .section-badge {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-medium);
    animation: pulse 3s ease-in-out infinite;
}

.brands-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.brands-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.brands-container {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
    overflow: hidden;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px 20px;
    box-shadow: var(--shadow-light);
}

.brands-scroll {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 100px;
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.brand-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.1), transparent);
    transition: left 0.6s;
}

.brand-item:hover::before {
    left: 100%;
}

.brand-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 35px rgba(184, 134, 11, 0.15);
    border-color: var(--primary-light);
}

.brand-logo {
    max-width: 140px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: var(--transition);
}

.brand-item:hover .brand-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.brand-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.brand-placeholder i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.brand-placeholder span {
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.brand-item:hover .brand-placeholder {
    color: var(--primary-color);
}

.brand-item:hover .brand-placeholder i {
    transform: scale(1.2) rotate(5deg);
    color: var(--primary-dark);
}

.brands-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    min-width: 140px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
    border-color: var(--primary-light);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
    transition: var(--transition);
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    color: var(--primary-dark);
}

.stat-label {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    transition: var(--transition);
}

.stat-item:hover .stat-label {
    color: var(--dark-color);
}


/* Responsive Design */
@media (max-width: 1024px) {
    .brands-section .section-title {
        font-size: 2.2rem;
    }

    .brands-scroll {
        gap: 30px;
        flex-wrap: wrap;
    }

    .brand-item {
        min-width: 160px;
        height: 90px;
        padding: 15px;
    }

    .brands-stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .brands-section {
        padding: 80px 0;
    }

    .brands-section .section-title {
        font-size: 1.9rem;
    }

    .brands-section .section-subtitle {
        font-size: 1rem;
    }

    .brands-container {
        padding: 30px 15px;
    }

    .brands-scroll {
        gap: 25px;
        flex-wrap: wrap;
    }

    .brand-item {
        min-width: 140px;
        height: 80px;
        padding: 12px;
    }

    .brand-logo {
        max-width: 120px;
        max-height: 50px;
    }

    .brand-placeholder i {
        font-size: 1.5rem;
    }

    .brand-placeholder span {
        font-size: 0.9rem;
    }

    .brands-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .stat-item {
        min-width: 120px;
        padding: 25px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .brands-section {
        padding: 60px 0;
    }

    .brands-section .section-title {
        font-size: 1.7rem;
    }

    .brands-container {
        padding: 25px 10px;
    }

    .brands-scroll {
        gap: 20px;
        flex-direction: column;
    }

    .brand-item {
        min-width: 120px;
        height: 70px;
        padding: 10px;
    }

    .brand-logo {
        max-width: 100px;
        max-height: 40px;
    }

    .brand-placeholder i {
        font-size: 1.3rem;
    }

    .brand-placeholder span {
        font-size: 0.8rem;
    }

    .stat-item {
        min-width: 100px;
        padding: 20px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

/* Clients Section */
.clients-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(184, 134, 11, 0.04) 0%, transparent 60%);
    z-index: 0;
}

.clients-section .section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.clients-section .section-badge {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-medium);
    animation: pulse 3s ease-in-out infinite;
}

.clients-section .section-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.clients-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.clients-container {
    position: relative;
    z-index: 1;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.client-item {
    position: relative;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
    aspect-ratio: 1;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.client-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.client-item:hover::before {
    opacity: 0.1;
}

.client-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(184, 134, 11, 0.15);
    border-color: var(--primary-color);
}

.client-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: var(--transition);
    filter: grayscale(20%) brightness(0.9);
    position: relative;
    z-index: 2;
}

.client-item:hover .client-logo {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.client-logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-color);
    color: var(--primary-color);
    font-size: 48px;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.client-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 25px 20px 20px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
}

.client-item:hover .client-overlay {
    transform: translateY(0);
}

.client-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--white);
    line-height: 1.3;
}

.client-location {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0;
    color: var(--primary-light);
    font-weight: 500;
}

.clients-cta {
    text-align: center;
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.clients-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    animation: slideInFromLeft 2s ease-out;
}

.cta-text {
    font-size: 1.3rem;
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

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

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-buttons .btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.clients-cta .btn-primary {
    animation: fadeInUp 1s ease-out 0.7s both;
    position: relative;
    overflow: hidden;
}

.clients-cta .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
}

.clients-cta .btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Stagger animation for client items */
.client-item:nth-child(1) { animation: zoomIn 0.6s ease-out 0.1s both; }
.client-item:nth-child(2) { animation: zoomIn 0.6s ease-out 0.15s both; }
.client-item:nth-child(3) { animation: zoomIn 0.6s ease-out 0.2s both; }
.client-item:nth-child(4) { animation: zoomIn 0.6s ease-out 0.25s both; }
.client-item:nth-child(5) { animation: zoomIn 0.6s ease-out 0.3s both; }
.client-item:nth-child(6) { animation: zoomIn 0.6s ease-out 0.35s both; }
.client-item:nth-child(7) { animation: zoomIn 0.6s ease-out 0.4s both; }
.client-item:nth-child(8) { animation: zoomIn 0.6s ease-out 0.45s both; }
.client-item:nth-child(9) { animation: zoomIn 0.6s ease-out 0.5s both; }
.client-item:nth-child(10) { animation: zoomIn 0.6s ease-out 0.55s both; }
.client-item:nth-child(11) { animation: zoomIn 0.6s ease-out 0.6s both; }
.client-item:nth-child(12) { animation: zoomIn 0.6s ease-out 0.65s both; }

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.3) translateY(50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .clients-section .section-title {
        font-size: 2.3rem;
    }

    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 25px;
    }

    .client-logo {
        padding: 15px;
    }

    .clients-cta {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .clients-section {
        padding: 80px 0;
    }

    .clients-section .section-title {
        font-size: 2rem;
    }

    .clients-section .section-subtitle {
        font-size: 1rem;
    }

    .clients-section .section-header {
        margin-bottom: 60px;
    }

    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-bottom: 60px;
    }

    .client-logo {
        padding: 12px;
    }

    .client-overlay {
        padding: 20px 15px 15px;
    }

    .client-name {
        font-size: 0.9rem;
    }

    .client-location {
        font-size: 0.75rem;
    }

    .clients-cta {
        padding: 35px 25px;
    }

    .cta-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .clients-section {
        padding: 60px 0;
    }

    .clients-section .section-title {
        font-size: 1.8rem;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .client-logo {
        padding: 10px;
    }

    .client-overlay {
        padding: 15px 12px 12px;
    }

    .client-name {
        font-size: 0.8rem;
    }

    .client-location {
        font-size: 0.7rem;
    }

    .clients-cta {
        padding: 30px 20px;
    }

    .cta-text {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-color) 0%, transparent 50%, var(--light-color) 100%);
    z-index: 0;
}

.contact-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.contact-section .section-badge {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-medium);
    animation: pulse 3s ease-in-out infinite;
}

.contact-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.contact-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-right {
    display: flex;
    flex-direction: column;
}

.contact-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-large);
    animation: slideInFromLeft 1s ease-out;
}

.mission-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.contact-image:hover .mission-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gold-gradient);
    color: var(--white);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.image-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.image-overlay p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

.contact-info {
    animation: slideInFromRight 1s ease-out;
}

.company-brief {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    border-right: 4px solid var(--primary-color);
}

.company-brief h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.company-brief p {
    color: var(--secondary-color);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-light);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-medium);
}

.contact-text {
    flex: 1;
}

.contact-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.contact-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: block;
    margin-bottom: 8px;
}

.contact-text a.phone-ltr {
    direction: ltr;
    text-align: right;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.5px;
}

.contact-text a:hover {
    color: var(--primary-dark);
    transform: translateX(3px);
}

.contact-text p {
    color: var(--secondary-color);
    margin: 0;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-left {
        gap: 30px;
    }

    .contact-section .section-title {
        font-size: 2.2rem;
    }

    .mission-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 80px 0;
    }

    .contact-section .section-title {
        font-size: 2rem;
    }

    .contact-section .section-subtitle {
        font-size: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-image {
        order: -1;
    }

    .mission-image {
        height: 300px;
    }

    .company-brief {
        padding: 25px;
    }

    .contact-section .contact-info {
        display: block;
    }

    .contact-details {
        gap: 20px;
    }

    .contact-item {
        padding: 18px;
        gap: 15px;
        flex-direction: row;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .contact-text h4 {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .contact-text a {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-section .section-title {
        font-size: 1.8rem;
    }

    .contact-content {
        gap: 40px;
    }

    .mission-image {
        height: 250px;
    }

    .image-overlay {
        padding: 20px;
    }

    .image-overlay h3 {
        font-size: 1.3rem;
    }

    .image-overlay p {
        font-size: 0.9rem;
    }

    .company-brief {
        padding: 20px;
    }

    .company-brief h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .company-brief p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .contact-section .contact-info {
        display: block;
        width: 100%;
    }

    .contact-details {
        gap: 15px;
    }

    .contact-item {
        padding: 15px;
        gap: 12px;
        flex-direction: row;
        text-align: right;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .contact-text {
        flex: 1;
    }

    .contact-text h4 {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .contact-text a {
        font-size: 0.9rem;
    }
}

/* Footer Styles */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 80px 0 0;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-color) 0%, #0f172a  50%, var(--dark-color) 100%);
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h4.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-section h4.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

/* Company Info Section */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
}

.footer-logo h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-light);
    margin: 0;
}

.footer-description {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--gold-gradient);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.footer-links a::before {
    content: '◀';
    color: var(--primary-color);
    font-size: 0.7rem;
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover::before {
    opacity: 1;
}

/* Contact Details */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.contact-detail i {
    color: var(--primary-light);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-detail a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin-bottom: 3px;
}

.contact-detail a:hover {
    color: var(--primary-light);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(203, 213, 225, 0.2);
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-light);
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-bottom: 50px;
    }

    .footer {
        padding: 60px 0 0;
        margin-top: 80px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 0;
        margin-top: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-logo {
        justify-content: center;
        text-align: center;
    }

    .footer-logo h3 {
        font-size: 1.2rem;
    }

    .footer-description {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-section h4.footer-title::after {
        right: 50%;
        transform: translateX(50%);
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 0;
        margin-top: 50px;
    }

    .footer-content {
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-logo {
        flex-direction: column;
        gap: 10px;
    }

    .footer-logo-img {
        width: 40px;
        height: 40px;
    }

    .footer-social {
        gap: 12px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .contact-detail {
        gap: 10px;
        font-size: 0.9rem;
    }

    .footer-bottom-links {
        gap: 15px;
    }

    .footer-bottom-links a {
        font-size: 0.85rem;
    }
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-large);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(184, 134, 11, 0.3);
}

.scroll-top-btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-medium);
}

.scroll-top-btn i {
    transition: transform 0.2s ease;
}

.scroll-top-btn:hover i {
    transform: translateY(-2px);
}

/* Responsive Design for Scroll Button */
@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .scroll-top-btn {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Page Header Styles */
.page-header {
    background: var(--gold-gradient);
    padding: 80px 0 60px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}


.page-header-content {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    opacity: 0.6;
}

/* Brands Listing Styles */
.brands-listing {
    padding: 100px 0;
    background: var(--white);
}

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

.brand-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
    border-color: var(--primary-light);
}

.brand-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.brand-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-color);
    position: relative;
    overflow: hidden;
}

.brand-logo {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    transition: var(--transition);
    filter: grayscale(100%) opacity(0.8);
}

.brand-card:hover .brand-logo {
    transform: scale(1.1);
    filter: grayscale(0%) opacity(1);
}

.brand-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    opacity: 0.6;
}

.brand-placeholder i {
    font-size: 3rem;
}

.brand-info {
    padding: 25px;
}

.brand-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.brand-brief {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.view-details {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.brand-card:hover .view-details {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* Brand Details Styles */
.brand-details {
    padding: 80px 0;
    background: var(--white);
}

.brand-details-content {
    max-width: 1000px;
    margin: 0 auto;
}

.brand-main-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: start;
}

.brand-logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-color);
    border-radius: 15px;
    padding: 40px;
    min-height: 300px;
}

.brand-main-logo {
    max-width: 100%;
    max-height: 250px;
    object-fit: contain;
}

.brand-logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--secondary-color);
    opacity: 0.6;
}

.brand-logo-placeholder i {
    font-size: 4rem;
}

.brand-info-section {
    padding: 20px 0;
}

.brand-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 30px;
}

.brand-description {
    margin-bottom: 30px;
}

.brand-description h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.brand-description p {
    color: var(--secondary-color);
    line-height: 1.7;
    font-size: 1rem;
}

.brand-downloads {
    margin-bottom: 30px;
}

.brand-downloads h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold-gradient);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

.brand-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.brand-gallery {
    margin-top: 60px;
}

.brand-gallery h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 30px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Error and No Data Messages */
.error-message,
.no-brands {
    text-align: center;
    padding: 60px 20px;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .brands-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .brand-main-info {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .brand-title {
        font-size: 2rem;
    }

    .brand-actions {
        flex-direction: column;
    }

    .brand-actions .btn-primary,
    .brand-actions .btn-secondary {
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 60px 0 40px;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .brand-image {
        height: 150px;
    }

    .brand-info {
        padding: 20px;
    }

    .brand-logo-section {
        padding: 30px;
        min-height: 200px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Print styles */
@media print {
    .header {
        position: static;
        box-shadow: none;
    }

    .mobile-toggle,
    .mobile-overlay {
        display: none;
    }
}


/* Phone Number LTR Formatting */
.phone-ltr {
    direction: ltr;
    unicode-bidi: embed;
    display: inline-block;
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.5px;
}

.phone-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.phone-links .phone-ltr {
    display: block;
}
