/* ====== START: GLOBAL STYLES ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-blue: #1e3a8a;
    --accent-orange: #ea580c;
    --dark-bg: #0f172a;
    --light-bg: #ffffff;
    --gold-accent: #f59e0b;
    --text-dark: #1e293b;
    --text-light: #ffffff;
    --footer-bg: #0a1429;
}

body {
    background-color: #f8fafc;
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}
/* ====== END: GLOBAL STYLES ====== */

/* ====== START: HEADER STYLES ====== */
.split-header-container {
    background: var(--light-bg);
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

/* TOP HEADER SECTION */
.header-top {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1e293b 100%);
    color: var(--text-light);
    padding: 15px 0;
    position: relative;
    overflow: hidden;
}

.header-top::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent-orange));
    opacity: 0.1;
    transform: skewX(-15deg);
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-split {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-orange), #dc2626);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}

.brand-text-split h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #ffffff, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-text-split .tagline {
    color: var(--gold-accent);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.top-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-info-split {
    display: flex;
    gap: 25px;
}

.contact-info-split span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.contact-info-split i {
    color: var(--gold-accent);
}

.social-links-split {
    display: flex;
    gap: 12px;
}

.social-links-split a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links-split a:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
}

/* BOTTOM HEADER SECTION */
.header-bottom {
    background: var(--light-bg);
    padding: 20px 0;
    border-bottom: 3px solid var(--accent-orange);
}

.bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* MAIN NAVIGATION */
.main-nav-split {
    display: flex;
    gap: 35px;
    position: relative;
}

.nav-item-split {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    padding: 12px 0;
    position: relative;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.nav-item-split::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange), var(--primary-blue));
    transition: width 0.3s;
}

.nav-item-split:hover {
    color: var(--primary-blue);
}

.nav-item-split:hover::before {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 8px;
    overflow: hidden;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    color: var(--text-dark);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
    border-bottom: 1px solid #f1f1f1;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
    color: var(--primary-blue);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* HEADER ACTIONS */
.header-actions-split {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cta-button-split {
    background: linear-gradient(135deg, var(--primary-blue), #3730a3);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.cta-button-split:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(30, 58, 138, 0.4);
}

.cta-button-split.accent {
    background: linear-gradient(135deg, var(--accent-orange), #dc2626);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.cta-button-split.accent:hover {
    box-shadow: 0 6px 15px rgba(234, 88, 12, 0.4);
}

/* MOBILE HEADER */
.mobile-header {
    display: none;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1e293b 100%);
    padding: 15px 0;
    position: relative;
}

.mobile-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-orange), #dc2626);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.3rem;
}

.mobile-logo-text h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2px;
    background: linear-gradient(135deg, #ffffff, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mobile-logo-text .tagline {
    color: var(--gold-accent);
    font-size: 0.7rem;
    font-weight: 600;
}

.mobile-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
}

.mobile-contact i {
    color: var(--gold-accent);
}

.mobile-menu-toggle {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

.mobile-nav {
    display: none;
    background: white;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-item {
    display: block;
    padding: 12px 0;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #f1f1f1;
    position: relative;
}

.mobile-nav-item:last-child {
    border-bottom: none;
}

.mobile-nav-item i {
    margin-left: 10px;
    font-size: 0.8rem;
}

.mobile-dropdown-content {
    display: none;
    padding-left: 15px;
    margin-top: 10px;
}

.mobile-dropdown-content.active {
    display: block;
}

.mobile-dropdown-content a {
    display: block;
    padding: 10px 0;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid #f1f1f1;
}

.mobile-dropdown-content a:last-child {
    border-bottom: none;
}

.mobile-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.mobile-cta-button {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-blue), #3730a3);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-size: 0.9rem;
}

.mobile-cta-button.accent {
    background: linear-gradient(135deg, var(--accent-orange), #dc2626);
}
/* ====== END: HEADER STYLES ====== */

/* ====== START: HERO SECTION STYLES ====== */
.hero-section-split {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.95)), url('https://images.unsplash.com/photo-1621905252507-b35492cc74b4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    padding: 100px 0;
    text-align: center;
}

.hero-content-split {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content-split h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content-split h2 .accent {
    color: var(--accent-orange);
}

.hero-content-split p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #cbd5e1;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--accent-orange), #dc2626);
    color: white;
    border: none;
    padding: 16px 35px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
    font-size: 1.1rem;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(234, 88, 12, 0.5);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 16px 35px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--dark-bg);
    transform: translateY(-3px);
}
/* ====== END: HERO SECTION STYLES ====== */

/* ====== START: ABOUT SECTION STYLES ====== */
.about-section {
    padding: 80px 0;
    background: white;
}

.content-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

/* Left Side - Photo Section */
.photo-container {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.rounded-photo {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #207cca 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.call-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(30, 64, 175, 0.85);
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    z-index: 10;
}

.phone-icon {
    background: white;
    color: var(--primary-blue);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.phone-text {
    display: flex;
    flex-direction: column;
}

.call-us {
    font-size: 12px;
    opacity: 0.9;
}

.phone-number {
    font-size: 16px;
    font-weight: bold;
}

/* Right Side - Content Section */
.content-container {
    flex: 1;
    min-width: 300px;
    padding: 20px 0;
}

.headline {
    color: var(--primary-blue);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.description {
    color: #6b7280;
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.divider {
    height: 2px;
    background: #e5e7eb;
    margin: 25px 0;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-column {
    flex: 1;
    min-width: 200px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.check-icon {
    background: var(--primary-blue);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 12px;
}

.read-more-btn {
    background: var(--gold-accent);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.read-more-btn:hover {
    background: #e6900b;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(245, 158, 11, 0.4);
}

/* Statistics Strip */
.stats-strip {
    background: linear-gradient(135deg, var(--primary-blue), #3b82f6);
    color: white;
    padding: 50px 0;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.stats-strip::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 15px;
    flex: 1;
    min-width: 200px;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--gold-accent);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-caption {
    font-size: 1rem;
    opacity: 0.9;
}
/* ====== END: ABOUT SECTION STYLES ====== */

/* ====== START: PRODUCTS SECTION STYLES ====== */
.products-section {
    padding: 80px 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 2px solid #e9ecef;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.product-image-container {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-icon-circle {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.product-card:hover .product-icon-circle {
    transform: translateY(0);
}

.product-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.product-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.product-description {
    color: #7f8c8d;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.inquire-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
    color: white;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-blue);
    margin-top: 10px;
    width: 100%;
    max-width: 180px;
}

.inquire-btn:hover {
    background: transparent;
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.inquire-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.inquire-btn:hover i {
    transform: translateX(5px);
}
/* ====== END: PRODUCTS SECTION STYLES ====== */

/* ====== START: SERVICES GALLERY STYLES ====== */
.services-gallery {
    padding: 80px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-description {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Background Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(52, 152, 219, 0.05);
    animation: float 15s infinite linear;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 5%;
    animation-delay: -5s;
}

.floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 10%;
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}
/* ====== END: SERVICES GALLERY STYLES ====== */

/* ====== START: FOOTER STYLES ====== */
.premium-footer {
    background: linear-gradient(135deg, var(--footer-bg) 0%, var(--dark-bg) 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(234, 88, 12, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(30, 58, 138, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-top {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

/* COMPANY INFO */
.footer-company {
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-orange), #dc2626);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.3rem;
}

.footer-logo-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #ffffff, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo-text .tagline {
    color: var(--gold-accent);
    font-size: 0.9rem;
    font-weight: 600;
}

.company-description {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cbd5e1;
}

.contact-item i {
    color: var(--gold-accent);
    width: 20px;
}

/* QUICK LINKS */
.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--gold-accent);
    transform: translateX(5px);
}

.footer-links a::before {
    content: '▸';
    color: var(--accent-orange);
    font-size: 0.8rem;
}

/* BRANDS SECTION */
.brands-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.brand-tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.brand-tag:hover {
    background: rgba(234, 88, 12, 0.2);
    border-color: var(--accent-orange);
    color: var(--gold-accent);
}

/* NEWSLETTER */
.newsletter-text {
    color: #cbd5e1;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 0.9rem;
}

.newsletter-input::placeholder {
    color: #94a3b8;
}

.newsletter-btn {
    background: linear-gradient(135deg, var(--accent-orange), #dc2626);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.4);
}

.social-links-footer {
    display: flex;
    gap: 12px;
}

.social-link-footer {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link-footer:hover {
    background: var(--accent-orange);
    color: white;
    transform: translateY(-3px);
}

/* FOOTER BOTTOM */
.footer-bottom {
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--gold-accent);
}
/* ====== END: FOOTER STYLES ====== */

/* ====== START: RESPONSIVE DESIGN ====== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .main-nav-split {
        gap: 25px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* Hide desktop header on mobile */
    .split-header-container {
        display: none;
    }
    
    /* Show mobile header */
    .mobile-header {
        display: block;
    }
    
    .hero-content-split h2 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary, .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .brands-mini {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .headline {
        font-size: 2rem;
    }
    
    .content-section {
        flex-direction: column;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .product-image-container {
        height: 240px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) {
    /* Hide mobile header on desktop */
    .mobile-header {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-content-split h2 {
        font-size: 1.8rem;
    }
    
    .brands-mini {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .product-content {
        padding: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 200px;
    }
}
/* ====== END: RESPONSIVE DESIGN ====== */


/* ====== START: STICKY HEADER STYLES ====== */
/* Desktop - सिर्फ Top Header sticky */
.header-top.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    animation: slideDown 0.3s ease;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

/* Mobile - पूरा header sticky */
.mobile-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    animation: slideDown 0.3s ease;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Main content ko adjust करें जब header sticky हो */
.sticky-header-active .main-content {
    margin-top: 90px; /* Desktop top header height के according */
}

@media (max-width: 768px) {
    .sticky-header-active .main-content {
        margin-top: 70px; /* Mobile header height के according */
    }
}
/* ====== END: STICKY HEADER STYLES ====== */



/* About Banner Section */
.about-banner {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.banner-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.banner-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}


/* ====== MOBILE RESPONSIVE FIXES ====== */
@media (max-width: 768px) {
    /* About Banner Fix */
    .about-banner {
        padding: 60px 0;
    }
    
    .banner-content h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .banner-content p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    /* Header Title Fix for Mobile */
    .mobile-logo-text h2 {
        font-size: 1.1rem;
        line-height: 1.2;
    }
    
    .mobile-logo-text .tagline {
        font-size: 0.6rem;
        margin-top: 1px;
    }
    
    .mobile-logo-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    /* Mobile Menu Fix */
    .mobile-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    /* Content Section Mobile Layout */
    .content-section {
        flex-direction: column;
        gap: 30px;
    }
    
    .photo-container, .content-container {
        min-width: 100%;
    }
    
    .rounded-photo {
        height: 300px;
    }
    
    .headline {
        font-size: 1.8rem;
        text-align: center;
    }
    
    /* Statistics Mobile Layout */
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        min-width: 140px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Products Grid Mobile */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-image-container {
        height: 200px;
    }
    
    /* Gallery Mobile Layout */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gallery-item {
        height: 180px;
    }
    
    /* Footer Mobile Layout */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .about-banner {
        padding: 50px 0;
    }
    
    .banner-content h1 {
        font-size: 1.8rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-header-top {
        padding: 0 10px;
    }
    
    .mobile-contact span {
        font-size: 0.9rem;
    }
}


/* Contact Section Styles */
.contact-details-sidebar {
    margin-top: 20px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2c5aa0;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #2c5aa0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
}

.contact-value {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

/* Contact Form Styles */
.contact-form {
    margin-top: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
}

.form-group.full-width {
    flex: 0 0 100%;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}



/* Product Specifications Table Styles */
.specifications-table {
    margin: 20px 0;
}

.specifications-table h3 {
    color: #2c5aa0;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.specifications-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.specifications-table th {
    background: #2c5aa0;
    color: white;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
}

.specifications-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
}

.specifications-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.specifications-table tr:hover {
    background-color: #f0f7ff;
}

.product-features {
    margin: 20px 0;
}