/**
 * The Printing Solution - Premium Colorful Design
 * High Quality with Powerful Animations
 */

/* ==================== CSS Variables ==================== */
:root {
    /* Vibrant Primary Colors */
    --primary: #6366f1;
    --primary-light: #818cf8;
    --primary-dark: #4f46e5;
    --secondary: #ec4899;
    --secondary-light: #f472b6;
    --accent: #06b6d4;
    --accent-light: #22d3ee;

    /* Rainbow Palette */
    --color-red: #ef4444;
    --color-orange: #f97316;
    --color-yellow: #eab308;
    --color-green: #22c55e;
    --color-teal: #14b8a6;
    --color-blue: #3b82f6;
    --color-indigo: #6366f1;
    --color-purple: #a855f7;
    --color-pink: #ec4899;

    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #0ea5e9;

    /* Premium Gradients */
    --gradient-rainbow: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
    --gradient-sunset: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --gradient-ocean: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-fire: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-neon: linear-gradient(135deg, #00f5a0 0%, #00d9f5 100%);
    --gradient-purple: linear-gradient(135deg, #a855f7 0%, #6366f1 100%);
    --gradient-gold: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, #6366f1 0px, transparent 50%), radial-gradient(at 80% 0%, #ec4899 0px, transparent 50%), radial-gradient(at 0% 50%, #06b6d4 0px, transparent 50%), radial-gradient(at 80% 50%, #f97316 0px, transparent 50%), radial-gradient(at 0% 100%, #22c55e 0px, transparent 50%), radial-gradient(at 80% 100%, #a855f7 0px, transparent 50%);

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Poppins', var(--font-family);

    /* Sizing */
    --container-max: 1400px;
    --header-height: 140px;
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --border-radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 60px rgba(99, 102, 241, 0.4);
    --shadow-glow-pink: 0 0 60px rgba(236, 72, 153, 0.4);
    --shadow-glow-cyan: 0 0 60px rgba(6, 182, 212, 0.4);

    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ==================== Animations Keyframes ==================== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.4); }
    50% { box-shadow: 0 0 40px rgba(99, 102, 241, 0.8); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bounce-in {
    0% { transform: scale(0.3); opacity: 0; }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes slide-up {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slide-down {
    from { transform: translateY(-100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slide-left {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slide-right {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes blob {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

@keyframes text-shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes ripple {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(4); opacity: 0; }
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

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

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

body {
    font-family: var(--font-family);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

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

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

.section-sm {
    padding: 80px 0;
}

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

.bg-light {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
}

.bg-gradient {
    background: var(--gradient-mesh), var(--gray-900);
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
}

.text-gradient {
    background: var(--gradient-ocean);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
    border-radius: var(--border-radius-full);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.text-shimmer {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 25%, var(--accent) 50%, var(--secondary) 75%, var(--primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-shimmer 3s linear infinite;
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius-full);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-ocean);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    background: var(--gradient-fire);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.5);
}

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

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

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-lg {
    padding: 20px 40px;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
}

/* ==================== Cards ==================== */
.card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

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

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

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

/* ==================== Page Loader ==================== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-mesh), var(--white);
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading-overlay.hide {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 60px;
    height: 60px;
    border: 4px solid transparent;
    border-top-color: var(--primary);
    border-right-color: var(--secondary);
    border-radius: 50%;
    animation: spin-slow 1s linear infinite;
    position: relative;
}

.loader::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 4px solid transparent;
    border-bottom-color: var(--accent);
    border-left-color: var(--color-yellow);
    border-radius: 50%;
    animation: spin-slow 0.5s linear infinite reverse;
}

/* ==================== Header ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.8) 0%, transparent 100%);
    pointer-events: none;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.header.scrolled::before {
    display: none;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    z-index: 10;
}

.logo img {
    height: 100px;
    width: auto;
}

.logo i {
    font-size: 2rem;
    background: var(--gradient-ocean);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header.scrolled .logo {
    color: var(--gray-900);
}

/* ==================== Navigation ==================== */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu > a,
.nav-menu > .nav-link,
.nav-dropdown > .nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 18px;
    position: relative;
    transition: var(--transition);
    border-radius: 0;
    background: transparent;
}

.nav-menu > a::after,
.nav-menu > .nav-link::after,
.nav-dropdown > .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-ocean);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu > a:hover::after,
.nav-menu > .nav-link:hover::after,
.nav-dropdown:hover > .nav-link::after,
.nav-menu > a.active::after {
    width: 80%;
}

.nav-menu > a:hover,
.nav-menu > .nav-link:hover,
.nav-dropdown:hover > .nav-link,
.nav-menu > a.active {
    color: var(--white);
    background: transparent;
}

.header.scrolled .nav-menu > a,
.header.scrolled .nav-menu > .nav-link,
.header.scrolled .nav-dropdown > .nav-link {
    color: var(--gray-700);
}

.header.scrolled .nav-menu > a:hover,
.header.scrolled .nav-menu > .nav-link:hover,
.header.scrolled .nav-dropdown:hover > .nav-link,
.header.scrolled .nav-menu > a.active {
    color: var(--primary);
    background: transparent;
}

/* ==================== Dropdown Menu ==================== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > .nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 10px;
    transition: var(--transition);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 240px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: var(--gray-700);
    font-weight: 500;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--gradient-ocean);
    color: var(--white);
    transform: translateX(5px);
}

.dropdown-item i {
    width: 20px;
    font-size: 16px;
}

/* Nested Submenu */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .submenu-arrow {
    margin-left: auto;
    font-size: 10px;
}

.submenu {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition);
}

.dropdown-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(5px);
}

/* ==================== Header CTA ==================== */
.header-cta .btn {
    padding: 14px 28px;
    animation: pulse-glow 2s infinite;
}

/* ==================== Mobile Menu Toggle ==================== */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.header.scrolled .mobile-toggle span {
    background: var(--gray-800);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ==================== Hero Section ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-mesh), var(--gray-900);
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
    padding-top: var(--header-height);
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--gradient-fire);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    top: -200px;
    right: -200px;
    animation: blob 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--gradient-neon);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    bottom: -200px;
    left: -200px;
    animation: blob 10s ease-in-out infinite reverse;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-full);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slide-down 0.8s ease;
}

.hero-badge i {
    color: var(--color-yellow);
    animation: shake 2s infinite;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 25px;
    display: block;
    animation: slide-up 0.8s ease 0.2s both;
}

.hero-content h1 span {
    display: block;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 10px;
}

.hero-content > p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    margin-top: 0;
    max-width: 600px;
    line-height: 1.7;
    animation: slide-up 0.8s ease 0.4s both;
}

/* Hero Feature Badge - Center Right */
.hero-feature-badge {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fade-in 1s ease 0.8s both;
    z-index: 10;
    transition: all 0.3s ease;
}

.hero-feature-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-feature-badge img {
    width: 120px;
    height: auto;
    filter: invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.hero-feature-badge span {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: slide-up 0.8s ease 0.6s both;
}

.hero-stats {
    display: flex;
    gap: 60px;
    margin-top: 80px;
    animation: slide-up 0.8s ease 0.8s both;
}

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

.hero-stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* ==================== Section Headers ==================== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border-radius: var(--border-radius-full);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient-ocean);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--gray-500);
}

/* ==================== Services Section ==================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

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

.service-card:nth-child(2)::before { background: var(--gradient-fire); }
.service-card:nth-child(3)::before { background: var(--gradient-sunset); }
.service-card:nth-child(4)::before { background: var(--gradient-neon); }
.service-card:nth-child(5)::before { background: var(--gradient-purple); }
.service-card:nth-child(6)::before { background: var(--gradient-gold); }

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-ocean);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 25px;
    transition: var(--transition);
}

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

.service-card:nth-child(2) .service-icon { background: var(--gradient-fire); }
.service-card:nth-child(3) .service-icon { background: var(--gradient-sunset); }
.service-card:nth-child(4) .service-icon { background: var(--gradient-neon); }
.service-card:nth-child(5) .service-icon { background: var(--gradient-purple); }
.service-card:nth-child(6) .service-icon { background: var(--gradient-gold); }

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--gray-900);
}

.service-card p {
    color: var(--gray-500);
    margin-bottom: 20px;
}

.service-card .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-card .price small {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gray-500);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
    color: var(--secondary);
}

/* ==================== Gallery Section ==================== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 28px;
    background: var(--gray-100);
    border-radius: var(--border-radius-full);
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition);
    border: 2px solid transparent;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-ocean);
    color: var(--white);
    transform: translateY(-2px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

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

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.9) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 15px;
    display: block;
}

.gallery-overlay span {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ==================== About Section ==================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

.about-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-ocean);
    border-radius: var(--border-radius-lg);
    top: 30px;
    left: 30px;
    z-index: -1;
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.about-badge-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-ocean);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-badge-text {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--gray-600);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.about-feature:hover {
    background: var(--gradient-ocean);
    transform: translateX(10px);
}

.about-feature:hover i,
.about-feature:hover span {
    color: var(--white);
}

.about-feature i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.about-feature span {
    font-weight: 600;
    color: var(--gray-700);
    transition: var(--transition);
}

/* ==================== Features / Why Choose Us ==================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-ocean);
    transform: scaleX(0);
    transition: var(--transition);
}

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

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

.feature-card:nth-child(2)::before { background: var(--gradient-fire); }
.feature-card:nth-child(3)::before { background: var(--gradient-sunset); }
.feature-card:nth-child(4)::before { background: var(--gradient-neon); }

.feature-card i {
    font-size: 3rem;
    background: var(--gradient-ocean);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    display: block;
    transition: var(--transition);
}

.feature-card:nth-child(2) i {
    background: var(--gradient-fire);
    -webkit-background-clip: text;
}

.feature-card:nth-child(3) i {
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
}

.feature-card:nth-child(4) i {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
}

.feature-card:hover i {
    transform: scale(1.2);
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--gray-900);
}

.feature-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==================== CTA Section ==================== */
.cta-section {
    background: var(--gradient-mesh), var(--gray-900);
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--gradient-fire);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.3;
    top: -200px;
    right: -200px;
    animation: blob 8s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--gradient-neon);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.3;
    bottom: -200px;
    left: -200px;
    animation: blob 10s ease-in-out infinite reverse;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

/* ==================== Stats Section ==================== */
.stats-section {
    background: var(--gradient-mesh), var(--gray-900);
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--gradient-ocean);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.3;
    top: -100px;
    left: -100px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.stat-icon i {
    font-size: 2rem;
    color: var(--white);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
    background: var(--gradient-ocean);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ==================== Testimonials Section ==================== */
.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    display: none;
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    text-align: center;
    animation: fade-in 0.5s ease;
}

.testimonial-card.active {
    display: block;
}

.testimonial-rating {
    margin-bottom: 25px;
}

.testimonial-rating i {
    color: var(--color-yellow);
    font-size: 1.25rem;
    margin: 0 3px;
}

.testimonial-text {
    font-size: 1.25rem;
    color: var(--gray-700);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-ocean);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar i {
    font-size: 1.5rem;
    color: var(--white);
}

.testimonial-info h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--gray-900);
}

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

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

.testimonials-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.testimonials-dots .dot.active,
.testimonials-dots .dot:hover {
    background: var(--gradient-ocean);
    transform: scale(1.2);
}

/* ==================== About Placeholders ==================== */
.about-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--gradient-ocean);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-placeholder i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.5);
}

.about-description {
    color: var(--gray-600);
    margin-bottom: 30px;
}

.about-description p {
    margin-bottom: 15px;
}

.lead {
    font-size: 1.15rem;
    color: var(--gray-600);
    margin-bottom: 20px;
}

/* ==================== Gallery Placeholders ==================== */
.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-placeholder i {
    font-size: 3rem;
    color: var(--gray-400);
}

/* ==================== Contact Social ==================== */
.contact-social {
    margin-top: 30px;
}

.contact-social h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--gray-700);
}

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

.social-links-dark a {
    width: 45px;
    height: 45px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: var(--transition);
}

.social-links-dark a:hover {
    background: var(--gradient-ocean);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

.contact-item-text h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--gray-800);
}

.contact-item-text p {
    color: var(--gray-600);
    margin: 0;
}

.contact-item-text a {
    color: var(--primary);
}

.contact-item-text a:hover {
    color: var(--secondary);
}

/* ==================== Map Section ==================== */
.map-section {
    position: relative;
}

.map-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(20%);
    transition: var(--transition);
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

/* ==================== Button Block ==================== */
.btn-block {
    width: 100%;
}

/* ==================== Contact Section ==================== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--gray-600);
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateX(10px);
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-ocean);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-item p,
.contact-item a {
    color: var(--gray-600);
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

/* ==================== Forms ==================== */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 10px;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

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

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

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

/* ==================== Footer ==================== */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 100px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--gradient-ocean);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.1;
    top: -200px;
    right: -200px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 2rem;
    background: var(--gradient-ocean);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    margin-bottom: 30px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gradient-ocean);
    transform: translateY(-5px);
}

/* Social Links (alias for footer-social) */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient-ocean);
    transform: translateY(-5px);
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 25px;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column a {
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--white);
    padding-left: 10px;
}

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

/* ==================== Developer Credit ==================== */
.developer-credit {
    text-align: center;
    padding: 25px 0 10px;
    margin-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.developer-credit p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.developer-credit i.fa-heart {
    color: #ec4899;
    animation: heartbeat 1.5s ease infinite;
}

.developer-credit i.fa-code {
    color: #06b6d4;
}

.developer-credit a {
    color: #ec4899;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
}

.developer-credit a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ec4899, #f472b6);
    transition: width 0.3s ease;
}

.developer-credit a:hover {
    color: #f472b6;
    text-shadow: 0 0 20px rgba(236, 72, 153, 0.5);
}

.developer-credit a:hover::after {
    width: 100%;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
    75% { transform: scale(1.2); }
}

/* ==================== WhatsApp Button ==================== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse-glow 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.5);
}

/* ==================== Page Banner ==================== */
.page-banner {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-mesh), var(--gray-900);
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
    text-align: center;
    padding: 150px 0 100px;
    position: relative;
}

.page-banner h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs a:hover {
    color: var(--white);
}

.breadcrumbs i {
    font-size: 0.75rem;
}

/* ==================== Alerts ==================== */
.alert {
    padding: 16px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.alert-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border-left: 4px solid var(--success);
    color: var(--success);
}

.alert-danger {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    border-left: 4px solid var(--danger);
    color: var(--danger);
}

/* ==================== Animations Classes ==================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ==================== Responsive ==================== */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

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

    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 120px;
    }

    .logo img {
        height: 80px;
    }

    .section {
        padding: 80px 0;
    }

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

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .hero-content h1 span {
        margin-top: 8px;
    }

    .hero-content > p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-feature-badge {
        top: auto;
        bottom: 20px;
        right: 20px;
        transform: none;
        padding: 12px;
        gap: 6px;
    }

    .hero-feature-badge:hover {
        transform: scale(1.05);
    }

    .hero-feature-badge img {
        width: 60px;
    }

    .hero-feature-badge span {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 30px;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        padding: 40px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu > a,
    .nav-menu > .nav-link,
    .nav-dropdown > .nav-link {
        font-size: 1.25rem;
        color: var(--gray-800);
        padding: 15px 20px;
        width: 100%;
    }

    .nav-menu > a:hover,
    .nav-dropdown > .nav-link:hover {
        background: var(--gray-100);
        color: var(--primary);
    }

    /* Mobile Dropdown */
    .nav-dropdown {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        background: var(--gray-50);
        border-radius: var(--border-radius);
        margin-top: 10px;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        padding: 0;
        transition: max-height 0.3s ease;
    }

    .dropdown-menu::before {
        display: none;
    }

    .nav-dropdown.open .dropdown-menu {
        max-height: 500px;
        padding: 10px;
    }

    .dropdown-item:hover {
        transform: none;
    }

    .submenu {
        position: static;
        transform: none;
        margin: 10px;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
    }

    .dropdown-submenu.open .submenu {
        max-height: 300px;
        padding: 10px;
    }

    .header-cta {
        display: none;
    }

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

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

    .about-features {
        grid-template-columns: 1fr;
    }

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

    .page-banner h1 {
        font-size: 2.5rem;
    }

    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    :root {
        --header-height: 110px;
    }

    .logo img {
        height: 70px;
    }

    .container {
        padding: 0 16px;
    }

    .hero-content h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

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

    .hero-content > p {
        font-size: 0.95rem;
    }

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

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

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

    .btn-lg {
        padding: 16px 28px;
        font-size: 1rem;
    }
}
