/* ============================================
   ROYAL TOUCH - Modern Luxury Design
   Color Palette: Gold (#d4af37) & Black (#1a1a1a)
   Typography: Playfair Display (Headers) & Lato (Body)
   ============================================ */

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



body {
    font-family: 'Tajawal';
    color: #1a1a1a;
    background-color: #ffffff;
    line-height: 1.6;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Tajawal', serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.25rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.875rem;
    line-height: 1.4;
}

h4 {
    font-size: 1.25rem;
}

p {
    color: #555555;
    line-height: 1.6;
}

a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #c9a961;
}

/* ============================================
   UTILITIES
   ============================================ */

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

.text-gold {
    color: #d4af37;
}

.text-light {
    color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header p {
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto 1.5rem;
}

.header-line {
    width: 4rem;
    height: 0.25rem;
    background: linear-gradient(to right, transparent, #d4af37, transparent);
    margin: 1.5rem auto 0;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.btn-primary {
    background-color: #d4af37;
    color: #1a1a1a;
}

.btn-primary:hover {
    background-color: #c9a961;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    border: 2px solid #d4af37;
    color: #d4af37;
    background-color: transparent;
}

.btn-outline:hover {
    background-color: #fef3e2;
}

.btn-full {
    width: 100%;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: sticky;
    top: 0;
    z-index: 9999;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.logo-image {
    height: 7.5rem;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #d4af37, #c9a961);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.125rem;
}

.logo-text {
    display: none;
}

.logo-text h1 {
    font-size: 1.25rem;
    margin: 0;
    line-height: 1;
}

.logo-text p {
    font-size: 0.75rem;
    margin: 0;
    color: #666666;
}

@media (min-width: 640px) {
    .logo-text {
        display: block;
    }
}

.navbar-menu {
    display: none;
    list-style: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .navbar-menu {
        display: flex;
    }
}

.nav-link {
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #d4af37;
}

.nav-link.contact-btn {
    padding: 0.5rem 1.5rem;
    background-color: #d4af37;
    color: #1a1a1a;
    border-radius: 0.375rem;
}

.nav-link.contact-btn:hover {
    background-color: #c9a961;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 1.5rem;
    height: 0.25rem;
    background-color: #1a1a1a;
    border-radius: 0.125rem;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0.5rem, -0.5rem);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.navbar-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem;
    gap: 0.5rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 50%, #ffffff 100%);
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background-color: #fef3e2;
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(3rem);
    transform: translate(-50%, -50%);
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background-color: #fef3e2;
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(3rem);
    transform: translate(50%, 50%);
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        padding: 8rem 0;
    }
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: right;
    margin-right: 1.5rem;
    
}

.hero-badge {
    display: inline-block;
    color: #d4af37;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    width: fit-content;
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: #666666;
    max-width: 28rem;
    margin-left: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    display: none;
}

@media (min-width: 768px) {
    .hero-image {
        display: block;
    }
}

.hero-card {
    background-color: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.hero-card-icon {
    font-size: 3rem;
}

.hero-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
}

.hero-card-subtitle {
    font-size: 0.875rem;
    color: #666666;
}

.hero-floating-card {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.15);
    border-top: 2px solid #d4af37;
    max-width: 15rem;
}

.floating-card-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.floating-card-subtitle {
    font-size: 0.75rem;
    color: #666666;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #d4af37;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.875rem;
    font-weight: 500;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(0.5rem);
    }
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */

.products {
    padding: 5rem 0;
    background-color: #ffffff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.product-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-top: 2px solid #d4af37;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    transform: translateY(-1.25rem);
}

.product-image {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-content {
    padding: 1.5rem;
}

.product-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.product-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #fef3e2;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
}

.product-description {
    font-size: 0.875rem;
    color: #666666;
    margin-bottom: 1rem;
}

.product-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #555555;
}

.product-item::before {
    content: '';
    width: 0.375rem;
    height: 0.375rem;
    background-color: #d4af37;
    border-radius: 50%;
    flex-shrink: 0;
}

.product-btn {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #d4af37;
    color: #d4af37;
    background-color: transparent;
    border-radius: 0.375rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.product-btn:hover {
    background-color: #fef3e2;
}

/* Additional Products */

.additional-products {
    background: linear-gradient(135deg, #fef3e2 0%, #fffbf0 100%);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 4rem;
}

.additional-products h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 1.5rem;
}

.additional-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.additional-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.additional-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.additional-card h4 {
    color: #1a1a1a;
}

/* Distributors */

.distributors {
    border-top: 1px solid #e0e0e0;
    padding-top: 3rem;
}

.distributors h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.distributors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 2rem;
}

.distributor-card {
    background-color: #f9f9f9;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.distributor-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.distributor-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.distributor-card h4 {
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.distributor-card p {
    font-size: 0.875rem;
    color: #666666;
}

/* ============================================
   BRANCHES SECTION
   ============================================ */

.branches {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
    gap: 2rem;
}

.branch-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-top: 2px solid #d4af37;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.branch-card:hover {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    transform: translateY(-1.25rem);
}

.branch-card.featured {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .branch-card.featured {
        grid-column: span 1;
        grid-row: span 2;
    }
}

.branch-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
    color: #ffffff;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.branch-card.featured .branch-header {
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
}

.branch-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.branch-header-text h3 {
    color: #ffffff;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.branch-header-text p {
    color: #fef3e2;
    font-size: 0.875rem;
}

.branch-content {
    padding: 1.5rem;
}

.branch-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.branch-item-icon {
    font-size: 1.125rem;
    color: #d4af37;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.branch-item-text h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.branch-item-text p {
    font-size: 0.875rem;
    color: #666666;
}

.branch-item-text a {
    color: #d4af37;
    font-weight: 500;
}

.branch-btn {
    width: 100%;
    padding: 0.5rem;
    background-color: #d4af37;
    color: #1a1a1a;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.branch-btn:hover {
    background-color: #c9a961;
}

/* ============================================
   MANAGEMENT SECTION
   ============================================ */

/* MANAGEMENT SECTION */

.management {
    padding: 5rem 0;
    background-color: #ffffff;
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
    gap: 2rem;
    max-width: 56rem;
    margin: 0 auto 4rem;
}

.member-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-top: 2px solid #d4af37;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.member-card:hover {
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    transform: translateY(-1.25rem);
}

.member-image-container {
    position: relative;
    height: 16rem;
    overflow: hidden;
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
}

.member-image-container.blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.member-image-container.purple {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
}

.member-image-container.gold {
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
}

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

.member-card:hover .member-image {
    transform: scale(1.05);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
}

.member-content {
    padding: 1.5rem;
    text-align: center;
}

.member-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.member-position {
    font-size: 0.875rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 1rem;
}

.member-description {
    font-size: 0.75rem;
    color: #666666;
    line-height: 1.6;
}


/* Company Info */

.company-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    border-top: 1px solid #e0e0e0;
    padding-top: 4rem;
}

@media (min-width: 768px) {
    .company-info {
        grid-template-columns: 1fr 1fr;
    }
}

.info-text h3 {
    margin-bottom: 1rem;
}

.info-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.info-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-card {
    background-color: #f9f9f9;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
}

.stat-1 {
    background: linear-gradient(135deg, #fef3e2 0%, #fffbf0 100%);
}

.stat-2 {
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
}

.stat-3 {
    background: linear-gradient(135deg, #f3e8ff 0%, #faf5ff 100%);
}

.stat-4 {
    background: linear-gradient(135deg, #dcfce7 0%, #f0fdf4 100%);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-weight: 600;
    color: #1a1a1a;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info h3 {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: #1a1a1a;
}

.info-item a {
    color: #d4af37;
    font-weight: 500;
}

.info-item p {
    font-size: 0.875rem;
    color: #666666;
    margin-top: 0.25rem;
}

.social-media {
    border-top: 1px solid #e0e0e0;
    padding-top: 2rem;
    margin-top: 2rem;
}

.social-media h4 {
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #f0f0f0;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #fef3e2;
    color: #d4af37;
}

/* Contact Form */

.contact-form {
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-top: 2px solid #d4af37;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.375rem;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 0.375rem;
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #ffffff;
    color: #1a1a1a;
}

.form-group select:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact-form h3 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.form-subtitle {
    font-size: 0.875rem;
    color: #666666;
    margin-bottom: 1.5rem;
}

/* ============================================
   FEATURED BRANCH SECTION
   ============================================ */

.branches-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.featured-branch-section {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.featured-branch-card {
    background: linear-gradient(135deg, #ffffff 0%, #fef3e2 100%);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
    border: 2px solid #d4af37;
    max-width: 500px;
    width: 100%;
    transition: all 0.3s ease;
}

.featured-branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.3);
}

.featured-branch-header {
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
    color: #ffffff;
    padding: 2rem;
    text-align: center;
    border-bottom: 3px solid #c9a961;
}

.featured-branch-header .branch-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
    display: block;
}

.featured-branch-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.featured-branch-header p {
    font-size: 1rem;
    color: #fef3e2;
}

.featured-branch-content {
    padding: 2rem;
}

.featured-branch-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.featured-branch-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.featured-branch-item-icon {
    font-size: 1.5rem;
    color: #d4af37;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fef3e2;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.featured-branch-item-text h4 {
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.featured-branch-item-text p {
    font-size: 0.875rem;
    color: #666666;
}

.featured-branch-item-text a {
    color: #d4af37;
    font-weight: 600;
    text-decoration: none;
}

.featured-branch-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #d4af37 0%, #c9a961 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.featured-branch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Other Branches Grid */

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .branches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Icon Styles */

i.fas,
i.fab {
    margin-left: 0.5rem;
}

.product-icon,
.additional-icon,
.distributor-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.branch-icon,
.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Enhanced Button Styles */

.btn i {
    margin-left: 0.5rem;
}

.nav-link i,
.contact-btn i {
    margin-left: 0.5rem;
}

.footer-section i {
    margin-left: 0.5rem;
    color: #d4af37;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section p {
    color: #999999;
    font-size: 0.875rem;
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #999999;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d4af37;
}

.footer-section ul li {
    color: #999999;
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #999999;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.footer-links a {
    color: #999999;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

    .hero-buttons {
        justify-content: flex-start;
    }

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

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

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

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

    .footer-bottom {
        flex-direction: column;
    }
}
