@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600;700&display=swap');

:root {
    /* Premium Color Palette */
    --color-primary: #0a1930;    /* Deep Navy Blue */
    --color-secondary: #1e4d8c;  /* Medium Navy Blue */
    --color-accent: #2d6bc4;     /* Lighter Navy Accent */
    --color-background: #ffffff; /* Pure White (Ceroto style) */
    --color-surface: #f8f9fa;    /* Crisp Off-White */
    --color-text-main: #222222;  /* Dark Slate Gray */
    --color-text-light: #555555; /* Lighter Slate Gray */
    --color-border: #e1e7ec;     /* Subtle Border Color */
    
    /* Typography */
    --font-main: 'Work Sans', sans-serif;
    
    /* Spacing & Sizing */
    --container-width: 1200px;
    --section-padding: 6rem 0;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-medium: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(10, 25, 48, 0.04);
    --shadow-md: 0 12px 24px rgba(10, 25, 48, 0.08);
    --shadow-lg: 0 24px 48px rgba(10, 25, 48, 0.12);
}

/* Skip Navigation Link */
.skip-link {
    position: absolute;
    top: -50px;
    left: 1rem;
    background: var(--color-primary);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
    z-index: 9999;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 0;
}

/* Focus Visible */
:focus-visible {
    outline: 3px solid var(--color-secondary);
    outline-offset: 3px;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid var(--color-secondary);
    outline-offset: 3px;
    border-radius: 2px;
}

/* Visually Hidden (accessible but off-screen) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Base Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-background);
    color: var(--color-text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

/* Typography Elements */
h1, h2, h3, h4 {
    color: var(--color-primary);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

/* Micro-Animations & Interactivity Utilities */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}
.zoom-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.visible {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-medium);
    border: 2px solid var(--color-primary);
    cursor: pointer;
    font-size: 1.1rem;
}

.btn:hover {
    background: white;
    color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(10, 25, 48, 0.15);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background: white;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-medium);
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(201, 157, 102, 0.2);
}

/* Navbar (Glassmorphism + Sticky) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all var(--transition-medium);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(10, 25, 48, 0.1));
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
    transition: var(--transition-medium);
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text-main);
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    padding: 0.6rem 0.2rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    transition: color var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-fast);
}

.nav-links a:hover {
    color: var(--color-primary);
}

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

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--color-primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 220px; /* Offset for taller navbar */
    background: 
        linear-gradient(to bottom, rgba(10, 25, 48, 0.7), rgba(10, 25, 48, 0.9)), 
        url('assets/hero_bg.jpeg') center/cover no-repeat;
}

.hero .container {
    max-width: 900px;
}

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.hero-tagline {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: white;
    margin-bottom: 1.5rem;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

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

/* Featured Collections (Home) */
.featured-products {
    padding: var(--section-padding);
    background: var(--color-background);
}

.featured-products h2 {
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.product-card {
    background: var(--color-surface);
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    text-align: left;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--color-secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
    z-index: -1;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.product-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.product-card .btn-secondary {
    color: var(--color-primary);
    border-color: var(--color-primary);
    margin-top: auto;
    align-self: flex-start;
}

.product-card .btn-secondary:hover {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 8px 20px rgba(10, 25, 48, 0.2);
}

/* Home About */
.home-about {
    padding: var(--section-padding);
    background: var(--color-surface);
    text-align: center;
}

.home-about .container {
    max-width: 800px;
}

/* Page Headers */
.page-header {
    height: 45vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 220px;
    position: relative;
    background-size: cover !important;
    background-position: center !important;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,25,48,0.85) 0%, rgba(10,25,48,0.6) 100%);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: white;
}

.page-header p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
}

/* About Page Content */
.about-content {
    padding: var(--section-padding);
    background: var(--color-surface);
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: var(--color-accent);
    border-radius: var(--border-radius-lg);
    z-index: 0;
    opacity: 0.3;
}

.about-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.why-choose-us {
    padding: var(--section-padding);
    background: var(--color-background);
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--color-surface);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    text-align: left;
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
}

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

.feature-card h3 {
    color: var(--color-primary);
}

.feature-card a {
    margin-top: auto !important;
    padding-top: 1.25rem;
    align-self: flex-start;
    display: inline-block;
}

/* Products Page */
.product-collection {
    padding: var(--section-padding);
    background: var(--color-background);
}

.collection-category {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: var(--color-surface);
    margin-bottom: 4rem;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
}

.collection-category:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.collection-category:nth-child(even) {
    flex-direction: row-reverse;
}

.collection-image {
    flex: 1;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.collection-description {
    flex: 1;
    padding: 3rem;
}

.collection-description h2 {
    color: var(--color-primary);
}

.collection-description p strong {
    color: var(--color-primary);
}

.contact-cards-section {
    padding: 14rem 0 3rem; /* Offset for taller navbar */
    background: var(--color-background);
}

.section-title {
    font-size: 2.4rem;
    color: var(--color-primary);
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background: var(--color-surface);
    padding: 3.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.contact-card h3 {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.card-divider {
    width: 40px;
    height: 2px;
    background-color: var(--color-secondary);
    margin-bottom: 2rem;
}

.contact-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-details-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-main);
    font-size: 1.05rem;
    line-height: 1.5;
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: var(--color-secondary);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-details-list a {
    color: var(--color-text-main);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-details-list a:hover {
    color: var(--color-secondary);
}

.inquire-section {
    padding: 3rem 0 6rem;
    background: var(--color-background);
}

.max-w-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-surface);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.row-group {
    display: flex;
    gap: 1.5rem;
}

.col-half {
    flex: 1;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
    border: 2px solid var(--color-primary);
}

.btn-primary:hover {
    background-color: white;
    color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(10, 25, 48, 0.15);
}

.btn-full {
    width: 100%;
}


.contact-form-container {
    padding: 1rem 0;
}

.contact-form .form-group {
    margin-bottom: 2rem;
    position: relative;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-text-main);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--color-text-main);
    background: var(--color-background);
    transition: all var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--color-secondary);
    background: var(--color-surface);
    box-shadow: 0 0 0 4px rgba(201, 157, 102, 0.1);
}

/* Footer */
.footer {
    background: var(--color-primary);
    padding: 4rem 0 2rem;
    color: white;
    text-align: center;
}

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

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .about-flex, .contact-grid, .collection-category {
        flex-direction: column !important;
        gap: 2.5rem;
    }

    .collection-image {
        width: 100%;
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem 0;
        gap: 1.5rem;
        box-shadow: var(--shadow-sm);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        opacity: 0;
        visibility: hidden;
    }

    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        margin: 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Export Page Specific Styles */
.export-hero {
    background-color: var(--color-background);
    text-align: center;
    padding: var(--section-padding);
    padding-top: 220px; /* Offset for taller navbar */
}

.export-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.export-hero .world-map-svg {
    max-width: 900px;
    width: 100%;
    margin: 3rem auto 0;
    opacity: 0.9;
}

/* Narrative Section */
.export-narrative {
    background: var(--color-surface);
    padding: 5rem 0;
    text-align: center;
}

.export-narrative p {
    font-size: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
    color: var(--color-text-main);
    line-height: 1.8;
}

/* Flag Grid Framework */
.global-reach-section {
    padding: var(--section-padding);
    background: var(--color-background);
    text-align: center;
}

.flag-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.country-pill {
    background: var(--color-surface);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
    border: 1px solid var(--color-border);
    cursor: default;
}

.country-pill:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-secondary);
}

.country-pill .flag {
    font-size: 1.5rem;
    line-height: 1;
}

.country-pill .name {
    font-weight: 600;
    color: var(--color-primary);
}

/* Service Banners */
.service-banners {
    background: var(--color-primary);
    color: white;
    padding: 5rem 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: center;
}

.service-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-medium);
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.service-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.service-banners .btn {
    background: white;
    color: var(--color-primary);
    border-color: white;
}

.service-banners .btn:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 30px; 
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 2px 5px 15px rgba(37, 211, 102, 0.4);
    color: #FFF;
}
.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}


/* Flat Contact Form (Image match) */
.contact-form-flat .form-group {
    margin-bottom: 1.5rem;
}
.contact-form-flat .form-row {
    display: flex;
    gap: 1.5rem;
}
.contact-form-flat .code-input {
    width: 25%;
}
.contact-form-flat .phone-input {
    width: 75%;
}
.contact-form-flat input,
.contact-form-flat textarea,
.contact-form-flat select {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid transparent;
    border-radius: 2px;
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--color-text-main);
    background-color: #f2f2f2;
    transition: all var(--transition-fast);
}
.contact-form-flat input::placeholder,
.contact-form-flat textarea::placeholder {
    color: #888;
}
.contact-form-flat input:focus,
.contact-form-flat textarea:focus,
.contact-form-flat select:focus {
    outline: none;
    background-color: #e9e9e9;
    border-bottom: 2px solid var(--color-primary);
}
.char-counter {
    display: block;
    margin-top: 8px;
    font-size: 0.95rem;
    color: #444;
    text-align: left;
}

/* Simulated Recaptcha Widget for UI */
.g-recaptcha-container {
    display: inline-flex;
    align-items: center;
    background: #fdfdfd;
    border: 1px solid #d3d3d3;
    border-radius: 3px;
    padding: 8px 12px;
    box-shadow: 0 0 4px rgba(0,0,0,0.1);
    width: 280px;
    position: relative;
    font-family: Roboto, helvetica, arial, sans-serif;
}
.checkbox-box {
    width: 26px;
    height: 26px;
    border: 2px solid #c1c1c1;
    border-radius: 2px;
    background: #fff;
    margin-right: 12px;
    cursor: pointer;
}
.robot-text {
    font-size: 14px;
    color: #2b2b2b;
    font-weight: 400;
}
.recaptcha-brand {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.recaptcha-brand img {
    height: 28px;
    width: 28px;
    margin-bottom: 2px;
}
.brand-name {
    font-size: 9px;
    color: #555;
}
.brand-links {
    font-size: 7px;
    color: #555;
}

/* Skills / Core Competencies Section */
.skills-section {
    padding: var(--section-padding);
    background: var(--color-surface);
}

.skills-section h2 {
    text-align: center;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.skill-card {
    background: var(--color-surface);
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
    border: 1px solid var(--color-border);
}

.skill-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-secondary);
}

.skill-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.skill-card h3 {
    margin-bottom: 0.5rem;
}

.skill-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.skill-bar {
    width: 100%;
    height: 8px;
    background: #e1e7ec;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.skill-fill {
    height: 100%;
    background: var(--color-secondary);
    border-radius: 4px;
    transition: width 1.5s ease-in-out;
}

/* --- Support Widget (Live Chat + WhatsApp Clone) --- */
.support-launcher {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #3b5998; /* Corporate Blue */
    border: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.support-launcher:hover { transform: scale(1.1) rotate(5deg); }

.support-widget-container {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 360px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    z-index: 999;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(30px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.support-widget-container.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

/* Vertical Sticky Send Inquiry Button */
.sticky-inquiry-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right bottom;
    background-color: var(--color-primary);
    color: white;
    padding: 0.8rem 1.6rem;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
    z-index: 900;
    border: 2px solid var(--color-primary);
    box-shadow: 0 -4px 15px rgba(10, 25, 48, 0.3);
    transition: background-color var(--transition-fast), color var(--transition-fast), padding-bottom var(--transition-fast);
}

.sticky-inquiry-btn:hover {
    background-color: white;
    color: var(--color-primary);
    padding-bottom: 1.2rem; /* creates a pull-out effect */
}

/* --- Left Side WhatsApp Widget --- */
.wa-launcher {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #25D366;
    border: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.wa-launcher:hover { transform: scale(1.1) rotate(-5deg); }

.wa-widget-container {
    position: fixed;
    bottom: 110px;
    left: 30px;
    width: 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    z-index: 999;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.wa-widget-container.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: all;
}
.wa-widget-header {
    background: #075e54;
    color: white;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.wa-widget-header button {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}
.wa-widget-body {
    padding: 20px;
    background: #e5ddd5;
}
.support-widget-header {
    background: #3b5998;
    color: white;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.support-widget-header h4 { margin: 0; font-size: 1.05rem; font-weight: 500; }
.support-widget-header button {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    transition: opacity 0.2s;
}
.support-widget-header button:hover { opacity: 0.7; }

.support-widget-body {
    padding: 20px;
    max-height: 70vh;
    overflow-y: auto;
    background: #f4f6f9;
}
.whatsapp-card {
    background: white;
    border: 1px solid #e1e7ec;
    border-radius: 8px;
    padding: 18px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.whatsapp-card p { color: #333; margin-top: 0; }
.rep-block {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 1px solid #e1e7ec;
}
.rep-block:hover { 
    background: #fff; 
    border-color: #25D366; 
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.15);
}
.rep-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #a8c0ff 0%, #3f2b96 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 15px;
}
.rep-info { display: flex; flex-direction: column; }
.rep-info strong { font-size: 1rem; color: #111; }
.rep-info span { font-size: 0.85rem; color: #25D366; font-weight: 700; margin-top: 2px;}

.lead-form-box {
    background: #3b5998;
    padding: 22px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(59, 89, 152, 0.3);
}
.lead-form-box .form-group { margin-bottom: 15px; }
.lead-form-box input[type="text"], 
.lead-form-box input[type="email"], 
.lead-form-box input[type="tel"] {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    background: white;
}
.lead-form-box input:focus {
    outline: 2px solid #fff;
}
.radio-label {
    display: flex;
    align-items: center;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 8px;
    cursor: pointer;
    transition: opacity 0.2s;
}
.radio-label:hover { opacity: 0.8; }
.radio-label input { margin-right: 10px; transform: scale(1.2); }




/* FAQ Section */
.faq-section {
    background-color: var(--color-background);
}
.faq-item {
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 1rem;
}
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main);
    transition: color var(--transition-fast);
}
.faq-question:hover {
    color: var(--color-secondary);
}
.faq-icon {
    font-size: 1.5rem;
    color: var(--color-secondary);
    transition: transform var(--transition-fast);
}
.faq-question.active .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}
.faq-answer p {
    margin-bottom: 1.5rem;
    color: var(--color-text-main);
}
