/* Global Refinements */
html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-light);
}

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    color: white;
    padding: 10px 0;
    font-size: 0.85rem;
}

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

.top-bar-left {
    display: flex;
    gap: 25px;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

.top-bar-left i {
    width: 14px;
    height: 14px;
}

.top-bar-right {
    display: flex;
    gap: 15px;
}

.top-bar-right a {
    color: white;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.top-bar-right a:hover {
    opacity: 1;
    transform: scale(1.1);
}

.top-bar-right i {
    width: 16px;
    height: 16px;
}

/* =============================================
   NAVBAR - REDESIGNED
   ============================================= */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition-normal);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--color-primary);
    font-family: var(--font-heading);
    line-height: 1.1;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Nav Links */
.nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-links>li>a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 18px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    position: relative;
}

.nav-links>li>a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-links>li>a:hover::after,
.nav-links>li>a.active::after {
    transform: scaleX(1);
}

.nav-links>li>a:hover {
    color: var(--color-primary);
    background: rgba(0, 90, 52, 0.05);
}

/* Nav CTA Button */
.nav-cta {
    background: linear-gradient(135deg, var(--color-primary), #007a4c) !important;
    color: white !important;
    padding: 12px 24px !important;
    border-radius: var(--radius-full) !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(0, 90, 52, 0.3);
    transition: all 0.3s ease !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #004426, var(--color-primary)) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 90, 52, 0.4);
}

.nav-cta i {
    width: 16px;
    height: 16px;
}

/* Dropdown Styles - Enhanced */
.dropdown {
    position: relative;
}

.dropdown-trigger {
    cursor: pointer;
}

.dropdown-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Fix: Invisible bridge to prevent menu closing when moving mouse from trigger to menu */
.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
    /* Covers the gap + buffer */
    background: transparent;
    z-index: 10;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-radius: var(--radius-lg);
    z-index: 2000;
    /* Ensure it's above hero content */
    padding: 12px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-bottom-color: white;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
    background: linear-gradient(135deg, rgba(0, 90, 52, 0.08), rgba(0, 77, 153, 0.08));
    transform: translateX(5px);
}

.dropdown-menu li a i {
    width: 24px;
    height: 24px;
    padding: 8px;
    background: var(--color-primary);
    color: white;
    border-radius: var(--radius-sm);
}

.dropdown-menu li a div {
    display: flex;
    flex-direction: column;
}

.dropdown-menu li a strong {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.dropdown-menu li a span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Hamburger Menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.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);
}

/* =============================================
   HERO SECTION - REDESIGNED
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
    padding: 120px 0 60px;
}

.hero-redesigned {
    text-align: left;
}

/* Hero Background Slideshow */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slideshow .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(0);
    transform: scale(1.05);
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s ease;
}

.hero-slideshow .slide.active {
    opacity: 1;
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 47, 94, 0.8) 0%, rgba(0, 90, 52, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
}

.hero-text {
    max-width: 700px;
    margin-bottom: 50px;
}

.hero-title {
    font-size: 3.8rem;
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    font-weight: 800;
}

.text-accent {
    color: var(--color-accent);
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin: 0;
    text-align: left;
}

/* Hero Service Cards - Image Based */
/* Hero Service Cards - Redesigned (Glassmorphism) */
.hero-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hero-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 320px;
    padding: 30px;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Background Image Layer */
.hero-service-card .card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 0;
}

/* Base Gradient Overlay */
.hero-service-card .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.2) 40%,
            rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
    transition: opacity 0.5s ease;
}

/* Glass Effect Content Container */
/* Note: Since we can't easily wrap the content without changing HTML significantly, 
   we'll use a pseudo-element on the card itself or style the components to float. 
   Here we create a 'glass' effect that slides up or appears on hover */

.hero-service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

.hero-service-card:hover .card-bg {
    transform: scale(1.15);
}

.hero-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Icon Styling */
.hero-service-card .card-icon {
    position: relative;
    width: 60px;
    height: 60px;
    margin-bottom: auto;
    /* Pushes icon to top */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-service-card .card-icon i {
    font-size: 1.8rem;
    color: white;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-service-card:hover .card-icon {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.hero-service-card:hover .card-icon i {
    color: var(--text-dark);
}

/* Text Content */
.hero-service-card .card-info {
    position: relative;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.5s ease;
}

.hero-service-card .card-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-service-card .card-info p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Arrow Interaction */
.hero-service-card .card-arrow {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: scale(0.8);
    opacity: 0;
}

.hero-service-card:hover .card-arrow {
    transform: scale(1);
    opacity: 1;
    background: white;
}

.hero-service-card .card-arrow i {
    font-size: 1.2rem;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.hero-service-card:hover .card-arrow i {
    transform: rotate(-45deg);
    /* Arrow points diagonal up-right contextually implies 'go' */
    color: var(--text-dark);
}

/* Responsive Grid */
@media (max-width: 992px) {
    .hero-services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hero-services {
        grid-template-columns: 1fr;
    }

    .hero-service-card {
        min-height: 260px;
    }

    .hero-service-card .card-arrow {
        opacity: 1;
        transform: scale(1);
        background: rgba(255, 255, 255, 0.15);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: white;
    opacity: 0.7;
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator i {
    width: 20px;
    height: 20px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Hero CTA Group (fallback for other pages) */
.hero-cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.divider {
    color: var(--color-accent);
    margin: 0 10px;
    font-weight: 700;
}

/* =============================================
   SECTIONS
   ============================================= */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.feature-card .icon-box {
    width: 60px;
    height: 60px;
    background: rgba(0, 90, 52, 0.1);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.section-header .header-line {
    width: 60px;
    height: 4px;
    background: var(--color-accent);
    margin: 15px auto 0;
    border-radius: var(--radius-full);
}

/* Verticals Section */
.verticals-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.vertical-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
}

.vertical-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-image-wrapper {
    height: 200px;
    position: relative;
    background: #ccc;
    overflow: hidden;
}

.card-bg-overlay {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.vertical-lightning .card-bg-overlay {
    background-image: url('https://images.unsplash.com/photo-1605727216801-e27ce1d0cc28?q=80&w=800&auto=format&fit=crop');
    background-color: var(--color-primary);
}

.vertical-garments .card-bg-overlay {
    background-image: url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?q=80&w=800&auto=format&fit=crop');
    background-color: #d97706;
}

.vertical-trade .card-bg-overlay {
    background-image: url('../images/pexels-freestocks-122164.jpg');
    background-color: var(--color-secondary);
}

.vertical-card:hover .card-bg-overlay {
    transform: scale(1.1);
}

.card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    box-shadow: var(--shadow-sm);
}

.badge-accent {
    background: var(--color-accent);
    color: var(--text-dark);
}

.badge-primary {
    background: var(--color-primary);
}

.badge-secondary {
    background: var(--color-secondary);
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.hero-line {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    border-left: 3px solid var(--color-accent);
    padding-left: 10px;
}

.card-features {
    margin-bottom: 25px;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #444;
}

.card-features li i {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
}

.card-actions {
    margin-top: auto;
}

.btn-full {
    width: 100%;
}

/* Vertical Card Buttons - Redesigned */
.btn-vertical {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-vertical i:first-child {
    font-size: 1.3rem;
    opacity: 0.9;
}

.btn-vertical span {
    flex: 1;
    text-align: left;
}

.btn-vertical i:last-child {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-vertical:hover i:last-child {
    transform: translateX(5px);
}

.btn-vertical::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-vertical:hover::before {
    opacity: 1;
}

/* Lightning Button */
.btn-lightning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-lightning:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.4);
    transform: translateY(-2px);
}

/* Garments Button */
.btn-garments {
    background: linear-gradient(135deg, #005a34, #003d24);
    box-shadow: 0 4px 15px rgba(0, 90, 52, 0.3);
}

.btn-garments:hover {
    background: linear-gradient(135deg, #007a48, #005a34);
    box-shadow: 0 6px 25px rgba(0, 90, 52, 0.4);
    transform: translateY(-2px);
}

/* Trade Button */
.btn-trade {
    background: linear-gradient(135deg, #002f5e, #001f3d);
    box-shadow: 0 4px 15px rgba(0, 47, 94, 0.3);
}

.btn-trade:hover {
    background: linear-gradient(135deg, #004080, #002f5e);
    box-shadow: 0 6px 25px rgba(0, 47, 94, 0.4);
    transform: translateY(-2px);
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, #f0f4f8 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 50px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-card-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-card-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-card-content p {
    color: var(--text-muted);
    margin: 0;
}

.contact-card-content a {
    color: var(--color-primary);
    transition: color 0.2s ease;
}

.contact-card-content a:hover {
    color: var(--color-secondary);
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 90, 52, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
}

.btn-submit i {
    font-size: 1.1rem;
}

/* =============================================
   FOOTER - REDESIGNED
   ============================================= */

/* Newsletter Section */
.footer-newsletter {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: 50px 0;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.newsletter-text h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 8px;
}

.newsletter-text h3 i {
    width: 28px;
    height: 28px;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex: 1;
    max-width: 450px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: var(--radius-full);
    font-size: 1rem;
    outline: none;
    background: rgba(255, 255, 255, 0.95);
}

.newsletter-form input:focus {
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.4);
}

/* Main Footer */
.footer-main {
    background: var(--bg-dark);
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}

/* Footer Brand */
.footer-brand {
    padding-right: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

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

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo .brand-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    font-family: var(--font-heading);
}

.footer-logo .brand-tagline {
    font-size: 0.75rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-accent);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.social-link i {
    width: 18px;
    height: 18px;
}

/* Footer Columns */
.footer-column h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--color-accent);
    border-radius: var(--radius-full);
}

.footer-column ul li {
    margin-bottom: 14px;
}

.footer-column ul li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.footer-column ul li a:hover {
    color: var(--color-accent);
    transform: translateX(5px);
}

.footer-column ul li a i {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

/* Contact Column */
.footer-contact-col .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.15);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-icon i {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
}

.contact-text span {
    display: block;
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-text p {
    color: white;
    font-size: 0.95rem;
    margin: 0;
}

/* Footer Bottom */
.footer-bottom {
    background: #0a0a0a;
    padding: 20px 0;
}

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

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

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

.footer-bottom-links a {
    color: #666;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

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

/* =============================================
   ANIMATIONS
   ============================================= */
.animate-fade-up {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: span 2;
        padding-right: 0;
        text-align: center;
    }

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

    .footer-description {
        max-width: 500px;
        margin: 0 auto 25px;
    }

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

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-column ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-column ul li a {
        justify-content: center;
    }

    .footer-contact-col .contact-item {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-services {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns for tablet */
        gap: 20px;
    }
}

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

    .hero-services {
        grid-template-columns: 1fr;
        /* 1 column for mobile */
        gap: 15px;
    }

    .hero-service-card {
        min-height: 200px;
        padding: 20px;
    }

    .hero-service-card .card-icon {
        width: 45px;
        height: 45px;
    }

    .hero-service-card .card-icon i {
        font-size: 1.3rem;
    }

    .hero-service-card .card-info h3 {
        font-size: 1.25rem;
    }

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

    .newsletter-form {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 100px 0 40px;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-service-card {
        min-height: 180px;
    }
}

/* Footer Icon Colors */
.footer-social a i.bi-linkedin {
    color: #0077b5;
}

.footer-social a i.bi-twitter-x {
    color: #1da1f2;
}

/* or white/black for X, but keeping blue for now */
.footer-social a i.bi-facebook {
    color: #1877f2;
}

.footer-social a i.bi-instagram {
    color: #e4405f;
}

.footer-social a {
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: white;
    transform: translateY(-3px);
}

@media (max-width: 576px) {

    /* Reset all text alignment to left */
    .footer-brand,
    .footer-column,
    .footer-contact-col {
        text-align: left !important;
    }

    /* Reset flex alignment */
    .footer-logo,
    .footer-social {
        justify-content: flex-start !important;
    }

    .footer-description {
        margin-left: 0;
        text-align: left !important;
    }

    /* Reset heading underline alignment */
    .footer-column h4::after {
        left: 0 !important;
        transform: none !important;
    }

    /* Reset list items alignment */
    .footer-column ul {
        align-items: flex-start !important;
    }

    .footer-column ul li a {
        justify-content: flex-start !important;
    }

    /* Contact Item Alignment */
    .contact-item {
        align-items: flex-start !important;
        text-align: left !important;
        padding: 15px 0;
        /* Remove side padding */
        justify-content: flex-start !important;
    }

    .contact-text span {
        text-transform: none !important;
        font-size: 0.95rem;
        line-height: 1.5;
        display: block;
        margin-bottom: 5px;
        letter-spacing: normal;
    }

    .contact-text p {
        text-align: left;
    }

    .contact-icon {
        margin-top: 3px;
        min-width: 40px;
        margin-right: 15px;
    }
}

.contact-icon {
    background: rgba(255, 193, 7, 0.15) !important;
    color: #ffc107 !important;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.contact-icon i {
    color: #ffc107 !important;
}

@media (max-width: 768px) {

    /* Top Bar - Show on mobile */
    .top-bar-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        width: 100%;
        text-align: center;
    }

    .top-bar-left span {
        font-size: 0.75rem;
    }

    /* Navbar */
    .nav-container {
        height: 75px;
    }

    .logo img {
        height: 50px;
    }

    .logo-tagline {
        display: none;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 100px;
        gap: 0;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links>li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links>li:last-child {
        border-bottom: none;
        padding: 20px 0;
    }

    .nav-links>li>a {
        font-size: 1.1rem;
        padding: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        width: 100%;
        /* Back to 100% of container */
        min-width: 100%;
        margin: 0;
        padding: 0;
        background: #f8f9fa;
        transition: all 0.3s ease;
        border-radius: 0;
    }

    .dropdown.open .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 800px;
        margin-top: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .dropdown-menu li {
        width: 100%;
        margin: 0;
    }

    .dropdown-menu li a {
        padding: 20px;
        border-radius: 0;
        justify-content: center;
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0;
    }

    .dropdown-menu li a:hover {
        background: rgba(0, 0, 0, 0.03);
    }

    .dropdown-menu li a div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .dropdown-menu li a i {
        margin-bottom: 5px;
        margin-right: 0;
        font-size: 1.5rem;
    }

    .dropdown-menu li a:hover {
        background: rgba(0, 0, 0, 0.03);
    }

    .dropdown.open .dropdown-icon {
        transform: rotate(180deg);
    }

    .dropdown-menu::before {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    /* Footer Responsive - Enhanced */
    .footer-newsletter {
        padding: 40px 0;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .footer-main {
        padding: 35px 0 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }

    .footer-brand {
        grid-column: span 1;
        padding-right: 0;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-logo {
        justify-content: center;
        gap: 10px;
    }

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

    .footer-logo-text {
        align-items: center;
    }

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

    .footer-logo .brand-tagline {
        font-size: 0.65rem;
    }

    .footer-description {
        max-width: 100%;
        font-size: 0.85rem;
        margin-bottom: 15px;
        line-height: 1.5;
    }

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

    .social-link {
        width: 36px;
        height: 36px;
    }

    /* Compact columns with 2-column grid for Services and Links */
    .footer-column {
        border-top: none;
        padding-top: 0;
    }

    .footer-column h4 {
        font-size: 0.95rem;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 2px;
    }

    .footer-column ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .footer-column ul li {
        margin-bottom: 0;
    }

    .footer-column ul li a {
        font-size: 0.85rem;
        padding: 6px 12px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        display: inline-block;
    }

    .footer-column ul li a i {
        display: none;
    }

    .footer-column ul li a:hover {
        background: rgba(255, 215, 0, 0.15);
        transform: none;
    }

    /* Compact contact info */
    .footer-contact-col .contact-item {
        flex-direction: row;
        gap: 12px;
        padding: 10px 15px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .footer-contact-col .contact-icon {
        width: 35px;
        height: 35px;
    }

    .footer-contact-col .contact-icon i {
        width: 16px;
        height: 16px;
    }

    .contact-text {
        text-align: left;
    }

    .contact-text span {
        font-size: 0.7rem;
        margin-bottom: 2px;
    }

    .contact-text p {
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding: 15px 0;
    }

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

    .footer-bottom p {
        font-size: 0.75rem;
    }

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

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

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

/* Extra small devices */
@media (max-width: 480px) {
    .footer-newsletter {
        padding: 30px 0;
    }

    .newsletter-text h3 {
        font-size: 1.25rem;
        flex-direction: column;
        gap: 8px;
    }

    .newsletter-text p {
        font-size: 0.9rem;
    }

    .newsletter-form input {
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .footer-main {
        padding: 40px 0 30px;
    }

    .footer-grid {
        gap: 30px;
    }

    .footer-logo img {
        height: 45px;
    }

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

    .footer-description {
        font-size: 0.9rem;
    }

    .social-link {
        width: 38px;
        height: 38px;
    }

    .footer-column h4 {
        font-size: 1rem;
    }

    .footer-column ul li a {
        font-size: 0.9rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

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