/* 
========================================================================
   Majisa Web Services - Core Stylesheet
   Theme: Luxury Galactic Dark / Glassmorphism
   Fonts: Outfit (Headings) & Inter (Body)
======================================================================== 
*/

/* ----------------------------------------------------
   1. Fonts Ingestion
---------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ----------------------------------------------------
   2. Design System Variables
---------------------------------------------------- */
:root {
    /* Color Palette - Logo-Inspired Nebula Light Theme (Default) */
    --bg-main: #F8FAFC;
    /* Slate-50 main light background */
    --bg-darker: #F1F5F9;
    /* Slate-100 secondary background */
    --bg-card: rgba(255, 255, 255, 0.75);
    --bg-card-hover: rgba(255, 255, 255, 0.95);
    --header-bg: rgba(248, 250, 252, 0.85);
    --footer-bg: rgba(241, 245, 249, 0.8);

    --primary: #8B5CF6;
    /* Logo Violet/Purple */
    --primary-glow: rgba(139, 92, 246, 0.1);
    --secondary: #06B6D4;
    /* Logo Cyber Cyan */
    --secondary-glow: rgba(6, 182, 212, 0.1);
    --accent: #EC4899;
    /* Logo Magenta/Pink */
    --accent-glow: rgba(236, 72, 153, 0.1);
    --royal-blue: #2563EB;
    /* Logo Royal Blue */

    /* Complex brand gradient based directly on the logo's spectrum */
    --primary-gradient: linear-gradient(135deg, var(--secondary) 0%, var(--royal-blue) 40%, var(--primary) 75%, var(--accent) 100%);

    --text-primary: #0F172A;
    /* Slate-900 */
    --text-muted: #475569;
    /* Slate-600 */
    --text-dark: #334155;
    /* Slate-700 */
    --text-title: #0F172A;
    /* Slate-900 */
    --text-active: #8B5CF6;
    /* Purple link */
    --gradient-start: var(--primary);

    --border-color: rgba(139, 92, 246, 0.08);
    --border-glow: rgba(139, 92, 246, 0.2);
    --glass-border: rgba(255, 255, 255, 0.5);

    --btn-sec-bg: rgba(139, 92, 246, 0.05);
    --btn-sec-text: #8B5CF6;
    --btn-sec-border: rgba(139, 92, 246, 0.2);

    /* Layout & Shadows */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.03), 0 2px 4px -1px rgba(15, 23, 42, 0.02);
    --shadow-md: 0 10px 20px -3px rgba(15, 23, 42, 0.05), 0 4px 6px -2px rgba(15, 23, 42, 0.03);
    --shadow-lg: 0 20px 30px -5px rgba(15, 23, 42, 0.08), 0 10px 15px -5px rgba(15, 23, 42, 0.03);
    --shadow-glow: 0 0 25px var(--primary-glow);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.dark-mode {
    /* Color Palette - Logo-Inspired Dark Nebula Theme */
    --bg-main: #080612;
    /* Ultra-dark Purple/Black */
    --bg-darker: #0D091D;
    /* Deep Purple Midnight */
    --bg-card: rgba(18, 14, 33, 0.7);
    --bg-card-hover: rgba(28, 23, 49, 0.85);
    --header-bg: rgba(8, 6, 18, 0.85);
    --footer-bg: rgba(13, 9, 29, 0.8);

    --primary: #A78BFA;
    /* Glowing Purple */
    --primary-glow: rgba(167, 139, 250, 0.35);
    --secondary: #22D3EE;
    /* Glowing Cyber Cyan */
    --secondary-glow: rgba(34, 211, 238, 0.35);
    --accent: #F472B6;
    /* Glowing Magenta/Pink */
    --accent-glow: rgba(244, 114, 182, 0.3);
    --royal-blue: #3B82F6;

    --primary-gradient: linear-gradient(135deg, #22D3EE 0%, #3B82F6 40%, #A78BFA 75%, #F472B6 100%);

    --text-primary: #F8FAFC;
    /* Slate-50 */
    --text-muted: #94A3B8;
    /* Slate-400 */
    --text-dark: #CBD5E1;
    /* Slate-300 */
    --text-title: #FFFFFF;
    --text-active: #FFFFFF;
    --gradient-start: #FFFFFF;

    --border-color: rgba(167, 139, 250, 0.18);
    --border-glow: rgba(167, 139, 250, 0.35);
    --glass-border: rgba(255, 255, 255, 0.08);

    --btn-sec-bg: rgba(255, 255, 255, 0.04);
    --btn-sec-text: #FFFFFF;
    --btn-sec-border: rgba(255, 255, 255, 0.08);

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}

/* ----------------------------------------------------
   3. Document Resets & Base Styles
---------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-glow);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Ambient glow blobs in background */
.ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.08;
    mix-blend-mode: multiply;
    transition: opacity var(--transition-smooth), mix-blend-mode var(--transition-smooth);
}

.dark-mode .ambient-glow {
    opacity: 0.15;
    mix-blend-mode: screen;
}

.ambient-glow-1 {
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 80%);
    animation: floatBlob 20s infinite alternate;
}

.ambient-glow-2 {
    top: 600px;
    left: -200px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 80%);
    animation: floatBlob2 25s infinite alternate;
}

.ambient-glow-3 {
    bottom: 200px;
    right: -100px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 80%);
    animation: floatBlob 18s infinite alternate-reverse;
}

/* ----------------------------------------------------
   4. Typography & Common Classes
---------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-title);
}

p {
    color: var(--text-muted);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--gradient-start) 20%, var(--primary) 60%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-purple {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section {
    padding: 70px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
}

.tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-glow);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
}

/* ----------------------------------------------------
   5. Buttons & Links
---------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #FFF;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0F172A;
    /* Dark slate hover in light mode */
    opacity: 0;
    transition: opacity var(--transition-smooth);
    z-index: 1;
}

.btn-primary:hover {
    box-shadow: 0 6px 25px var(--primary-glow), 0 0 15px var(--secondary-glow);
    transform: translateY(-2px);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary>* {
    position: relative;
    z-index: 2;
}

.btn-secondary {
    background: var(--btn-sec-bg);
    color: var(--btn-sec-text);
    border: 1px solid var(--btn-sec-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #0F172A;
    /* Dark slate hover in light mode */
    border-color: #0F172A;
    color: #FFF;
    transform: translateY(-2px);
}

/* Dark Mode Button Hover Enhancements */
.dark-mode .btn-primary::after {
    background: #FFFFFF;
    /* Bright white hover in dark mode */
}

.dark-mode .btn-primary:hover {
    color: var(--bg-main) !important;
    /* Dark text on white hover */
}

.dark-mode .btn-primary:hover>* {
    color: var(--bg-main) !important;
}

.dark-mode .btn-secondary:hover {
    background: #FFFFFF;
    /* Bright white hover in dark mode */
    border-color: #FFFFFF;
    color: var(--bg-main) !important;
    /* Dark text on white hover */
}

/* ----------------------------------------------------
   6. Glassmorphism Cards & Layout grids
---------------------------------------------------- */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-6px);
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-lg), 0 0 20px var(--primary-glow);
}

/* ----------------------------------------------------
   7. Header / Navigation
---------------------------------------------------- */
header.main-header {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1200px;
    z-index: 1000;
    padding: 12px 24px;
    transition: var(--transition-smooth);
    border-radius: var(--radius-md);
    background: var(--header-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-sm);
}

header.main-header.scrolled {
    top: 8px;
    padding: 8px 24px;
    background: var(--header-bg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-title);
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-fast);
}

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

/* Nav Menu */
nav.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav.nav-menu a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding: 6px 0;
}

nav.nav-menu a:hover,
nav.nav-menu a.active {
    color: var(--text-active);
}

nav.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-smooth);
}

nav.nav-menu a:hover::after,
nav.nav-menu a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

#navCTA {
    padding: 10px 20px;
    font-size: 0.85rem;
    margin-left: 10px;
}

#navCTA::after {
    display: none !important;
}

/* Burger Button */
.burger-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    z-index: 1002;
    transition: var(--transition-fast);
}

.burger-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.burger-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Burger animation to X */
.burger-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

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

/* ----------------------------------------------------
   8. Home Page Sections
---------------------------------------------------- */

/* Hero Section */
.hero-section {
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    padding-top: 110px;
    padding-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 580px;
}

.hero-cta {
    display: flex;
    gap: 16px;
}

/* Animated visual artwork in Hero */
.hero-visual {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.artwork-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-sm);
    padding: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 6s ease-in-out infinite;
}

.artwork-card.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.artwork-card.card-2 {
    bottom: 15%;
    right: -10%;
    animation-delay: 3s;
}

.artwork-card .card-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.artwork-card .card-info h4 {
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.artwork-card .card-info p {
    font-size: 0.75rem;
    color: var(--secondary);
    font-weight: 600;
}

/* Feature grid items on Home */
.feature-box {
    display: flex;
    flex-direction: column;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.glass-card:hover .feature-icon {
    background: var(--primary);
    color: #FFF;
    box-shadow: 0 0 15px var(--primary-glow);
    transform: scale(1.1);
}

.feature-box h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.feature-box p {
    font-size: 0.95rem;
}

/* Services section quick cards */
.service-compact-card {
    text-align: left;
}

.service-compact-card .service-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    display: inline-block;
    color: var(--secondary);
}

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

.service-compact-card .btn-text {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.service-compact-card:hover .btn-text {
    color: var(--secondary);
}

.service-compact-card .btn-text svg {
    transition: transform var(--transition-fast);
}

.service-compact-card:hover .btn-text svg {
    transform: translateX(4px);
}

/* Stats Counter Section */
.stats-section {
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-darker) 100%);
    padding: 80px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

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

.stat-number {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: #FFF;
    margin-bottom: 10px;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--text-muted);
}

/* Testimonials Slider/Carousel styles */
.testimonials-slider {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.testimonials-track .testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    opacity: 0.3;
    transform: scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonials-track .testimonial-card.active {
    opacity: 1;
    transform: scale(1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid var(--border-color);
    cursor: pointer;
    padding: 0;
    transition: var(--transition-fast);
}

.slider-dots .dot:hover {
    background: rgba(139, 92, 246, 0.5);
}

.slider-dots .dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: var(--radius-full);
}

/* Testimonial Section */
.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-rating {
    color: #FBBF24;
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--secondary);
    border: 2px solid var(--border-color);
}

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

.testimonial-meta p {
    font-size: 0.8rem;
}

/* Call to Action banner */
.cta-banner {
    position: relative;
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--primary-glow) 0%, var(--secondary-glow) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 81, 0, 0.15) 0%, transparent 60%);
    z-index: -1;
}

.cta-banner h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 36px auto;
}

/* ----------------------------------------------------
   9. About Page Styles
---------------------------------------------------- */
.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-hero-image {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
}

.about-hero-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    filter: brightness(0.85);
    transition: var(--transition-slow);
}

.about-hero-image:hover img {
    transform: scale(1.05);
    filter: brightness(0.95);
}

/* Values section */
.value-card {
    text-align: center;
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 24px auto;
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon {
    background: var(--accent);
    color: #FFF;
    box-shadow: 0 0 20px var(--accent-glow);
    transform: rotateY(180deg);
}

/* Team section styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
    padding: 30px 20px;
}

.team-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto 24px auto;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 3px;
    box-shadow: var(--shadow-md);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: var(--bg-darker);
}

.team-card h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.team-card p {
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-social a {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.team-social a:hover {
    color: #FFF;
}

/* ----------------------------------------------------
   10. Services Page Styles
---------------------------------------------------- */
.service-detail-card {
    padding: 50px 40px;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.service-detail-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.service-detail-header h3 {
    font-size: 1.8rem;
}

.service-features-list {
    list-style: none;
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.service-features-list li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 900;
}

/* Process Timeline Section (Horizontal Straight Line Flow) */
.process-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 60px 0 20px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 22px;
    /* Centered with the 44px badge */
    left: 5%;
    width: 90%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 50%, var(--accent) 100%);
    opacity: 0.25;
    border-radius: var(--radius-full);
    z-index: 1;
}

.process-item {
    position: relative;
    width: 25%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    z-index: 2;
    padding: 60px 0 0 0 !important;
    margin: 0 !important;
}

.process-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-darker);
    border: 3px solid var(--primary);
    color: var(--text-title);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
    z-index: 10;
}

/* Dynamic color theme for alternating process badges */
.process-item:nth-child(odd) .process-badge {
    border-color: var(--secondary);
}

.process-item:nth-child(even) .process-badge {
    border-color: var(--accent);
}

.process-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 24px;
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    width: 100%;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.process-card h3 {
    margin-bottom: 8px;
    font-size: 1.25rem;
}

/* ----------------------------------------------------
   11. Portfolio Page Styles
---------------------------------------------------- */
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-muted);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: #FFF;
    border-color: var(--primary);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    transition: all var(--transition-smooth);
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}

.portfolio-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
    background: var(--bg-darker);
}

.portfolio-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(8, 12, 20, 0.95) 100%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.portfolio-item:hover .portfolio-img-wrapper img {
    transform: scale(1.08);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    padding: 24px;
}

.portfolio-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary);
    margin-bottom: 8px;
}

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

.portfolio-info p {
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #FFF;
    font-size: 0.85rem;
    font-weight: 600;
    border-bottom: 1px solid transparent;
}

.portfolio-link:hover {
    color: var(--secondary);
    border-color: var(--secondary);
}

/* ----------------------------------------------------
   12. Contact Page Styles
---------------------------------------------------- */
.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
}

.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.contact-info-text p,
.contact-info-text a {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.contact-info-text a:hover {
    color: #FFF;
}

/* Styled interactive map mockup */
.map-mockup {
    width: 100%;
    height: 250px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    margin-top: 20px;
    position: relative;
    background: linear-gradient(135deg, #151c2d 0%, #0b0f19 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-glow-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--secondary);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--secondary), 0 0 30px var(--secondary);
    animation: ripple 2s infinite;
}

.map-label {
    position: absolute;
    background: rgba(8, 12, 20, 0.9);
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group label {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.form-control {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    color: #FFF;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

.form-control:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

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

/* Alert Boxes */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideDown 0.4s ease-out;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #10B981;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #EF4444;
}

/* ----------------------------------------------------
   13. Footer Layout
---------------------------------------------------- */
footer.main-footer {
    background: var(--footer-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 80px 40px 30px 40px;
    position: relative;
    overflow: hidden;
    margin: 40px 4% 40px 4%;
    box-shadow: var(--shadow-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 1.15rem;
    margin-bottom: 24px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-col p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

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

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.footer-socials a:hover {
    background: var(--primary);
    color: #FFF;
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px var(--primary-glow);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #FFF;
    padding-left: 6px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    fill: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-policy {
    display: flex;
    gap: 20px;
}

.footer-policy a {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-policy a:hover {
    color: #FFF;
}

/* ----------------------------------------------------
   14. Animations & Keyframes
---------------------------------------------------- */
@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 30px) scale(1.1);
    }
}

@keyframes floatBlob2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-40px, 60px) scale(0.9);
    }
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.95;
    }

    50% {
        transform: scale(1.03);
        opacity: 1;
        box-shadow: 0 0 70px rgba(99, 102, 241, 0.55);
    }
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.4), 0 0 0 10px rgba(6, 182, 212, 0.2);
    }

    100% {
        box-shadow: 0 0 0 15px rgba(6, 182, 212, 0), 0 0 0 30px rgba(6, 182, 212, 0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Scroll Animation classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ----------------------------------------------------
   15. Mobile & Tablet Responsiveness
---------------------------------------------------- */

/* Laptop & Large Tablets */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }

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

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

    .hero-content h1 {
        font-size: 3.2rem;
    }

    .process-timeline {
        flex-direction: column;
        align-items: stretch;
        gap: 40px;
        padding: 40px 0;
    }

    .process-timeline::before {
        left: 20px;
        top: 0;
        transform: none;
        width: 4px;
        height: 100%;
    }

    .process-item {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        padding: 0 0 0 50px !important;
        margin: 0 !important;
    }

    .process-item .process-badge {
        left: 0 !important;
        top: 10px !important;
        bottom: auto !important;
        transform: none !important;
    }

    .process-item .process-card {
        margin: 0 !important;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Small Tablets & Mobile Devices (Responsiveness Overhaul) */
#tech-stack {
    margin-top: -20px;
}

@media (max-width: 992px) {
    .header-container {
        position: relative;
    }

    .burger-btn {
        display: flex;
        width: 36px;
        height: 36px;
        gap: 5px;
    }

    .burger-btn span {
        width: 20px;
    }

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

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

    /* Navigation Panel Overlay */
    nav.nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: var(--bg-card);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-right: 1px solid var(--border-color);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 40px 30px;
        gap: 24px;
        z-index: 999;
        transition: left 0.4s ease;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.05);
    }

    nav.nav-menu.open {
        left: 0;
    }

    nav.nav-menu a {
        font-size: 1.1rem;
        width: 100%;
        padding: 10px 0;
        color: var(--text-primary);
        border-bottom: 1px solid var(--border-color);
    }

    nav.nav-menu a::after {
        display: none;
    }

    nav.nav-menu a#navCTA {
        width: 100%;
        margin-left: 0 !important;
        margin-top: 12px;
        padding: 12px 24px;
        font-size: 0.95rem;
        text-align: center;
        border-bottom: none;
        justify-content: center;
    }

    /* Hero Grid Tablet Break */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
        margin-top: 20px;
    }

    /* Grids scaling down to 2 columns on tablets */
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    header.main-header {
        padding: 14px 0;
    }

    header.main-header.scrolled {
        padding: 10px 0;
    }

    .logo {
        font-size: 1.25rem;
        gap: 8px;
        white-space: nowrap;
    }

    .section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 2.1rem;
    }

    .cta-banner {
        padding: 50px 30px;
    }

    .cta-banner h2 {
        font-size: 2.1rem;
    }

    /* Stacking grids vertically on mobile */
    .grid-2,
    .grid-3,
    .grid-4,
    .portfolio-grid,
    .team-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Center all footer content on mobile */
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 32px;
    }
    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-socials {
        justify-content: center;
    }
    .footer-contact-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
    .footer-contact-item svg {
        margin-top: 0;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .footer-policy {
        justify-content: center;
    }

    /* Mobile Hero Fixes */
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-features {
        grid-template-columns: 1fr !important;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.15rem;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }

    .logo-icon svg {
        width: 16px;
        height: 16px;
    }

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

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

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

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================================================
   Theme Toggle, FAQ, and WhatsApp Widget Custom Styles
   ======================================================================== */

/* Theme Toggle Button */
.theme-toggle {
    background: transparent;
    border: 1px solid var(--border-color);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-title);
    transition: var(--transition-smooth);
    margin-left: 10px;
    outline: none;
}

.theme-toggle:hover {
    background: var(--btn-sec-bg);
    border-color: var(--primary);
    transform: scale(1.05);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    transition: transform 0.5s ease;
}

/* Hide sun icon in light mode, hide moon icon in dark mode */
html:not(.dark-mode) .theme-toggle .sun-icon {
    display: none;
}

html.dark-mode .theme-toggle .moon-icon {
    display: none;
}

html.dark-mode .theme-toggle svg {
    transform: rotate(360deg);
}

/* FAQ Accordion Styling */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.faq-item:hover {
    border-color: rgba(255, 81, 0, 0.25);
    background: var(--bg-card-hover);
}

.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-title);
    transition: var(--transition-fast);
    outline: none;
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--primary);
    transition: transform var(--transition-smooth), opacity var(--transition-smooth);
}

/* Horizontal line */
.faq-icon::before {
    width: 14px;
    height: 2px;
}

/* Vertical line */
.faq-icon::after {
    width: 2px;
    height: 14px;
}

/* Active FAQ Item styling */
.faq-item.active {
    border-color: rgba(255, 81, 0, 0.4);
    box-shadow: 0 10px 25px rgba(255, 81, 0, 0.05);
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-icon::before {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
}

.faq-content p {
    padding: 0 24px 24px 24px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* WhatsApp Floating Action Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
}

.whatsapp-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    background-color: #20BA5A;
}

.whatsapp-btn svg {
    width: 30px;
    height: 30px;
}

/* Map Mockup Dark Filter handling */
.map-mockup iframe {
    border: 0;
    transition: filter var(--transition-smooth);
}

.dark-mode .map-mockup iframe {
    filter: grayscale(1) invert(0.9) contrast(1.2) opacity(0.85);
}

@media (max-width: 768px) {
    .ambient-glow {
        width: 280px;
        height: 280px;
        filter: blur(80px);
    }

    .theme-toggle {
        margin-left: auto;
        margin-right: 10px;
        width: 36px;
        height: 36px;
    }

    .faq-trigger {
        padding: 18px 20px;
        font-size: 1rem;
    }

    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* Responsive maps iframe styling */
.map-iframe {
    width: 100%;
    height: 450px;
    display: block;
}
@media (max-width: 768px) {
    .map-iframe {
        height: 300px;
    }
}