/* ========================================
   ROOT VARIABLES
   ======================================== */
:root {
    /* Brand Colors - Vibrant Electric Blue & Cyan Theme */
    --primary: #0863c9;
    --primary-dark: #044a9e;
    --primary-light: #2196f3;
    --primary-sea: #00b4d8;
    --primary-bright: #0e8fb5;
    --primary-gradient: linear-gradient(135deg, #0863c9, #0e8fb5);
    --primary-gradient-dark: linear-gradient(135deg, #044a9e, #0863c9);
    --primary-gradient-light: linear-gradient(135deg, #2196f3, #0e8fb5);
    
    /* Secondary Colors */
    --secondary: #0d1b2a;
    --secondary-light: #1b2d45;
    --white: #ffffff;
    --off-white: #f0f6fa;
    --light-gray: #e2e8f0;
    --medium-gray: #94a3b8;
    --gray: #64748b;
    --dark-gray: #334155;
    --black: #0f172a;
    
    /* Accent Colors - Vibrant Amber/Gold touch */
    --accent: #ffb703;
    --accent-light: #ffd166;
    --accent-gradient: linear-gradient(135deg, #ffb703, #ffd166);
    --accent-soft: #fff4e0;
    
    /* Status Colors */
    --success: #10b981;
    --error: #ef4444;
    
    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    --gutter: 30px;
    
    /* Effects */
    --shadow-sm: 0 2px 8px rgba(8, 99, 201, 0.08);
    --shadow-md: 0 5px 25px rgba(8, 99, 201, 0.12);
    --shadow-lg: 0 15px 50px rgba(8, 99, 201, 0.18);
    --shadow-xl: 0 25px 70px rgba(8, 99, 201, 0.25);
    --shadow-hover: 0 20px 60px rgba(8, 99, 201, 0.20);
    --shadow-glow: 0 0 40px rgba(0, 180, 216, 0.15);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    --transition-slow: 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

/* ========================================
   RESET & BASE
   ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    color: var(--black);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: var(--primary-sea);
    transition: var(--transition-normal);
}

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

ul,
ol {
    list-style: none;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.25;
    color: var(--secondary);
    margin-bottom: 1rem;
}

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

h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
}

h3 {
    font-size: clamp(1.3rem, 2vw, 1.8rem);
}

h4 {
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
}

p {
    margin-bottom: 1.2rem;
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.8;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

/* ========================================
   LAYOUT
   ======================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

.section--light {
    background-color: var(--off-white);
}

.section--primary {
    background: var(--primary-gradient);
    color: var(--white);
}

.section--primary h2,
.section--primary p {
    color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 18px;
    margin-bottom: 0;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.section-title h2 span {
    color: var(--primary-sea);
}

.section-title p {
    margin-top: 15px;
    font-size: 1.1rem;
    color: var(--gray);
}

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

.text-primary {
    color: var(--primary-sea);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 34px;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    text-align: center;
    color: var(--white);
    background: var(--primary-gradient);
    box-shadow: 0 4px 20px rgba(8, 99, 201, 0.3);
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 35px rgba(8, 99, 201, 0.4);
    color: var(--white);
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: var(--transition-normal);
}

.btn:hover::after {
    left: 100%;
}

/* Button Variants */
.btn--outline {
    background: transparent;
    border: 2px solid var(--primary-sea);
    color: var(--primary-sea);
    box-shadow: none;
}

.btn--outline:hover {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(8, 99, 201, 0.3);
    border-color: transparent;
}

.btn--outline-white {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    box-shadow: none;
}

.btn--outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

.btn--accent {
    background: var(--accent-gradient);
    box-shadow: 0 4px 20px rgba(255, 183, 3, 0.35);
    color: var(--secondary);
}

.btn--accent:hover {
    box-shadow: 0 8px 35px rgba(255, 183, 3, 0.45);
    color: var(--secondary);
}

.btn--small {
    padding: 10px 24px;
    font-size: 0.8rem;
}

.btn--large {
    padding: 18px 44px;
    font-size: 1rem;
}

.btn--icon {
    padding: 12px 18px;
    border-radius: var(--radius-full);
}

.btn--icon i {
    font-size: 1.2rem;
}

/* ========================================
   HEADER & NAVIGATION - CLEAN MENU
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(8, 99, 201, 0.06);
    transition: var(--transition-normal);
}

.header--scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo__img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo__text {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
}

.logo__text span {
    color: var(--primary-sea);
}

/* Navigation - Clean Style */
.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav__link {
    display: block;
    padding: 8px 16px;
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--secondary);
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    position: relative;
}

.nav__link:hover {
    color: var(--primary-sea);
    background: rgba(0, 180, 216, 0.08);
}

.nav__link--active {
    color: var(--primary-sea);
    background: rgba(0, 180, 216, 0.08);
}

.nav__link--btn {
    padding: 8px 20px;
    background: var(--primary-gradient);
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(8, 99, 201, 0.25);
}

.nav__link--btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(8, 99, 201, 0.35);
    background: var(--primary-gradient-dark);
    color: var(--white) !important;
}

.nav__link--call {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--accent-gradient);
    color: var(--secondary) !important;
    box-shadow: 0 4px 15px rgba(255, 183, 3, 0.3);
}

.nav__link--call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 183, 3, 0.4);
    color: var(--secondary) !important;
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--secondary);
    cursor: pointer;
    padding: 5px;
    transition: var(--transition-normal);
    z-index: 1001;
}

.mobile-toggle:hover {
    color: var(--primary-sea);
}

/* ========================================
   HERO SECTION - STYLISH WITH ANIMATIONS
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: linear-gradient(135deg, rgba(4, 73, 158, 0) 0%, rgba(8, 98, 201, 0.466) 30%, rgba(0, 180, 216, 0) 60%, rgba(14, 142, 181, 0.651) 100%), url('images/2.jpg');
    background-size: 300% 300%, cover;
    background-position: 0% 50%, center 30%;
    background-repeat: no-repeat, no-repeat;
    animation: gradientMove 12s ease-in-out infinite;
    color: var(--white);
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%, center 30%; }
    50% { background-position: 100% 50%, center 30%; }
    100% { background-position: 0% 50%, center 30%; }
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-particles span {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: floatParticles 15s linear infinite;
    bottom: -150px;
}

.hero-particles span:nth-child(1) {
    left: 10%;
    width: 25px;
    height: 25px;
    animation-delay: 0s;
    animation-duration: 18s;
    background: rgba(255, 255, 255, 0.05);
}

.hero-particles span:nth-child(2) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 22s;
    background: rgba(255, 215, 0, 0.08);
}

.hero-particles span:nth-child(3) {
    left: 30%;
    width: 35px;
    height: 35px;
    animation-delay: 4s;
    animation-duration: 20s;
    background: rgba(255, 255, 255, 0.04);
}

.hero-particles span:nth-child(4) {
    left: 40%;
    width: 18px;
    height: 18px;
    animation-delay: 1s;
    animation-duration: 16s;
    background: rgba(255, 215, 0, 0.06);
}

.hero-particles span:nth-child(5) {
    left: 50%;
    width: 28px;
    height: 28px;
    animation-delay: 3s;
    animation-duration: 19s;
    background: rgba(255, 255, 255, 0.05);
}

.hero-particles span:nth-child(6) {
    left: 60%;
    width: 12px;
    height: 12px;
    animation-delay: 5s;
    animation-duration: 24s;
    background: rgba(255, 215, 0, 0.07);
}

.hero-particles span:nth-child(7) {
    left: 70%;
    width: 30px;
    height: 30px;
    animation-delay: 2s;
    animation-duration: 17s;
    background: rgba(255, 255, 255, 0.04);
}

.hero-particles span:nth-child(8) {
    left: 80%;
    width: 16px;
    height: 16px;
    animation-delay: 4s;
    animation-duration: 21s;
    background: rgba(255, 215, 0, 0.05);
}

.hero-particles span:nth-child(9) {
    left: 90%;
    width: 22px;
    height: 22px;
    animation-delay: 1s;
    animation-duration: 23s;
    background: rgba(255, 255, 255, 0.06);
}

.hero-particles span:nth-child(10) {
    left: 95%;
    width: 10px;
    height: 10px;
    animation-delay: 3s;
    animation-duration: 20s;
    background: rgba(255, 215, 0, 0.08);
}

@keyframes floatParticles {
    0% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-110vh) rotate(720deg) scale(0);
        opacity: 0;
    }
}

/* Shimmer effect overlay */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    animation: shimmerMove 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes shimmerMove {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.1); }
    100% { transform: translate(0, 0) scale(1); }
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(transparent, var(--white));
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    animation: fadeInUp 1s ease;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    margin-bottom: 24px;
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero__badge i {
    color: var(--accent-light);
}

.hero__title {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}

.hero__title span {
    color: var(--accent-light);
}

.hero__subtitle {
    font-size: clamp(1.1rem, 1.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.92);
    max-width: 650px;
    margin: 0 auto 35px;
    text-shadow: 0 1px 15px rgba(0, 0, 0, 0.15);
}

.hero__buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Hero Stats */
.hero__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 700px;
    margin: 50px auto 0;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-light);
    display: block;
    animation: pulse 2s ease-in-out infinite;
}

.hero__stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   PAGE HERO (Inner Pages)
   ======================================== */
.page-hero {
    padding: 160px 20px 80px;
    text-align: center;
    color: var(--white);
    position: relative;
    background: linear-gradient(135deg, rgba(8, 99, 201, 0.9), rgba(0, 180, 216, 0.85));
    margin-top: 0;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.25), transparent 70%);
    border-radius: 50%;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(8, 99, 201, 0.2), transparent 70%);
    border-radius: 50%;
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ========================================
   INFO CARDS - BRIGHT
   ======================================== */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--gutter);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.info-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
    border-bottom: 4px solid var(--primary-sea);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition-normal);
}

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

.info-card:hover::before {
    opacity: 1;
}

.info-card__icon {
    font-size: 2.8rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    display: inline-block;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.info-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ========================================
   SERVICES
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--gutter);
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid var(--light-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-sea);
}

.service-card:hover::before {
    height: 6px;
}

.service-card__icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--primary-sea);
    display: inline-block;
    transition: var(--transition-normal);
}

.service-card:hover .service-card__icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 20px;
}

.service-card .btn {
    margin-top: auto;
}

/* Service Detail Layout */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.service-detail--reverse .service-detail__image {
    order: 2;
}

.service-detail--reverse .service-detail__content {
    order: 1;
}

.service-detail__image {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-detail__image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition-normal);
}

.service-detail__image:hover img {
    transform: scale(1.03);
}

.service-detail__content h2 {
    color: var(--primary-sea);
    margin-bottom: 15px;
}

.service-detail__content h3 {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.service-detail__features {
    list-style: none;
    margin-bottom: 25px;
}

.service-detail__features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray);
}

.service-detail__features li:last-child {
    border-bottom: none;
}

.service-detail__features i {
    color: var(--primary-sea);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Pricing Info */
.pricing-info {
    background: linear-gradient(135deg, rgba(8, 99, 201, 0.05), rgba(0, 180, 216, 0.08));
    padding: 25px;
    border-radius: var(--radius-md);
    margin-top: 20px;
    border: 1px solid rgba(0, 180, 216, 0.1);
}

.pricing-info h3 {
    color: var(--primary-sea);
    margin-bottom: 8px;
}

.pricing-info p {
    margin-bottom: 15px;
}

/* Add-ons */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.addon-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid var(--light-gray);
}

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

.addon-card__icon {
    font-size: 2.5rem;
    color: var(--primary-sea);
    margin-bottom: 15px;
    display: inline-block;
}

.addon-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.addon-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ========================================
   ABOUT / VALUES
   ======================================== */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.split-section__image {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.split-section__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.split-section__content h2 {
    color: var(--primary-sea);
    margin-bottom: 15px;
}

.split-section__content .lead {
    font-size: 1.1rem;
    color: var(--dark-gray);
}

.features-list {
    list-style: none;
    margin: 20px 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 8px 0;
}

.features-list i {
    color: var(--primary-sea);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.features-list strong {
    display: block;
    color: var(--secondary);
}

.features-list span {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--gutter);
}

.value-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid var(--light-gray);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-sea);
}

.value-card__icon {
    font-size: 2.8rem;
    color: var(--primary-sea);
    margin-bottom: 15px;
    display: inline-block;
}

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

.value-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ========================================
   GALLERY
   ======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-grid__item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.gallery-grid__item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.gallery-grid__item:hover img {
    transform: scale(1.08);
}

.gallery-grid__item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: var(--white);
    font-size: 2.5rem;
    background: rgba(8, 99, 201, 0.6);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.gallery-grid__item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Gallery Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 99, 201, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox--open {
    display: flex;
    opacity: 1;
}

.lightbox__content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-xl);
    animation: zoomIn 0.3s ease;
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition-normal);
    background: none;
    border: none;
    z-index: 2001;
}

.lightbox__close:hover {
    transform: rotate(90deg);
    color: var(--accent-light);
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition-normal);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2001;
}

.lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox__nav--prev {
    left: 20px;
}

.lightbox__nav--next {
    right: 20px;
}

.lightbox__counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    z-index: 2001;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--gutter);
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

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

.testimonial-card__stars {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.testimonial-card__text {
    font-style: italic;
    color: var(--dark-gray);
    flex-grow: 1;
    position: relative;
    padding-left: 20px;
}

.testimonial-card__text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 2.5rem;
    color: var(--primary-sea);
    line-height: 1;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--light-gray);
}

.testimonial-card__author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card__author-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.testimonial-card__author-info span {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Platform Cards */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.platform-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid var(--light-gray);
    color: var(--secondary);
}

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

.platform-card i {
    font-size: 2.2rem;
    color: var(--primary-sea);
    margin-bottom: 10px;
    display: inline-block;
}

.platform-card h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.platform-card .rating {
    color: var(--accent);
    font-size: 0.85rem;
}

/* ========================================
   FAQ
   ======================================== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category h2 {
    font-size: 1.6rem;
    color: var(--primary-sea);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--light-gray);
}

.faq-item {
    margin-bottom: 12px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--white);
    transition: var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--primary-sea);
}

.faq-item__question {
    width: 100%;
    padding: 18px 22px;
    text-align: left;
    background: var(--white);
    border: none;
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-normal);
}

.faq-item__question:hover {
    background: rgba(0, 180, 216, 0.05);
}

.faq-item__question i {
    transition: var(--transition-normal);
    font-size: 0.9rem;
    color: var(--primary-sea);
}

.faq-item__question.active i {
    transform: rotate(180deg);
}

.faq-item__answer {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item__answer p {
    padding: 0 0 20px;
    margin-bottom: 0;
}

.faq-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(8, 99, 201, 0.05), rgba(0, 180, 216, 0.08));
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 180, 216, 0.1);
}

.faq-cta h3 {
    color: var(--primary-sea);
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.faq-cta .btn {
    margin-top: 10px;
}

/* ========================================
   CONTACT
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
}

.contact-info h3 {
    color: var(--primary-sea);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-method__icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-method__content h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.contact-method__content p,
.contact-method__content a {
    color: var(--gray);
    font-size: 0.95rem;
}

.contact-method__content a:hover {
    color: var(--primary-sea);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
}

.contact-form h3 {
    color: var(--primary-sea);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

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

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

.form-group label .required {
    color: var(--error);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-normal);
    background: var(--white);
    color: var(--black);
}

.form-control:focus {
    border-color: var(--primary-sea);
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
}

.form-control::placeholder {
    color: var(--medium-gray);
}

textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
}

.success-message {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 18px 22px;
    background: #d4edda;
    color: #155724;
    border-radius: var(--radius-sm);
    margin-top: 20px;
    animation: fadeIn 0.4s ease;
}

.success-message i {
    font-size: 1.5rem;
    color: var(--success);
}

.success-message--visible {
    display: flex;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta {
    background: var(--primary-gradient);
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: floatBg 15s ease-in-out infinite;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    animation: floatBg 20s ease-in-out infinite reverse;
}

.cta h2 {
    color: var(--white);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
}

.cta__buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__column h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer__column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.footer__column p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.footer__column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    padding: 5px 0;
    transition: var(--transition-normal);
}

.footer__column a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer__column .contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer__column .contact-info-item i {
    width: 20px;
    color: var(--primary-sea);
}

.footer__social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition-normal);
    padding: 0;
}

.footer__social a:hover {
    background: var(--primary-gradient);
    transform: translateY(-3px);
    padding-left: 0;
}

.footer__bottom {
    text-align: center;
    padding: 25px 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* ========================================
   CHAT BOT
   ======================================== */
.chat-bot {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    touch-action: none;
    user-select: none;
    cursor: grab;
}

.chat-bot:active {
    cursor: grabbing;
}

.chat-bot__toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: none;
    position: relative;
    z-index: 2;
}

.chat-bot__toggle:hover {
    transform: scale(1.08);
    box-shadow: var(--shadow-xl);
}

.chat-bot__container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    max-width: calc(100vw - 60px);
    max-height: 500px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    transform-origin: bottom right;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.chat-bot--left .chat-bot__container {
    right: auto;
    left: 30px;
    transform-origin: bottom left;
}

.chat-bot--top .chat-bot__container {
    bottom: auto;
    top: 100px;
    transform-origin: top right;
}

.chat-bot--top.chat-bot--left .chat-bot__container {
    transform-origin: top left;
}

.chat-bot__container--open {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.chat-bot__header {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.chat-bot__header h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.chat-bot__close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    transition: var(--transition-normal);
}

.chat-bot__close:hover {
    transform: rotate(90deg);
}

.chat-bot__messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--off-white);
    min-height: 200px;
    max-height: 350px;
}

.chat-bot__message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    line-height: 1.5;
    animation: fadeIn 0.3s ease;
    word-wrap: break-word;
}

.chat-bot__message--bot {
    background: var(--white);
    color: var(--black);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.chat-bot__message--user {
    background: var(--primary-gradient);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-bot__input {
    display: flex;
    padding: 12px 16px;
    border-top: 1px solid var(--light-gray);
    gap: 10px;
    background: var(--white);
    flex-shrink: 0;
}

.chat-bot__input input {
    flex: 1;
    padding: 10px 14px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-normal);
    min-width: 0;
}

.chat-bot__input input:focus {
    border-color: var(--primary-sea);
}

.chat-bot__input button {
    padding: 10px 16px;
    border: none;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.chat-bot__input button:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .chat-bot__container {
        width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
        right: 20px;
        bottom: 90px;
        max-height: 70vh;
    }
    
    .chat-bot--left .chat-bot__container {
        left: 20px;
        right: auto;
    }
    
    .chat-bot--top .chat-bot__container {
        top: 80px;
        bottom: auto;
    }
    
    .chat-bot__messages {
        max-height: 50vh;
        min-height: 150px;
    }
}

@media (max-width: 480px) {
    .chat-bot__container {
        width: calc(100vw - 30px);
        max-width: calc(100vw - 30px);
        right: 15px;
        bottom: 80px;
        max-height: 65vh;
    }
    
    .chat-bot--left .chat-bot__container {
        left: 15px;
        right: auto;
    }
    
    .chat-bot__messages {
        max-height: 45vh;
        min-height: 120px;
        padding: 15px;
    }
    
    .chat-bot__header h4 {
        font-size: 1rem;
    }
    
    .chat-bot__input {
        padding: 10px 12px;
    }
    
    .chat-bot__input input {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    
    .chat-bot__input button {
        padding: 8px 12px;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-slow);
}

.reveal--visible {
    opacity: 1;
    transform: translateY(0);
}

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

    .split-section__image img {
        height: 300px;
    }

    .service-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail--reverse .service-detail__image {
        order: 1;
    }

    .service-detail--reverse .service-detail__content {
        order: 2;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .mobile-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 80%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 25px 30px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition-normal);
        overflow-y: auto;
        align-items: stretch;
        gap: 0;
    }

    .nav--open {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
    }

    .nav__link {
        padding: 12px 16px;
        font-size: 0.9rem;
        border-radius: var(--radius-sm);
    }

    .nav__link--btn,
    .nav__link--call {
        text-align: center;
        margin-top: 5px;
        justify-content: center;
    }

    .hero {
        min-height: 90vh;
        padding: 100px 20px 60px;
    }

    .hero__title {
        font-size: clamp(2.2rem, 7vw, 3.2rem);
    }

    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .hero__stat-number {
        font-size: 1.8rem;
    }

    .info-cards {
        grid-template-columns: 1fr;
        margin-top: -40px;
    }

    .page-hero {
        padding: 130px 20px 60px;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .lightbox__nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .lightbox__nav--prev {
        left: 10px;
    }

    .lightbox__nav--next {
        right: 10px;
    }

    .lightbox__close {
        top: 15px;
        right: 20px;
        font-size: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta {
        padding: 60px 20px;
    }

    .cta__buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo__img {
        height: 36px;
    }

    .logo__text {
        font-size: 1rem;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .section-title p {
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .platform-grid {
        grid-template-columns: 1fr 1fr;
    }

    .info-card {
        padding: 25px 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .contact-form,
    .contact-info {
        padding: 25px 18px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.8rem;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .chat-bot__toggle {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

:focus-visible {
    outline: 3px solid var(--primary-sea);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-weight: 600;
}

.skip-link:focus {
    top: 20px;
}