﻿:root {
    /* Logo-inspired color palette - Navy Blue & Orange */
    --primary: #003d82;
    --primary-dark: #002952;
    --primary-light: #0052a3;
    --primary-ultralight: #e6f0ff;

    --secondary: #475569;
    --accent: #ff6600;
    --accent-light: #ff8533;
    --accent-dark: #cc5200;
    --accent-secondary: #0ea5e9;

    --success: #10b981;
    --success-light: #a7f3d0;

    --light: #f8fafc;
    --off-white: #f9fafb;
    --light-gray: #e5e7eb;
    --medium-gray: #94a3b8;
    --dark: #020617;
    --white: #ffffff;

    /* Logo-inspired gradients - Navy to Orange */
    --gradient-primary: linear-gradient(135deg, #003d82 0%, #0052a3 50%, #ff6600 100%);
    --gradient-accent: linear-gradient(135deg, #cc5200 0%, #ff6600 50%, #ff8533 100%);
    --gradient-success: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
    --gradient-hero: radial-gradient(circle at 20% 80%, rgba(0, 61, 130, 0.08) 0, transparent 50%),
                     radial-gradient(circle at 80% 20%, rgba(255, 102, 0, 0.05) 0, transparent 50%),
                     radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.05) 0, transparent 50%);

    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.18);
    --shadow-xl: 0 24px 60px rgba(15, 23, 42, 0.25);

    --border-radius: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
    background-color: var(--white);
    color: var(--dark);
    line-height: 1.7;
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Section spacing */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    transition: background 0.6s ease, box-shadow 0.6s ease, transform 0.6s ease;
}

.section-sm {
    padding: 60px 0;
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: none;
    padding: 18px 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.logo-container {
    display: flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.02);
    transition: all 0.3s ease;
}

.logo-container:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
    background: rgba(248, 250, 252, 0.9);
}

.logo-img {
    height: 46px;
    margin-right: 12px;
    filter: drop-shadow(0 2px 4px rgba(15, 23, 42, 0.1));
    transition: transform 0.3s ease;
}

.logo-container:hover .logo-img {
    transform: scale(1.03);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.6rem;
}

.logo-sub {
    font-weight: 500;
    color: var(--secondary);
    font-size: 0.92rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.nav-link {
    font-weight: 600;
    color: var(--dark);
    margin: 0 12px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-size: 0.95rem;
    padding: 6px 0;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 999px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 20px !important;
    border-radius: 999px !important;
    font-size: 0.9rem !important;
}

/* Buttons */
.btn {
    padding: 14px 32px;
    font-weight: 700;
    border-radius: 999px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.98rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.18);
    opacity: 0;
    transition: all 0.35s ease;
}

.btn:hover::before {
    left: 0;
    opacity: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(37, 99, 235, 0.35);
}

.btn-outline {
    background-color: #fff;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--gradient-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 140px 0 110px;
    background: var(--gradient-hero), var(--white);
    overflow: hidden;
}

.hero-bg-shape {
    position: absolute;
    border-radius: 999px;
    filter: blur(40px);
    opacity: 0.45;
    z-index: 0;
}

.hero-bg-1 {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.32), transparent 70%);
    top: -80px;
    right: -80px;
}

.hero-bg-2 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.24), transparent 70%);
    bottom: -60px;
    left: -40px;
}

.hero-row {
    position: relative;
    z-index: 1;
}

.hero-copy {
    max-width: 540px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(148, 163, 184, 0.4);
    color: var(--primary-dark);
    padding: 9px 20px;
    border-radius: 999px;
    font-weight: 600;
    margin-bottom: 18px;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-badge i {
    font-size: 1rem;
    color: var(--accent);
}

.hero-title {
    font-size: 3.1rem;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.15;
    letter-spacing: -0.06em;
    color: var(--dark);
}

#about{
margin-top: 60px;
}

.highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.05rem;
    margin-bottom: 22px;
    font-weight: 400;
    line-height: 1.8;
    color: var(--secondary);
}

.hero-actions {
    margin-top: 6px;
    margin-bottom: 26px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Hero right: clean medium image */
.hero-visual {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    border-radius: 40px;
    overflow: hidden;

    background: radial-gradient(circle at 15% 0%, #ffffff 0, #eef2ff 45%, #e0f2fe 100%);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.18);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.hero-image-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 15%, rgba(255, 255, 255, 0.7) 0, transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(148, 163, 184, 0.15) 0, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.hero-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform-origin: center;
    transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.04);
}

.hero-image-pill {
    position: absolute;
    bottom: 18px;
    left: 24px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 999px;

    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.8);
    color: #e5e7eb;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.9);
}

.hero-image-pill i {
    font-size: 0.9rem;
    color: #facc15;
}

/* Hero industries strip */
.hero-strip {
    margin-top: 32px;
    border-radius: 999px;
    padding: 10px 20px;
    background: rgba(15, 23, 42, 0.03);
    border: 1px dashed rgba(148, 163, 184, 0.6);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    backdrop-filter: blur(10px);
}

.strip-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--secondary);
    font-weight: 700;
}

.strip-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.strip-items span {
    font-size: 0.88rem;
    color: var(--dark);
    background: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--light-gray);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.strip-items span:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
}

.strip-items i {
    color: var(--primary);
}

/* Section titles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark);
    font-size: 2.3rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 16px auto 0;
    border-radius: 999px;
}

.section-intro {
    max-width: 650px;
    margin: -18px auto 40px;
    text-align: center;
    color: var(--secondary);
}

/* About Section */
.about {
    background: #fff;
}

.about-img-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img {
    width: 100%;
    display: block;
    border-radius: var(--border-radius-lg);
    transition: transform 0.4s ease;
}

.about-img-container:hover .about-img {
    transform: scale(1.03);
}

.floating-cert {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    padding: 10px 18px;
    border-radius: 999px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 0.85rem;
}

.floating-cert i {
    margin-right: 10px;
    font-size: 1.1rem;
    color: var(--accent);
}

.about-content h3 {
    color: var(--dark);
    margin-bottom: 18px;
    font-size: 2rem;
    font-weight: 700;
}

.about-content p {
    margin-bottom: 14px;
    font-size: 1.03rem;
    line-height: 1.8;
    color: var(--medium-gray);
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    margin-top: 26px;
    gap: 18px 32px;
}

.feature {
    display: flex;
    align-items: center;
}

.feature i {
    background: var(--gradient-primary);
    color: #fff;
    width: 46px;
    height: 46px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature span {
    font-weight: 600;
    color: var(--dark);
}

.feature:hover i {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Products Section */
.products {
    background: var(--light);
}

.product-card {
    height: 420px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid var(--light-gray);
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.7);
}

.product-front,
.product-back {
    position: absolute;
    inset: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--border-radius);
    padding: 22px;
    display: flex;
    flex-direction: column;
    backface-visibility: hidden;
}

.product-front {
    background-color: #fff;
    justify-content: space-between;
    transform: rotateY(0deg);
}

.product-back {
    background: var(--gradient-primary);
    color: #fff;
    transform: rotateY(180deg);
    align-items: stretch;
    text-align: left;
}

.product-card.flipped .product-front {
    transform: rotateY(180deg);
}

.product-card.flipped .product-back {
    transform: rotateY(0deg);
}

.product-img {
    height: 170px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--light);
    margin-bottom: 16px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.product-card:hover .product-image {
    transform: scale(1.06);
}

.product-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1.3;
}

.product-body p {
    color: var(--secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.product-action {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 0.98rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.product-action i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.product-card:hover .product-action i {
    transform: translateX(8px);
}

.product-back h4 {
    margin-bottom: 18px;
    font-size: 1.5rem;
    font-weight: 700;
}

.product-back ul {
    list-style-type: none;
    margin-bottom: 24px;
    padding-left: 0;
}

.product-back li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.96rem;
}

.product-back li:last-child {
    border-bottom: none;
}

.product-back li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 7px;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-secondary), #06b6d4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Contact Section – new design */
/* Contact Section – soft gradient background */
.contact {
    position: relative;
    background:
        radial-gradient(circle at 0% 0%, #eff6ff 0, #e0f2fe 45%, transparent 72%),
        radial-gradient(circle at 100% 100%, #fff7ed 0, #e0f2fe 55%, #e5f3ff 100%);
    z-index: 1;
}

/* subtle top highlight so it feels like a separate band */
.contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 255, 0.0) 30%,
        transparent 100%);
    pointer-events: none;
    z-index: -1;
}


.contact-info h4 {
    color: var(--dark);
    font-size: 1.4rem;
    font-weight: 700;
}

.contact-intro {
    color: var(--secondary);
    font-size: 1.02rem;
    margin-bottom: 18px;
}

.contact-box {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 18px 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(148, 163, 184, 0.35);
}

.contact-heading {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.contact-item-inline {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.contact-inline-icon {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.9rem;
}

.contact-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--secondary);
    margin-bottom: 2px;
}

.contact-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-address {
    margin: 0;
    color: var(--dark);
}

.contact-form {
    background-color: var(--off-white);
    padding: 36px 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-gray);
}

.form-control {
    padding: 14px 18px;
    margin-bottom: 18px;
    border-radius: var(--border-radius);
    border: 2px solid var(--light-gray);
    transition: all 0.25s ease;
    font-size: 1rem;
    background-color: #fff;
    color: var(--dark);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
    outline: none;
}

.form-control::placeholder {
    color: #9ca3af;
}

.form-note {
    font-size: 0.86rem;
    color: var(--medium-gray);
    margin-top: 6px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(249, 115, 22, 0.08));
    border-radius: var(--border-radius);
    margin-right: 14px;
    color: var(--primary);
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
}

.social-icons a:hover {
    background: var(--gradient-primary);
    color: #fff;
    transform: translateY(-4px) rotate(3deg);
    box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
    background: #020617;
    color: #e5e7eb;
    padding: 80px 0 36px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20%;
    right: -20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-brand .logo-container {
    margin-bottom: 18px;
    background: transparent;
    padding-left: 0;
}

.footer-brand .logo-main {
    color: #fff;
    font-size: 1.9rem;
}

.footer-brand .logo-sub {
    color: #cbd5f5;
    font-size: 1rem;
}

.footer-brand p {
    color: #9ca3af;
    line-height: 1.8;
    margin-top: 10px;
}

.footer h5 {
    margin-bottom: 18px;
    color: #e5e7eb;
    font-size: 1.15rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 999px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.25s;
    font-size: 0.98rem;
}

.footer-links a:hover {
    color: #e5e7eb;
    transform: translateX(6px);
}

.copyright {
    border-top: 1px solid rgba(148, 163, 184, 0.35);
    padding-top: 22px;
    margin-top: 40px;
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
}

/* Reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll-to-top button */
#scrollToTop {
    transition: all 0.25s ease;
}

#scrollToTop:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-3px);
}

/* WhatsApp FAB with animation */
.whatsapp-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 999px;
    background: #22c55e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 40px rgba(34, 197, 94, 0.45);
    z-index: 1000;
    text-decoration: none;
    font-size: 1.7rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    overflow: visible;
}

.whatsapp-fab i {
    position: relative;
    z-index: 2;
}

.whatsapp-fab:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 22px 55px rgba(34, 197, 94, 0.6);
    background: #16a34a;
}

.whatsapp-pulse-ring {
    position: absolute;
    inset: -6px;
    border-radius: inherit;
    border: 2px solid rgba(34, 197, 94, 0.4);
    animation: whatsapp-pulse 1.8s ease-out infinite;
    z-index: 1;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.9;
    }
    70% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(0.95);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .hero {
        padding: 120px 0 80px;
        text-align: center;
    }

    .hero-copy {
        margin: 0 auto 40px;
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        justify-content: center;
        margin-top: 24px;
    }

    .hero-image-wrapper {
        max-width: 420px;
    }

    .hero-strip {
        border-radius: 18px;
    }

    .navbar-nav {
        padding-top: 12px;
    }

    .nav-link {
        margin: 6px 0;
        padding: 10px 0;
    }

    .section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-form {
        padding: 26px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 100px 0 70px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .btn {
        width: 100%;
    }

    .contact-form {
        padding: 24px;
    }

    .hero-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-image-wrapper {
        max-width: 340px;
    }

    .whatsapp-fab {
        right: 16px;
        bottom: 16px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}
/* Chatbot FAB + window */
/* Chatbot FAB + window – left side */
.chatbot-wrapper {
    position: fixed;
    bottom: 24px;
    left: 24px;   /* ⬅️ move to left corner */
    right: auto;
    z-index: 1000;
}


/* Round chatbot button */
.chatbot-fab {
    width: 60px;
    height: 60px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: radial-gradient(circle at 0 0, #f97316, #ea580c 40%, #7c2d12 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.55);
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
    position: relative;
    overflow: visible;
}

.chatbot-fab-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-fab i {
    font-size: 1.6rem;
}

.chatbot-fab-dot {
    position: absolute;
    top: -2px;
    right: -4px;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: chatbot-pulse 1.6s infinite;
}

.chatbot-fab:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.7);
    filter: brightness(1.05);
}

/* Chat window */
.chatbot-window {
    position: absolute;
    bottom: 78px;
    left: -6px;           /* ⬅ align with left side of the button */
    right: auto;
    width: 320px;
    max-height: 420px;
    background: #0b1120;
    color: #e5e7eb;
    border-radius: 22px;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.9);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(16px) scale(0.96);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}


.chatbot-window.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.chatbot-header {
    padding: 14px 16px;
    background: radial-gradient(circle at 0 0, rgba(248, 250, 252, 0.06), transparent 60%);
    border-bottom: 1px solid rgba(148, 163, 184, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-title {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 0.98rem;
    font-weight: 600;
}

.chatbot-subtitle {
    font-size: 0.76rem;
    color: #9ca3af;
}

.chatbot-close {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: none;
    background: rgba(15, 23, 42, 0.8);
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.chatbot-close:hover {
    background: rgba(30, 64, 175, 0.8);
    color: #e5e7eb;
}

.chatbot-body {
    padding: 12px 14px 8px;
    overflow-y: auto;
    gap: 10px;
    display: flex;
    flex-direction: column;
    scrollbar-width: thin;
    scrollbar-color: rgba(148, 163, 184, 0.7) transparent;
}

.chatbot-body::-webkit-scrollbar {
    width: 6px;
}

.chatbot-body::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.7);
    border-radius: 999px;
}

.chatbot-message {
    display: flex;
    font-size: 0.84rem;
}

.chatbot-message.bot .chatbot-bubble {
    background: radial-gradient(circle at 0 0, #1d283a 0, #020617 60%);
    color: #e5e7eb;
}

.chatbot-message.note .chatbot-bubble {
    background: rgba(148, 163, 184, 0.16);
    color: #cbd5f5;
    font-size: 0.78rem;
}

.chatbot-avatar {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22c55e, #0ea5e9);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    flex-shrink: 0;
    color: #fff;
    font-size: 0.9rem;
}

.chatbot-bubble {
    padding: 8px 10px;
    border-radius: 16px;
    border-bottom-left-radius: 4px;
}

/* Input area */
.chatbot-input {
    display: flex;
    align-items: center;
    padding: 8px;
    border-top: 1px solid rgba(148, 163, 184, 0.4);
    background: rgba(15, 23, 42, 0.96);
    gap: 6px;
}

.chatbot-input input[type="text"] {
    flex: 1;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
    padding: 8px 12px;
    font-size: 0.84rem;
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.chatbot-input input::placeholder {
    color: #64748b;
}

.chatbot-input input:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.4);
}

.chatbot-input button {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #38bdf8, #2563eb);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.6);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chatbot-input button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.8);
}

/* Chatbot pulse on green dot */
@keyframes chatbot-pulse {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* Mobile adjustments */
@media (max-width: 576px) {
    .chatbot-wrapper {
        left: 16px;
        bottom: 18px;
    }

    .chatbot-window {
        left: 0;          /* keep it inside the viewport */
        right: auto;
        width: 90vw;
        max-width: 360px;
    }
}




/* ==================== FLOATING BUTTONS - REPOSITIONED ==================== */
/* WhatsApp Button - LEFT SIDE */
.whatsapp-fab.whatsapp-left {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: auto;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    text-decoration: none;
    font-size: 2rem;
    transition: all 0.3s ease;
    overflow: visible;
}

.whatsapp-fab.whatsapp-left:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.6);
    background: #20ba5a;
}

.whatsapp-fab.whatsapp-left i {
    position: relative;
    z-index: 2;
}

.whatsapp-pulse-ring {
    position: absolute;
    inset: -8px;
    border-radius: inherit;
    border: 3px solid rgba(37, 211, 102, 0.5);
    animation: whatsapp-pulse 2s ease-out infinite;
    z-index: 1;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.9;
    }
    70% {
        transform: scale(1.25);
        opacity: 0;
    }
    100% {
        transform: scale(0.95);
        opacity: 0;
    }
}

/* Chatbot Button - RIGHT SIDE */
.chatbot-wrapper.chatbot-right {
    position: fixed;
    bottom: 24px;
    right: 24px;
    left: auto;
    z-index: 1000;
}

.chatbot-fab {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 61, 130, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
}

.chatbot-fab:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 61, 130, 0.6);
}

.chatbot-fab-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.chatbot-fab-icon i {
    animation: bot-bounce 2s ease-in-out infinite;
}

@keyframes bot-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.chatbot-fab-dot {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #22c55e;
    border: 2px solid white;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: chatbot-pulse 2s infinite;
}

@keyframes chatbot-pulse {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* Chat Window - RIGHT SIDE */
.chatbot-window {
    position: absolute;
    bottom: 85px;
    right: 0;
    left: auto;
    width: 360px;
    max-height: 500px;
    background: #ffffff;
    color: var(--dark);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 61, 130, 0.1);
}

.chatbot-window.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.chatbot-header {
    padding: 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.chatbot-subtitle {
    font-size: 0.85rem;
    opacity: 0.9;
}

.chatbot-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.chatbot-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #f8fafc;
}

.chatbot-message {
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
}

.chatbot-message.bot .chatbot-bubble {
    background: white;
    color: var(--dark);
    border: 1px solid rgba(0, 61, 130, 0.1);
}

.chatbot-message.note .chatbot-bubble {
    background: rgba(0, 61, 130, 0.05);
    color: var(--secondary);
    font-size: 0.8rem;
    font-style: italic;
}

.chatbot-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 1rem;
}

.chatbot-bubble {
    padding: 12px 16px;
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    line-height: 1.5;
}

.chatbot-input {
    display: flex;
    align-items: center;
    padding: 16px;
    border-top: 1px solid rgba(0, 61, 130, 0.1);
    background: white;
    gap: 10px;
}

.chatbot-input input[type="text"] {
    flex: 1;
    border-radius: 24px;
    border: 1px solid rgba(0, 61, 130, 0.2);
    background: #f8fafc;
    color: var(--dark);
    padding: 12px 18px;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.chatbot-input input::placeholder {
    color: #94a3b8;
}

.chatbot-input input:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 61, 130, 0.1);
}

.chatbot-input button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(0, 61, 130, 0.3);
    transition: all 0.3s ease;
}

.chatbot-input button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 61, 130, 0.4);
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .whatsapp-fab.whatsapp-left {
        left: 16px;
        bottom: 16px;
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .chatbot-wrapper.chatbot-right {
        right: 16px;
        bottom: 16px;
    }

    .chatbot-fab {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .chatbot-window {
        width: calc(100vw - 32px);
        right: 0;
        max-height: 450px;
    }
}


/* Modern Gallery Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.pagination-modern {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.pagination-modern li a,
.pagination-modern li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 10px;
    background: #ffffff;
    color: #333;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.pagination-modern li a:hover {
    background: #0d6efd;
    color: #fff;
    transform: translateY(-2px);
}

.pagination-modern li.active span {
    background: linear-gradient(135deg, #0d6efd, #084298);
    color: #fff;
}

.pagination-modern li.disabled span {
    opacity: 0.4;
    cursor: not-allowed;
}
