/* =========================================
   VARIABLES & THEMING
   ========================================= */
   :root {
    --bg-light: #fdfdfd;
    --bg-white: #ffffff;
    --text-main: #1a1b1e;
    --text-muted: #5f6368;
    --accent-silver: #e8eaed;
    --accent-orange: #0056d2; /* Professional Blue */
    --accent-orange-hover: #0043a8;
    --gradient-blue: linear-gradient(135deg, #0056d2, #0043a8);
    --gradient-neon: linear-gradient(135deg, #0056d2, #0043a8);
    
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 50px rgba(0, 86, 210, 0.12);
    
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(0, 0, 0, 0.03);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.04);
    
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-pill: 50px;
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); /* Extremely smooth easing */
}

/* =========================================
   RESET & TYPOGRAPHY
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* =========================================
   UTILITIES
   ========================================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 35px;
}

.section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient-blue);
    color: white;
    box-shadow: 0 8px 20px rgba(0, 86, 210, 0.2);
}

.btn-primary:hover {
    background: var(--gradient-blue);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 86, 210, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--text-main);
    color: var(--text-main);
}

.btn-outline:hover {
    background-color: var(--text-main);
    color: var(--bg-white);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-neon);
    border-radius: 2px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* =========================================
   TOP UTILITY BAR & BRANDING
   ========================================= */
.top-bar {
    height: 40px;
    background-color: #0b1120;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1001;
    transition: var(--transition);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-bar-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    font-size: 0.82rem;
    transition: var(--transition);
}

.top-bar-link i {
    color: #00b4d8;
}

.top-bar-link:hover {
    color: #ffffff;
}

.working-hours {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 8px;
}

.working-hours i {
    color: #00b4d8;
}

.top-bar-socials {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar-socials a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: var(--transition);
}

.top-bar-socials a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

/* =========================================
   GLASSMORPHISM NAVBAR
   ========================================= */
.navbar {
    position: fixed;
    top: 40px;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: var(--bg-white);
    box-shadow: var(--glass-shadow);
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    top: 0;
    padding: 14px 0;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--glass-shadow);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Barlow Condensed', 'Outfit', sans-serif;
    text-transform: none;
    letter-spacing: 0px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
    height: 50px;
    transition: var(--transition);
}

.logo-icon {
    color: var(--accent-orange);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo:hover .logo-icon {
    transform: rotate(15deg) scale(1.1);
}

.logo-accent {
    color: var(--accent-orange);
}

.logo-img {
    max-height: 75px;
    width: auto;
    object-fit: contain;
}

/* Exact Brand Typography matching official logo image */
.chiramal-brand-text {
    font-family: 'Changa', 'Saira Condensed', 'Barlow Condensed', sans-serif;
    display: inline-flex;
    flex-direction: column;
    line-height: 0.95;
    color: #089be5;
    text-align: left;
    vertical-align: middle;
}

.chiramal-brand-text .brand-main {
    font-family: 'Changa', 'Saira Condensed', 'Barlow Condensed', sans-serif;
    font-size: 1em;
    font-weight: 700;
    line-height: 0.95;
    color: #089be5;
    letter-spacing: -0.3px;
}

.chiramal-brand-text .brand-sub {
    font-family: 'Changa', 'Saira Condensed', 'Barlow Condensed', sans-serif;
    font-size: 0.48em;
    font-weight: 700;
    line-height: 1.1;
    color: #089be5;
    letter-spacing: 0px;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.nav-links li a {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    color: var(--text-main);
    padding: 8px 0;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--accent-orange);
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a.active {
    color: var(--accent-orange);
    font-weight: 600;
}

.nav-links li a.active::after {
    width: 100%;
    background: var(--accent-orange);
    box-shadow: 0 0 8px rgba(0, 86, 210, 0.4);
}

.nav-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Redesigned Pill Search Form */
.nav-search-form {
    display: flex;
    align-items: center;
    background: #f1f3f4;
    border-radius: 50px;
    padding: 6px 16px;
    border: 1px solid transparent;
    transition: var(--transition);
    width: 200px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}

.nav-search-form:focus-within {
    background: var(--bg-white);
    border-color: rgba(0, 86, 210, 0.3);
    box-shadow: 0 0 0 4px rgba(0, 86, 210, 0.1), inset 0 1px 2px rgba(0,0,0,0.05);
    width: 260px;
}

.search-input {
    border: none;
    background: transparent;
    outline: none;
    padding: 4px;
    width: 100%;
    font-size: 0.9rem;
    color: var(--text-main);
}

.search-submit-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 1rem;
    transition: var(--transition);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-submit-btn:hover {
    color: var(--accent-orange);
    transform: scale(1.15);
}

/* State Overrides for Navbar Text - Removed as defaults are now dark */

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    min-height: 80vh;
    max-height: 850px;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: #0b1120;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-bg.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 14, 23, 0.88) 0%, rgba(10, 14, 23, 0.5) 60%, rgba(10, 14, 23, 0.2) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(0, 180, 216, 0.15);
    border: 1px solid rgba(0, 180, 216, 0.3);
    color: #00b4d8;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.hero h1, .hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
    letter-spacing: -1px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.5s;
}



.nav-links li a:hover::after {
    width: 100%;
}

.nav-links li a.active {
    color: var(--accent-orange);
    font-weight: 600;
}

.nav-links li a.active::after {
    width: 100%;
    background: var(--accent-orange);
    box-shadow: 0 0 8px rgba(0, 86, 210, 0.4);
}

.nav-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Redesigned Pill Search Form */
.nav-search-form {
    display: flex;
    align-items: center;
    background: #f1f3f4;
    border-radius: 50px;
    padding: 6px 16px;
    border: 1px solid transparent;
    transition: var(--transition);
    width: 200px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}

.nav-search-form:focus-within {
    background: var(--bg-white);
    border-color: rgba(0, 86, 210, 0.3);
    box-shadow: 0 0 0 4px rgba(0, 86, 210, 0.1), inset 0 1px 2px rgba(0,0,0,0.05);
    width: 260px;
}

.search-input {
    border: none;
    background: transparent;
    outline: none;
    padding: 4px;
    width: 100%;
    font-size: 0.9rem;
    color: var(--text-main);
}

.search-submit-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 1rem;
    transition: var(--transition);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-submit-btn:hover {
    color: var(--accent-orange);
    transform: scale(1.15);
}

/* State Overrides for Navbar Text - Removed as defaults are now dark */

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    min-height: 80vh;
    max-height: 850px;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: #0b1120;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-bg.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 14, 23, 0.88) 0%, rgba(10, 14, 23, 0.5) 60%, rgba(10, 14, 23, 0.2) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(0, 180, 216, 0.15);
    border: 1px solid rgba(0, 180, 216, 0.3);
    color: #00b4d8;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1, .hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff !important;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
    letter-spacing: -1px;
    animation: fadeUp 0.8s forwards ease-out;
}

.hero p, .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 400;
    max-width: 650px;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
    line-height: 1.6;
    animation: fadeUp 0.8s forwards 0.2s ease-out;
}

/* =========================================
   HERO BUTTONS (GLOBAL & DESKTOP)
   ========================================= */
.hero-btns {
    animation: fadeUp 0.8s forwards 0.4s ease-out;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: flex-start;
}

.hero-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    height: 52px !important;
    padding: 0 32px !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    border-radius: 50px !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hero-btn i {
    font-size: 0.88rem !important;
    transition: transform 0.3s ease !important;
}

/* Primary Button - Shop Now */
.hero-btn-primary {
    background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%) !important;
    color: #ffffff !important;
    border: 2px solid #00b4d8 !important;
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.4) !important;
}

.hero-btn-primary:hover {
    transform: translateY(-3px) !important;
    background: linear-gradient(135deg, #00c4ec 0%, #0088cc 100%) !important;
    border-color: #00c4ec !important;
    box-shadow: 0 12px 32px rgba(0, 180, 216, 0.6) !important;
    color: #ffffff !important;
}

.hero-btn-primary:hover i {
    transform: translateX(4px) !important;
}

/* Secondary Button - Explore More */
.hero-btn-outline {
    background: rgba(11, 17, 32, 0.85) !important;
    color: #ffffff !important;
    border: 2px solid rgba(0, 180, 216, 0.6) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
}

.hero-btn-outline:hover {
    transform: translateY(-3px) !important;
    background: rgba(0, 180, 216, 0.25) !important;
    border-color: #00b4d8 !important;
    box-shadow: 0 12px 32px rgba(0, 180, 216, 0.4) !important;
    color: #ffffff !important;
}

.hero-btn-outline:hover i {
    transform: translateX(4px) !important;
}


/* =========================================
   CATEGORIES GRID (DESKTOP & GLOBAL)
   ========================================= */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
    justify-content: center;
}

.category-card {
    background: var(--bg-white);
    border-radius: 18px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
}

.image-category-card {
    height: 240px !important;
    padding: 0 !important;
    position: relative;
}

.category-img-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(10, 17, 32, 0.85) 100%);
    z-index: 2;
    transition: background 0.3s ease;
}

.category-card:hover .category-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 86, 210, 0.9) 100%);
}

.category-content-wrap {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 3;
    color: #ffffff;
    text-align: left;
}

.category-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.category-explore {
    font-size: 0.82rem;
    font-weight: 600;
    color: #00b4d8;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.category-card:hover .category-explore {
    color: #ffffff;
    transform: translateX(4px);
}

/* =========================================
   PRODUCTS GRID (DESKTOP & GLOBAL)
   ========================================= */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.product-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 86, 210, 0.12);
    border-color: rgba(0, 86, 210, 0.2);
}

.product-img-wrap {
    height: 230px !important;
    overflow: hidden;
    position: relative !important;
    background: #ffffff !important;
    padding: 15px !important;
    text-align: center;
}

.product-img-wrap img {
    max-width: 90% !important;
    max-height: 90% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    transition: transform 0.4s ease !important;
}

.product-card:hover .product-img-wrap img {
    transform: translate(-50%, -50%) scale(1.06) !important;
}

.product-actions {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    z-index: 10 !important;
    opacity: 0 !important;
    transform: translateX(10px) !important;
    transition: all 0.3s ease !important;
}

.product-card:hover .product-actions {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.action-btn {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    color: #1a1b1e !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.action-btn:hover {
    background: #00b4d8 !important;
    color: #ffffff !important;
    border-color: transparent !important;
    transform: scale(1.1) !important;
}




.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: var(--transition);
}

/* Transform Hamburger to X */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Navigation Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(11, 17, 32, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 991px) {
    .mobile-menu-btn {
        display: flex !important;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -320px;
        width: 320px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 40px 40px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
        gap: 20px;
        z-index: 1001;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        display: flex !important;
        margin: 0;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateX(20px);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    /* Stagger transitions for a premium entry effect */
    .nav-links.active li:nth-child(2) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(7) { transition-delay: 0.35s; }
    
    .nav-links li a {
        font-size: 1.15rem;
        font-weight: 600;
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        color: var(--text-main) !important;
    }
    
    .nav-links li a::after {
        display: none;
    }
    
    .nav-links li a.active {
        color: var(--accent-orange) !important;
        border-bottom-color: rgba(0, 86, 210, 0.15);
    }
    
    .mobile-drawer-header {
        display: block !important;
    }
    
    .top-bar {
        display: none !important;
    }
    
    .navbar {
        top: 0 !important;
        padding: 15px 0;
    }
    
    .desktop-search {
        display: none !important;
    }
    
    .mobile-search {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .navbar {
        top: 0 !important;
        padding: 10px 0 !important;
        position: fixed !important;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: #ffffff !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    }
    
    .logo {
        height: 48px !important;
    }

    .logo-img {
        max-height: 48px !important;
        height: 48px !important;
        margin: 0 !important;
    }

    .hero {
        height: 100vh !important;
        height: 100dvh !important;
        min-height: 100vh !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center;
    }
    
    body > section:first-of-type,
    section.section:first-of-type {
        padding-top: 140px !important;
    }
    
    .hero-overlay {
        background: linear-gradient(180deg, rgba(10, 14, 23, 0.92) 0%, rgba(10, 14, 23, 0.75) 50%, rgba(10, 14, 23, 0.95) 100%) !important;
    }
    
    .hero-container {
        justify-content: center !important;
        align-items: center !important;
        height: 100% !important;
        padding-top: 60px !important;
        padding-bottom: 20px !important;
    }
    
    .hero-content {
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 15px !important;
    }
    
    .hero-badge {
        font-size: 0.78rem !important;
        padding: 5px 14px !important;
        margin: 0 auto 16px !important;
        letter-spacing: 1.2px !important;
        display: inline-flex !important;
    }
    
    .hero h1, .hero-title {
        font-size: 2rem !important;
        line-height: 1.25 !important;
        margin-top: 0 !important;
        margin-bottom: 16px !important;
        letter-spacing: -0.5px !important;
        padding-top: 5px !important;
    }
    
    .hero p, .hero-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.55 !important;
        margin: 0 auto 28px !important;
        max-width: 100% !important;
    }
    
    
    
    .hero-btn-primary, .hero-btn-outline {
        width: 100% !important;
        padding: 14px 28px !important;
        font-size: 1rem !important;
        text-align: center !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    /* Responsive Categories Grid */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 25px;
    }
    
    .image-category-card {
        height: 180px; /* Shorter cards on mobile */
    }
    
    .category-content-wrap {
        bottom: 15px;
        left: 15px;
        right: 15px;
    }
    
    .category-title {
        font-size: 1.1rem !important;
    }
    
    .category-explore {
        font-size: 0.7rem;
        margin-top: 5px;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        gap: 10px;
    }
    
    .image-category-card {
        height: 150px; /* Even shorter on very small screens */
    }
    
    .category-title {
        font-size: 0.95rem !important;
    }
    
    .category-card {
        padding: 15px 10px;
    }
}

/* =========================================
   AI CHATBOT WIDGET
   ========================================= */
.chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #004aad;
    color: white;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 74, 173, 0.4);
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 480px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    pointer-events: none;
    transform-origin: bottom right;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0,0,0,0.05);
}

.chatbot-window.active {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.chatbot-header {
    background: #0b1120;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    background: rgba(0, 180, 216, 0.2);
    color: #00b4d8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.chatbot-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.chatbot-header p {
    margin: 0;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
}

.chatbot-close {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.chatbot-close:hover {
    color: white;
}

.chatbot-messages {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    display: flex;
    flex-direction: column;
    max-width: 85%;
}

.ai-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
    align-items: flex-end;
}

.message-content {
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.5;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.ai-message .message-content {
    background: #ffffff;
    color: #333;
    border-bottom-left-radius: 4px;
    border: 1px solid rgba(0,0,0,0.03);
}

.user-message .message-content {
    background: #004aad;
    color: white;
    border-bottom-right-radius: 4px;
}

.message-time {
    font-size: 0.7rem;
    color: #a0a0a0;
    margin-top: 5px;
    padding: 0 5px;
}

.chatbot-input-area {
    padding: 15px;
    background: #ffffff;
        margin-top: 5px;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        gap: 10px;
    }
    
    .image-category-card {
        height: 150px; /* Even shorter on very small screens */
    }
    
    .category-title {
        font-size: 0.95rem !important;
    }
    
    .category-card {
        padding: 15px 10px;
    }
}

/* =========================================
   AI CHATBOT WIDGET
   ========================================= */
.chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #004aad;
    color: white;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 74, 173, 0.4);
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 480px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    pointer-events: none;
    transform-origin: bottom right;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0,0,0,0.05);
}

.chatbot-window.active {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.chatbot-header {
    background: #0b1120;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    background: rgba(0, 180, 216, 0.2);
    color: #00b4d8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.chatbot-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.chatbot-header p {
    margin: 0;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
}

.chatbot-close {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.chatbot-close:hover {
    color: white;
}

.chatbot-messages {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    display: flex;
    flex-direction: column;
    max-width: 85%;
}

.ai-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
    align-items: flex-end;
}

.message-content {
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.5;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.ai-message .message-content {
    background: #ffffff;
    color: #333;
    border-bottom-left-radius: 4px;
    border: 1px solid rgba(0,0,0,0.03);
}

.user-message .message-content {
    background: #004aad;
    color: white;
    border-bottom-right-radius: 4px;
}

.message-time {
    font-size: 0.7rem;
    color: #a0a0a0;
    margin-top: 5px;
    padding: 0 5px;
}

.chatbot-input-area {
    padding: 15px;
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    gap: 10px;
}

.chatbot-input-area input {
    flex-grow: 1;
    border: 1px solid #e1e1e1;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}

.chatbot-input-area input:focus {
    border-color: #00b4d8;
}

.chatbot-input-area button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #00b4d8;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.chatbot-input-area button:hover {
    background: #0096b4;
}

/* Chat Product Cards */
.chat-products {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 5px;
}

.chat-product-card {
    display: flex;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.chat-product-card img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    background: #f8f9fa;
}

.chat-product-info {
    padding: 10px 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.chat-product-cat {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #00b4d8;
    font-weight: 700;
    margin-bottom: 3px;
}

.chat-product-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0b1120;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

.chat-product-price {
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    gap: 5px;
    align-items: center;
}

.chat-product-btn {
    display: inline-block;
    padding: 5px 10px;
    background: #0b1120;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.75rem;
    text-align: center;
    font-weight: 600;
    margin-top: auto;
    transition: background 0.3s;
}

.chat-product-btn:hover {
    background: #004aad;
}

/* Typing Indicator Animation */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 15px 20px !important;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    background: #00b4d8;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

@media (max-width: 480px) {
    .chatbot-window {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        bottom: 0;
        border-radius: 0;
        z-index: 10000;
        transform: translateY(100%);
    }
    
    .chatbot-window.active {
        transform: translateY(0);
    }
}

/* =========================================
   PRODUCT DETAILS & GENERAL MOBILE RESPONSIVE
   ========================================= */
.product-details-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: start;
}

.thumb-scroll-container {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.thumb-scroll-container::-webkit-scrollbar {
    display: none;
}

@media (max-width: 991px) {
    .product-details-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .product-title-main {
        font-size: 2rem !important;
        line-height: 1.25 !important;
    }
    
    .product-gallery-main {
        padding: 15px !important;
        border-radius: 16px !important;
    }
    
    .product-tabs-container {
        padding: 22px 18px !important;
        border-radius: 16px !important;
    }
    
    .product-tabs-header {
        gap: 10px !important;
        margin-bottom: 20px !important;
    }
    
    .product-tab-btn {
        padding: 10px 14px !important;
        font-size: 1rem !important;
    }

    .related-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .trust-badges-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .product-title-main {
        font-size: 1.65rem !important;
    }

    .trust-badges-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .related-products-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .product-action-btns {
        flex-direction: column !important;
    }
}



/* =========================================
   MOBILE HAMBURGER & HERO RESPONSIVE FIXES
   ========================================= */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1005;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background-color: #1a1b1e !important;
    border-radius: 3px;
    transition: var(--transition);
}

@media (max-width: 991px) {
    .mobile-menu-btn {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .hero h1, .hero-title {
        font-size: 2.1rem !important;
        line-height: 1.25 !important;
        margin-bottom: 15px !important;
    }
    
    .hero p, .hero-subtitle {
        font-size: 0.98rem !important;
        margin-bottom: 25px !important;
    }
    
    .hero-btns {
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: 290px !important;
        margin: 0 auto !important;
        justify-content: center !important;
    }
    
    .hero-btn {
        width: 100% !important;
        min-width: 100% !important;
        height: 48px !important;
        padding: 0 20px !important;
        font-size: 0.92rem !important;
    }
}


/* =========================================
   FOOTER SECTION
   ========================================= */
.footer {
    background-color: #0b1120;
    color: #a0aec0;
    padding-top: 70px;
    padding-bottom: 0;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    padding-right: 20px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    margin: 15px 0 25px;
    line-height: 1.6;
    font-size: 0.92rem;
}

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

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: #00b4d8;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 180, 216, 0.4);
    border-color: transparent;
}

.footer-links-group h4, .footer-contact h4 {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
}

.footer-links-group h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 35px;
    height: 2px;
    background: #00b4d8;
    border-radius: 2px;
}

.footer-links-group ul, .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links-group ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links-group ul li a:hover {
    color: #00b4d8;
    transform: translateX(5px);
}

.footer-contact ul li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact ul li i {
    color: #00b4d8;
    font-size: 1.05rem;
    margin-top: 3px;
}

.footer-contact ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact ul li a:hover {
    color: #00b4d8;
}

.footer-bottom {
    background-color: #070b16;
    padding: 22px 0;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #00b4d8;
}

@media (max-width: 991px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* =========================================
   FORM STYLES & CONTACT PAGE REDESIGN
   ========================================= */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: stretch;
}

.contact-info-card, .contact-form-wrapper {
    flex: 1;
    min-width: 320px;
}

.contact-info-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 180, 216, 0.12);
    padding: 6px 16px;
    border-radius: 50px;
    color: #00b4d8;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(0, 180, 216, 0.25);
    margin-bottom: 12px;
    align-self: flex-start;
}

.contact-subtitle {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 16px;
    border-radius: var(--radius-md);
    background: rgba(248, 249, 250, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.contact-item:hover {
    background: #ffffff;
    transform: translateX(6px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 180, 216, 0.25);
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.icon-location { background: rgba(225, 112, 85, 0.12); color: #e17055; }
.icon-phone { background: rgba(9, 132, 227, 0.12); color: #0984e3; }
.icon-whatsapp { background: rgba(0, 184, 148, 0.12); color: #00b4d8; }
.icon-email { background: rgba(108, 92, 231, 0.12); color: #6c5ce7; }

.contact-details h4 {
    margin-bottom: 4px;
    font-size: 1.05rem;
    color: var(--text-main);
    font-weight: 700;
}

.contact-details p, .contact-details a {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-details a:hover {
    color: #00b4d8;
}

/* Contact Form Card */
.contact-form-card {
    background: #ffffff;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 86, 210, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00b4d8 0%, #0056d2 100%);
}

.form-header {
    margin-bottom: 28px;
}

.form-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 86, 210, 0.08);
    color: #0056d2;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.form-header h3 {
    margin-bottom: 6px;
    font-size: 1.8rem;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.form-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

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

.required-star {
    color: #e74c3c;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: #94a3b8;
    font-size: 1rem;
    transition: color 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.textarea-icon-wrap .input-icon {
    top: 16px;
}

.form-control {
    width: 100%;
    padding: 13px 16px 13px 45px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-main);
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    outline: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
}

textarea.form-control {
    padding-top: 14px;
    resize: vertical;
    min-height: 120px;
}

.form-control::placeholder {
    color: #94a3b8;
    opacity: 0.8;
}

.form-control:hover {
    background: #ffffff;
    border-color: #cbd5e1;
}

.form-control:focus {
    background: #ffffff;
    border-color: #00b4d8;
    box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.15), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.input-with-icon:focus-within .input-icon {
    color: #00b4d8;
}

.form-submit-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 15px 30px !important;
    background: linear-gradient(135deg, #00b4d8 0%, #0056d2 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 12px !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    box-shadow: 0 10px 25px rgba(0, 180, 216, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    margin-top: 10px;
}

.form-submit-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 32px rgba(0, 180, 216, 0.45) !important;
    background: linear-gradient(135deg, #00c4ec 0%, #0043a8 100%) !important;
}

.form-submit-btn:active {
    transform: translateY(-1px) !important;
}

.form-submit-btn i {
    font-size: 0.95rem;
    transition: transform 0.3s ease;
}

.form-submit-btn:hover i {
    transform: translateX(4px) translateY(-2px);
}

@media (max-width: 768px) {
    .contact-grid {
        flex-direction: column;
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-form-card, .contact-info-card {
        padding: 28px 20px;
    }
}

