/* Holland IT Solutions CSS - Professional Red & Blue Theme */

/* CSS Custom Properties (Variables) */
:root {
    --primary-red: #DC3545;
    --primary-blue: #2B5CE6;
    --dark-blue: #1E3A8A;
    --light-blue: #3B82F6;
    --accent-red: #E53E3E;
    --light-red: #FED7D7;
    --dark-gray: #2D3748;
    --medium-gray: #4A5568;
    --light-gray: #E2E8F0;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --text-dark: #1A202C;
    --text-medium: #4A5568;
    --text-light: #718096;
    --border-light: #E2E8F0;
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(43, 92, 230, 0.3);
    --shadow-red-glow: 0 0 20px rgba(220, 53, 69, 0.3);
    --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    --gradient-secondary: linear-gradient(135deg, var(--primary-red), var(--accent-red));
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    --backdrop-blur: blur(10px);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Loading Animation */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.loader-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-medium);
    margin-top: 1rem;
}

.loading-dots {
    display: inline-block;
}

.loading-dots::after {
    content: '';
    animation: dots 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes dots {
    0%, 20% {
        content: '.';
    }
    40% {
        content: '..';
    }
    60%, 100% {
        content: '...';
    }
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    overflow-x: hidden;
    position: relative;
}

/* Dynamic Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(43, 92, 230, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(220, 53, 69, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(43, 92, 230, 0.03) 0%, transparent 70%);
    animation: backgroundShift 20s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 10% 10%, rgba(43, 92, 230, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(220, 53, 69, 0.02) 0%, transparent 40%);
    animation: backgroundRotate 30s linear infinite;
    z-index: -2;
    pointer-events: none;
}

@keyframes backgroundShift {
    0%, 100% {
        background: 
            radial-gradient(circle at 20% 80%, rgba(43, 92, 230, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(220, 53, 69, 0.05) 0%, transparent 50%);
    }
    50% {
        background: 
            radial-gradient(circle at 80% 20%, rgba(43, 92, 230, 0.08) 0%, transparent 60%),
            radial-gradient(circle at 20% 80%, rgba(220, 53, 69, 0.08) 0%, transparent 60%);
    }
}

@keyframes backgroundRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-blue);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: var(--border-radius);
    z-index: 9999;
    transition: var(--transition-smooth);
}

.skip-link:focus {
    top: 6px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    text-rendering: optimizeLegibility;
}

h1 { 
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
}

h2 { 
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    letter-spacing: -0.03em;
}

h3 { 
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

h4 { 
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
}

h5 { 
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    font-weight: 500;
}

h6 { 
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.7;
    font-weight: 400;
}

/* Enhanced text styles */
.text-gradient {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-red {
    background: var(--gradient-secondary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.text-lg {
    font-size: 1.125rem;
    font-weight: 500;
}

.text-xl {
    font-size: 1.25rem;
    font-weight: 600;
}

/* Link styles */
a {
    text-decoration: none;
    color: var(--primary-blue);
    transition: var(--transition-smooth);
    position: relative;
}

a:hover {
    color: var(--dark-blue);
}

/* Animated underline for links */
a.underline-animate {
    position: relative;
}

a.underline-animate::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
}

a.underline-animate:hover::after {
    width: 100%;
}

/* Quote styles */
blockquote {
    border-left: 4px solid var(--primary-blue);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: rgba(43, 92, 230, 0.05);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-style: italic;
    color: var(--text-medium);
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.highlight {
    color: var(--primary-red);
    font-weight: 700;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.8s ease-out;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: slideIn 0.8s ease-out 0.3s both, titleGlow 3s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(43, 92, 230, 0.5);
}

@keyframes titleGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(43, 92, 230, 0.5);
        transform: translateX(-50%) scaleX(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(43, 92, 230, 0.8);
        transform: translateX(-50%) scaleX(1.1);
    }
}

/* (Magnetic hover effects and custom cursor removed) */

/* Sparkle Animation */
@keyframes sparkleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    15% {
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }
    85% {
        opacity: 1;
        transform: translateY(-100px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-120px) scale(0);
    }
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: var(--shadow-medium);
    }
    50% {
        box-shadow: var(--shadow-glow);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: var(--transition-smooth);
}

.animate-slide-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition-smooth);
}

.animate-slide-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.animate-zoom-in {
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition-smooth);
}

.animate-zoom-in.animate {
    opacity: 1;
    transform: scale(1);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition-bounce);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: var(--white);
    box-shadow: var(--shadow-medium);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(220, 53, 69, 0.4),
        0 0 30px rgba(220, 53, 69, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: var(--white);
    animation: buttonGlow 2s ease-in-out infinite;
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-medium);
    border: 2px solid transparent;
}

.btn-secondary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(43, 92, 230, 0.4),
        0 0 30px rgba(43, 92, 230, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: var(--white);
    animation: buttonGlow 2s ease-in-out infinite;
}

@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 
            0 15px 40px rgba(43, 92, 230, 0.4),
            0 0 30px rgba(43, 92, 230, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 
            0 20px 60px rgba(43, 92, 230, 0.6),
            0 0 50px rgba(43, 92, 230, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
}

.btn-secondary:active {
    transform: translateY(-1px) scale(0.98);
}

/* Emergency Support Banner */
.emergency-banner {
    background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
    color: var(--white);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    box-shadow: 
        0 2px 15px rgba(220, 53, 69, 0.4),
        0 0 30px rgba(220, 53, 69, 0.2);
    animation: emergencyPulse 2s infinite, emergencyGlow 3s ease-in-out infinite;
    overflow: hidden;
}

.emergency-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: emergencyShine 3s ease-in-out infinite;
}

@keyframes emergencyGlow {
    0%, 100% {
        box-shadow: 
            0 2px 15px rgba(220, 53, 69, 0.4),
            0 0 30px rgba(220, 53, 69, 0.2);
    }
    50% {
        box-shadow: 
            0 2px 25px rgba(220, 53, 69, 0.6),
            0 0 50px rgba(220, 53, 69, 0.4);
    }
}

@keyframes emergencyShine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes emergencyPulse {
    0%, 100% { 
        box-shadow: 0 2px 10px rgba(220, 53, 69, 0.3); 
    }
    50% { 
        box-shadow: 0 2px 20px rgba(220, 53, 69, 0.5); 
    }
}

.emergency-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.emergency-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    justify-content: center;
}

.emergency-icon {
    font-size: 1.2rem;
    animation: emergencyBlink 1.5s infinite;
}

@keyframes emergencyBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.emergency-text {
    font-size: 1rem;
    font-weight: 500;
}

.emergency-phone {
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    transition: background 0.3s ease;
}

.emergency-phone:hover {
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.emergency-phone-icon {
    font-size: 1.1rem;
    animation: emergencyRing 2s infinite;
}

@keyframes emergencyRing {
    0%, 20%, 40%, 60%, 80%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(15deg); }
}

.emergency-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.emergency-close:hover {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
    transform: scale(1.1);
}

.copy-btn--emergency {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-left: 0.5rem;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 6px;
    background: rgba(255,255,255,0.12);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.copy-btn--emergency:hover {
    background: rgba(255,255,255,0.22);
}

.copy-btn--emergency.copied {
    background: var(--white);
    color: var(--primary-red);
}

/* Popular badge */
.popular-badge {
    display: inline-block;
    background: var(--gradient-secondary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(220, 53, 69, 0.2);
}
/* Navigation */
.navbar {
    position: fixed;
    top: 60px; /* Position below emergency banner */
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-medium);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.emergency-hidden {
    top: 0; /* Move to top when emergency banner is hidden */
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    height: 50px;
    width: auto;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.75rem 1rem;
    position: relative;
    transition: var(--transition-smooth);
    border-radius: var(--border-radius);
    background: transparent;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: var(--transition-smooth);
    z-index: -1;
    border-radius: var(--border-radius);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-secondary);
    transition: var(--transition-smooth);
    border-radius: 1px;
}

.nav-link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--primary-blue);
    background: rgba(43, 92, 230, 0.1);
}

.nav-link.active::after {
    width: 80%;
    background: var(--primary-blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 180px 0 80px; /* Increased top padding for emergency banner + navbar */
    background: 
        radial-gradient(ellipse at top, rgba(43, 92, 230, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, var(--off-white) 0%, #f1f5f9 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(43, 92, 230, 0.12) 0%, rgba(43, 92, 230, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite, pulse 4s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 60%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.03) 40%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse, glow 3s ease-in-out infinite;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-blue) 50%, var(--primary-red) 100%);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out 0.2s both, gradientShift 4s ease-in-out infinite, textGlow 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
}

@keyframes textGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(43, 92, 230, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(43, 92, 230, 0.6)) drop-shadow(0 0 30px rgba(220, 53, 69, 0.4));
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-image {
    text-align: center;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-logo {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: var(--transition-smooth);
    animation: float 4s ease-in-out infinite;
}

.hero-logo:hover {
    filter: drop-shadow(0 25px 50px rgba(43, 92, 230, 0.2));
    transform: scale(1.05);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--white);
}

/* Service Categories */
.service-categories {
    margin-top: 3rem;
}

.service-category {
    margin-bottom: 4rem;
}

.category-title {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(43, 92, 230, 0.05);
    border-left: 4px solid var(--primary-blue);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.category-title i {
    color: var(--primary-red);
}

/* Services Call-to-Action */
.services-cta {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--primary-blue);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    margin-top: 3rem;
    text-align: center;
    box-shadow: 
        0 15px 40px rgba(43, 92, 230, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 1;
}

.services-cta::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(43, 92, 230, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.cta-header i {
    color: var(--primary-red);
    font-size: 1.5rem;
}

.cta-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    color: var(--primary-blue);
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.75rem;
    color: var(--text-medium);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.cta-highlights {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.highlight-item i {
    color: var(--primary-red);
    font-size: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-buttons .btn {
    min-width: 200px;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: var(--gradient-secondary);
    border: none;
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(220, 53, 69, 0.4);
}

.cta-buttons .btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.cta-buttons .btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(43, 92, 230, 0.4);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(43, 92, 230, 0.15);
    position: relative;
    z-index: 2;
}

.cta-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
    padding: 0.75rem 1rem;
    background: rgba(43, 92, 230, 0.04);
    border-radius: var(--border-radius);
    min-width: 110px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cta-feature:hover {
    background: rgba(43, 92, 230, 0.08);
    transform: translateY(-1px);
}

.cta-feature i {
    font-size: 1.25rem;
    color: var(--primary-blue);
    background: rgba(43, 92, 230, 0.1);
    padding: 0.75rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-feature span {
    font-size: 0.95rem;
    font-weight: 600;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .service-categories {
        margin-top: 2rem;
    }
    
    .service-category {
        margin-bottom: 3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card.enhanced {
        min-height: auto;
        padding: 2rem 1.5rem;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .popular-flag {
        padding: 0.25rem 0.75rem;
        font-size: 0.7rem;
    }
    
    .service-features li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
    

    
    .service-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .services-cta {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
    
    .cta-header {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .cta-header i {
        font-size: 1.25rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .cta-highlights {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .highlight-item {
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons .btn {
        min-width: 260px;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .cta-features {
        gap: 1rem;
        padding-top: 1.25rem;
    }
    
    .cta-feature {
        min-width: 100px;
        padding: 0.6rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .cta-feature i {
        font-size: 1.1rem;
    }
    
    .cta-feature {
        min-width: auto;
        padding: 1.5rem 1rem;
    }
    
    .cta-feature i {
        font-size: 1.5rem;
        width: 45px;
        height: 45px;
    }
    
    .pricing-info-box {
        margin: 1.5rem auto 1rem;
        max-width: 95%;
    }
    
    .pricing-header {
        padding: 1rem 1.25rem 0.875rem;
        gap: 0.6rem;
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .pricing-title h3 {
        font-size: 1.2rem;
    }
    
    .pricing-subtitle {
        font-size: 0.75rem;
    }
    
    .pricing-content {
        padding: 1.25rem;
    }
    
    .base-rate {
        padding: 0.875rem 1rem;
        margin-bottom: 1rem;
    }
    
    .rate-amount {
        font-size: 1.8rem;
    }
    
    .pricing-factors h4 {
        font-size: 0.9rem;
        margin-bottom: 0.875rem;
    }
    
    .factors-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .factor-item {
        padding: 0.6rem;
    }
    
    .factor-content strong {
        font-size: 0.8rem;
    }
    
    .factor-content span {
        font-size: 0.7rem;
    }
    
    .pricing-cta {
        padding: 0.6rem 0.875rem;
        font-size: 0.8rem;
    }
}

/* Compact Pricing Information Box */
.pricing-info-box {
    background: rgba(248, 250, 255, 0.6);
    border: 1px solid rgba(43, 92, 230, 0.15);
    border-radius: var(--border-radius);
    padding: 0;
    margin: 2rem auto 1.5rem;
    max-width: 700px;
    box-shadow: 
        0 8px 20px rgba(43, 92, 230, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    overflow: hidden;
    position: relative;
}

.pricing-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.7;
}

.pricing-header {
    background: linear-gradient(135deg, rgba(43, 92, 230, 0.9), rgba(43, 92, 230, 0.8));
    color: var(--white);
    padding: 1.25rem 1.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.pricing-icon {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pricing-title h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color: var(--white);
}

.pricing-subtitle {
    font-size: 0.8rem;
    opacity: 0.85;
    margin: 0.2rem 0 0;
    color: var(--white);
}

.pricing-content {
    padding: 1.5rem;
}

.base-rate {
    background: rgba(43, 92, 230, 0.04);
    border: 1px solid rgba(43, 92, 230, 0.08);
    border-radius: var(--border-radius);
    padding: 1rem 1.25rem;
    text-align: center;
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.rate-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.rate-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.rate-unit {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.75;
}

.pricing-factors h4 {
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    text-align: center;
    font-weight: 500;
}

.factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.factor-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem;
    background: rgba(43, 92, 230, 0.025);
    border: 1px solid rgba(43, 92, 230, 0.06);
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
}

.factor-item:hover {
    background: rgba(43, 92, 230, 0.05);
    transform: none;
}

.factor-item i {
    color: var(--primary-red);
    font-size: 1rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.factor-content {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.factor-content strong {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.85rem;
}

.factor-content span {
    color: var(--text-medium);
    font-size: 0.75rem;
}

.pricing-cta {
    background: rgba(43, 92, 230, 0.04);
    border: 1px solid rgba(43, 92, 230, 0.1);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-medium);
    font-weight: 400;
    text-align: center;
    font-size: 0.85rem;
    justify-content: center;
}

.pricing-cta i {
    color: var(--primary-blue);
    font-size: 1rem;
}

.pricing-content h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-content p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pricing-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-content li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-medium);
    font-size: 1rem;
}

.pricing-content li i {
    color: var(--primary-red);
    min-width: 20px;
}

/* Category Headers */
.category-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.category-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(43, 92, 230, 0.1) 0%, rgba(220, 53, 69, 0.05) 100%);
    border-radius: 50%;
    z-index: -1;
}

.category-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.category-description {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: var(--transition-bounce);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

/* Enhanced Service Cards */
.service-card.enhanced {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.service-card.enhanced h3 {
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.service-card.enhanced > p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

/* Popular and Featured Cards */
.service-card.popular {
    border: 2px solid var(--primary-red);
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.05) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.service-card.featured {
    border: 2px solid var(--primary-blue);
    background: linear-gradient(135deg, rgba(43, 92, 230, 0.05) 0%, rgba(255, 255, 255, 0.9) 100%);
    transform: scale(1.02);
}

/* Popular Flag */
.popular-flag {
    position: absolute;
    top: -1px;
    right: -1px;
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0 var(--border-radius-lg) 0 var(--border-radius);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

/* Service Features List */
.service-features {
    margin: 1.5rem 0;
    flex-grow: 1;
}

.service-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-medium);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    color: var(--primary-blue);
    font-size: 0.8rem;
    width: 16px;
    flex-shrink: 0;
}

/* Service Price - Removed pricing display */

/* Service Buttons */
.service-btn {
    display: block;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    padding: 0.875rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition-bounce);
    margin-top: auto;
    box-shadow: 0 4px 12px rgba(43, 92, 230, 0.3);
}

.service-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(43, 92, 230, 0.4);
    color: var(--white);
}

.service-btn.featured-btn {
    background: var(--gradient-secondary);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
}

.service-btn.featured-btn:hover {
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glass);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.05) rotateX(5deg);
    box-shadow: 
        0 25px 80px rgba(43, 92, 230, 0.2),
        0 0 40px rgba(43, 92, 230, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(43, 92, 230, 0.4);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(43, 92, 230, 0.3);
    transition: var(--transition-bounce);
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--gradient-primary);
    border-radius: calc(var(--border-radius) - 2px);
    opacity: 0.8;
    z-index: -1;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(10deg) translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(43, 92, 230, 0.5),
        0 0 20px rgba(43, 92, 230, 0.3);
    animation: iconBounce 0.6s ease-out;
}

@keyframes iconBounce {
    0%, 100% {
        transform: scale(1.2) rotate(10deg) translateY(-5px);
    }
    50% {
        transform: scale(1.3) rotate(15deg) translateY(-8px);
    }
}

.service-icon i {
    font-size: 1.75rem;
    color: var(--white);
    z-index: 2;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon i {
    transform: scale(1.2) rotateY(180deg);
    animation: iconMorph 0.8s ease-in-out;
}

@keyframes iconMorph {
    0% {
        transform: scale(1.2) rotateY(0deg);
        filter: hue-rotate(0deg);
    }
    50% {
        transform: scale(1.4) rotateY(90deg);
        filter: hue-rotate(180deg);
    }
    100% {
        transform: scale(1.2) rotateY(180deg);
        filter: hue-rotate(0deg);
    }
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose {
    padding: 80px 0;
    background: var(--off-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: var(--transition-bounce);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 53, 69, 0.05), transparent);
    transition: var(--transition-smooth);
}

.feature-item:hover {
    transform: translateY(-12px) scale(1.05) rotateX(-5deg);
    box-shadow: 
        0 25px 80px rgba(220, 53, 69, 0.18),
        0 0 30px rgba(220, 53, 69, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.feature-item:hover::before {
    left: 100%;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 
        0 8px 25px rgba(220, 53, 69, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transition: var(--transition-bounce);
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.feature-item:hover .feature-icon {
    transform: scale(1.15) rotate(-10deg) translateY(-3px);
    box-shadow: 
        0 20px 50px rgba(220, 53, 69, 0.5),
        0 0 25px rgba(220, 53, 69, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.5);
    animation: featureIconPulse 0.8s ease-out;
}

@keyframes featureIconPulse {
    0%, 100% {
        transform: scale(1.15) rotate(-10deg) translateY(-3px);
    }
    50% {
        transform: scale(1.25) rotate(-15deg) translateY(-6px);
    }
}

.feature-item:hover .feature-icon::after {
    border-color: rgba(255, 255, 255, 0.4);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition-smooth);
}

.feature-item:hover .feature-icon i {
    transform: scale(1.2) rotate(360deg);
    animation: featureIconMorph 1s ease-in-out;
}

@keyframes featureIconMorph {
    0% {
        transform: scale(1.2) rotate(0deg);
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }
    25% {
        transform: scale(1.3) rotate(90deg);
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    }
    50% {
        transform: scale(1.4) rotate(180deg);
        text-shadow: 0 0 20px rgba(255, 255, 255, 1);
    }
    75% {
        transform: scale(1.3) rotate(270deg);
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    }
    100% {
        transform: scale(1.2) rotate(360deg);
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }
}

.feature-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Business Credibility Section */
.credibility {
    padding: 80px 0;
    background: var(--white);
}

.credibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.credibility-item {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.credibility-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-heavy);
}

.credibility-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
    transition: left 0.3s ease;
}

.credibility-item:hover::before {
    left: 0;
}

.credibility-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.credibility-item:hover .credibility-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
}

.credibility-icon i {
    font-size: 2rem;
    color: var(--white);
}

.credibility-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.credibility-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Business Guarantees */
.guarantees-section {
    background: var(--off-white);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.guarantees-title {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-red);
}

.guarantee-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-medium);
}

.guarantee-item i {
    font-size: 2rem;
    color: var(--primary-red);
    min-width: 40px;
}

.guarantee-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.guarantee-item p {
    color: var(--text-medium);
    margin: 0;
    line-height: 1.5;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--white);
}

/* Social Media Section */
.social-media-section {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(43, 92, 230, 0.05);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-blue);
}

.social-media-section h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.social-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.platform-item {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.platform-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
}

.platform-link.available {
    color: var(--primary-blue);
}

.platform-link.available:hover {
    color: var(--dark-blue);
    transform: translateX(5px);
}

.platform-link.coming-soon {
    color: var(--text-light);
    cursor: not-allowed;
    opacity: 0.6;
}

.platform-link i {
    font-size: 1.5rem;
    width: 24px;
    text-align: center;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text {
    max-width: 700px;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text h2::after {
    left: 0;
    transform: none;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.company-link {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--off-white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
}

.linkedin-link {
    color: var(--primary-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.linkedin-link:hover {
    color: var(--dark-blue);
}

.about-image {
    text-align: center;
}

.about-logo {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

/* Team Section */
.team-section {
    margin-top: 4rem;
}

.team-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: rgba(255,255,255,0.85);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(43,92,230,0.08), 0 1.5px 0 rgba(255,255,255,0.5) inset;
    transition: var(--transition-bounce);
    border: 1px solid rgba(43,92,230,0.08);
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.team-member:hover {
    transform: translateY(-12px) scale(1.04) rotateX(-3deg);
    box-shadow: 0 20px 60px rgba(43,92,230,0.18), 0 0 30px rgba(43,92,230,0.08), 0 1.5px 0 rgba(255,255,255,0.7) inset;
    border-color: rgba(43,92,230,0.18);
}

.member-image {
    height: 250px;
    overflow: hidden;
    background: var(--gradient-primary);
    position: relative;
    z-index: 1;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.68,-0.55,0.27,1.55), filter 0.3s;
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
}

.team-member:hover .member-image img {
    transform: scale(1.09) rotate(-2deg);
    filter: brightness(1.08) saturate(1.2) drop-shadow(0 8px 24px rgba(43,92,230,0.12));
}

.member-info {
    padding: 2rem;
    background: rgba(255,255,255,0.7);
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
    box-shadow: 0 2px 8px rgba(43,92,230,0.04) inset;
}

.member-info h4 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.member-role {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-description {
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.linkedin-btn {
    display: inline-block;
    margin-top: 0.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(43,92,230,0.08);
    position: relative;
    z-index: 2;
}

.linkedin-btn:hover {
    background: var(--dark-blue);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(43,92,230,0.18);
    transform: translateY(-2px) scale(1.04);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--off-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.featured-testimonial {
    border: 2px solid var(--primary-blue);
    background: linear-gradient(135deg, var(--white) 0%, #f8faff 100%);
}

.featured-testimonial::before {
    content: "Featured Review";
    position: absolute;
    top: -10px;
    left: 2rem;
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-content {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.quote-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.quote-icon i {
    font-size: 1rem;
    color: var(--white);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 1rem;
}

.testimonial-author {
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.client-type {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.client-website {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    font-weight: 500;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.client-website:hover {
    color: var(--accent-red);
}

.client-website i {
    font-size: 0.75rem;
}

.review-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(43, 92, 230, 0.05);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    border: 1px solid rgba(43, 92, 230, 0.15);
}

.review-link:hover {
    color: var(--white);
    background: var(--primary-blue);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(43, 92, 230, 0.3);
}

.review-link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.review-link:hover i {
    transform: translateX(2px);
}

.testimonials-cta {
    text-align: center;
    padding: 3rem 0 0;
    border-top: 1px solid var(--border-light);
}

.testimonials-cta p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--off-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    background: rgba(255,255,255,0.7);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 32px rgba(43,92,230,0.08), 0 1.5px 0 rgba(255,255,255,0.5) inset;
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    padding: 2.5rem 2rem;
    animation: fadeInUp 1.1s cubic-bezier(0.68,-0.55,0.27,1.55);
}

.contact-info h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.contact-info h2::after {
    left: 0;
    transform: none;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.85);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 16px rgba(43,92,230,0.10), 0 1.5px 0 rgba(255,255,255,0.5) inset;
    border: 1px solid rgba(43,92,230,0.08);
    padding: 1.5rem;
    transition: var(--transition-bounce);
    position: relative;
    z-index: 1;
    animation: fadeInUp 1.2s cubic-bezier(0.68,-0.55,0.27,1.55);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
    width: 30px;
}

.contact-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-medium);
    margin: 0;
}

/* Email link + copy button */
.email-link {
    color: var(--primary-blue);
    font-weight: 600;
    margin-right: 0.5rem;
}

.email-link:hover {
    text-decoration: underline;
}

.copy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-left: 0.25rem;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    background: var(--white);
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.copy-btn:hover {
    background: rgba(43, 92, 230, 0.08);
    color: var(--primary-blue);
    transform: translateY(-1px);
}

.copy-btn.copied {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
}

.phone-link {
    color: var(--text-dark);
    font-weight: 600;
    margin-right: 0.5rem;
}

.phone-link:hover {
    color: var(--primary-blue);
}

/* Footer variants */
.footer .email-link,
.footer .phone-link {
    color: var(--light-gray);
}

.footer .email-link:hover,
.footer .phone-link:hover {
    color: var(--white);
}

.copy-btn--footer {
    background: transparent;
    border-color: rgba(255,255,255,0.2);
    color: var(--light-gray);
}

.copy-btn--footer:hover {
    background: rgba(255,255,255,0.08);
    color: var(--white);
}

.contact-note {
    display: block;
    font-size: 0.85rem;
    color: var(--primary-red);
    font-weight: 500;
    font-style: italic;
    margin-top: 0.25rem;
    line-height: 1.3;
}

.calendar-section {
    background: rgba(255,255,255,0.85);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 32px rgba(43,92,230,0.08), 0 1.5px 0 rgba(255,255,255,0.5) inset;
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    animation: fadeInUp 1.3s cubic-bezier(0.68,-0.55,0.27,1.55);
}

.calendar-section h3 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.booking-container {
    max-width: 500px;
    margin: 0 auto;
}

.booking-info {
    text-align: center;
}

.booking-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(43, 92, 230, 0.04);
    border-radius: var(--border-radius);
    border: 1px solid rgba(43, 92, 230, 0.1);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.benefit-item i {
    color: var(--primary-blue);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.booking-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #4285f4, #34a853);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 
        0 8px 25px rgba(66, 133, 244, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    min-width: 250px;
}

.booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 35px rgba(66, 133, 244, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.booking-btn i {
    font-size: 1.25rem;
}

.booking-btn span {
    font-size: 1.1rem;
    font-weight: 600;
}

.booking-btn small {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 400;
}

.booking-note {
    background: rgba(43, 92, 230, 0.05);
    border: 1px solid rgba(43, 92, 230, 0.1);
    border-radius: var(--border-radius);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;
}

.booking-note i {
    color: var(--primary-blue);
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.booking-note p {
    margin: 0;
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.5;
}

.booking-note .phone-link,
.booking-note .email-link {
    color: var(--primary-red);
    font-weight: 500;
    text-decoration: none;
}

.booking-note .phone-link:hover,
.booking-note .email-link:hover {
    color: var(--accent-red);
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--light-gray);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--light-gray);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-red);
}

.coming-soon {
    opacity: 0.6;
    cursor: not-allowed;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.social-link.facebook {
    background: #1877F2;
}

.social-link.linkedin {
    background: #0A66C2;
}

.social-link.discord {
    background: #5865F2;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-link i {
    color: var(--white);
    font-size: 1.2rem;
}

.tooltip {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-dark);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.coming-soon:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--medium-gray);
    color: var(--light-gray);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-container,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: var(--backdrop-blur);
        -webkit-backdrop-filter: var(--backdrop-blur);
        width: 100%;
        height: calc(100vh - 80px);
        text-align: center;
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-heavy);
        padding: 3rem 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 1rem 2rem;
        margin: 0.5rem 1rem;
        font-size: 1.1rem;
        border-radius: var(--border-radius-lg);
        transform: translateX(-30px);
        opacity: 0;
        transition: var(--transition-smooth);
    }

    .nav-menu.active .nav-link {
        transform: translateX(0);
        opacity: 1;
    }

    .nav-menu.active .nav-link:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active .nav-link:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active .nav-link:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active .nav-link:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu.active .nav-link:nth-child(5) { transition-delay: 0.5s; }

    .hamburger {
        display: flex;
        padding: 0.5rem;
        border-radius: var(--border-radius);
        background: transparent;
        border: none;
        transition: var(--transition-smooth);
    }

    .hamburger:hover {
        background: rgba(43, 92, 230, 0.1);
    }

    .hamburger .bar {
        transition: var(--transition-bounce);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .emergency-banner {
        padding: 0.75rem 0;
    }

    .emergency-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .emergency-text {
        font-size: 0.9rem;
    }

    .hero {
        padding: 160px 0 60px; /* Adjusted for mobile emergency banner */
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .services-grid,
    .features-grid,
    .team-grid,
    .testimonials-grid,
    .credibility-grid,
    .guarantees-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .contact-content {
        gap: 2rem;
    }

    .calendar-section {
        padding: 1rem;
    }

    .booking-benefits {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .benefit-item {
        font-size: 0.9rem;
    }

    .booking-btn {
        padding: 1.25rem 1.5rem;
        min-width: 200px;
        font-size: 1rem;
    }

    .booking-note {
        padding: 0.875rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .booking-note p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 200px;
    }
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.feature-item,
.team-member {
    animation: fadeInUp 0.6s ease forwards;
}

/* Print Styles */
@media print {
    .navbar,
    .hero-buttons,
    .footer {
        display: none;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    * {
        background: white !important;
        color: black !important;
    }
}