/* Extracted styles from Dubai Cleaning Complete.html */

/* Google Fonts import preserved at top to match original behavior */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@600;700;800&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #21b2c2;
    --primary-dark: #1b2949;
    --primary-light: #4dcbda;
    --secondary: #21b2c2;
    --secondary-dark: #1b8591;
    --accent: #1b2949;
    --accent-light: #2d416e;
    --dark: #1b2949;
    --dark-lighter: #2d416e;
    --gray-dark: #475569;
    --gray: #64748B;
    --gray-light: #CBD5E1;
    --gray-lighter: #F1F5F9;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #21b2c2 0%, #1b2949 100%);
    --gradient-hero: linear-gradient(135deg, rgba(33,178,194,0.95) 0%, rgba(27,41,73,0.95) 100%);
    --gradient-card: linear-gradient(145deg, #ffffff, #f8fafc);
    --gradient-dark: linear-gradient(135deg, #1b2949 0%, #2d416e 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --shadow-glow: 0 0 20px rgba(14,165,233,0.3);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Poppins', var(--font-sans);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

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

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(135deg, var(--dark) 0%, var(--gray-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

#header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    transition: all 0.3s ease;
    padding: 0.5rem 0.5rem;
}
#header.scrolled { box-shadow: var(--shadow-md); background: rgba(255, 255, 255, 0.98); }

nav { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; margin: 1.5rem 0; }

.logo-container { display: flex; align-items: center; gap: 0.3rem; } 
.logo-container img { height: 30px; width: auto; }


.logo { display: flex; align-items: center; gap: 12px; font-size: 1.5rem; font-weight: 800; font-family: var(--font-display); }
.logo-first { color: #1b2949; }
.logo-second { color: #21b2c2; }
.logo-icon { width: 60px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.logo-icon svg { width: 32px; height: 32px; }
/* Allow image logo inside logo-icon */
.logo-icon img { width: 100%; height: 100%; object-fit: cover; display: block; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; }
.logo-icon-text img {width: 300px; height: auto; }

.nav-menu { display: flex; list-style: none; gap: 2.5rem; align-items: center; }
.nav-menu a { color: var(--gray-dark); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: all 0.3s ease; position: relative; }
.nav-menu a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gradient-primary); transition: width 0.3s ease; }
.nav-menu a:hover { color: var(--primary); }
.nav-menu a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 1rem; }
.lang-switcher { display: flex; background: var(--gray-lighter); padding: 4px; border-radius: 10px; gap: 4px; }
.lang-switcher button { padding: 8px 12px; background: transparent; border: none; border-radius: 8px; cursor: pointer; font-weight: 500; font-size: 0.875rem; transition: all 0.3s ease; color: var(--gray-dark); }
.lang-switcher button.active { background: white; color: var(--primary); box-shadow: var(--shadow-sm); }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 10px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; cursor: pointer; border: none; font-size: 0.95rem; position: relative; overflow: hidden; }
.btn-primary { background: var(--gradient-primary); color: white; box-shadow: var(--shadow-md); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-secondary { background: white; color: var(--primary); box-shadow: var(--shadow); border: 2px solid var(--gray-lighter); }
.btn-secondary:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-dark { background: var(--gradient-dark); color: white; box-shadow: var(--shadow-md); }

.hero { 
    min-height: 70vh; 
    display: flex; 
    align-items: center; 
    position: relative; 
    background: linear-gradient(135deg, rgba(33,178,194,0.9) 0%, rgba(27,41,73,0.9) 100%), url('../../images/cover.JPG'); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    overflow: hidden; 
    margin-top: 60px; 
}
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero-content { position: relative; z-index: 1; text-align: center; color: white; padding: 2rem 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15)); backdrop-filter: blur(15px); padding: 12px 20px; border-radius: 25px; font-size: 0.875rem; font-weight: 600; margin-bottom: 2rem; animation: fadeInDown 0.8s ease; border: 1px solid rgba(255, 255, 255, 0.3); box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); }
.hero h1 { color: white; margin-bottom: 1.5rem; font-weight: 800; animation: fadeInUp 0.8s ease; background: none; -webkit-text-fill-color: white; }
.hero h2 { color: white; margin-bottom: 1.5rem; font-weight: 800; animation: fadeInUp 0.8s ease; background: none; -webkit-text-fill-color: white; }
.hero-subtitle { font-size: 1.25rem; opacity: 0.95; max-width: 600px; margin: 0 auto 2rem; animation: fadeInUp 0.8s ease 0.2s both; }
.hero-features { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 3rem; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.4s both; }
.hero-feature { display: flex; align-items: center; gap: 10px; background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)); backdrop-filter: blur(12px); padding: 12px 24px; border-radius: 30px; border: 1px solid rgba(255, 255, 255, 0.25); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); transition: all 0.3s ease; }
.hero-feature:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2)); }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.6s both; margin-bottom: 3rem; }
.hero-buttons .btn { padding: 16px 32px; font-size: 1.1rem; border-radius: 50px; }
.hero-buttons .btn-white { background: white; color: var(--primary); box-shadow: var(--shadow-xl); }
.hero-buttons .btn-white:hover { transform: translateY(-3px) scale(1.02); }
.hero-buttons .btn-glass { background: rgba(255, 255, 255, 0.4); backdrop-filter: blur(10px); color: white; border: 2px solid rgba(255, 255, 255, 0.5); }
.hero-buttons .btn-glass img { width: 24px; height: 24px; display: inline-block; }
.hero-buttons .btn-glass:hover { background: rgba(255, 255, 255, 0.5); transform: translateY(-3px); }
.booknow-btn { background: white; color: var(--primary); box-shadow: var(--shadow-xl); padding: 34px 68px; font-size: 2.5rem; }
.booknow-btn:hover { transform: translateY(-3px) scale(1.02); }

.trust-section { padding: 5rem 0; background: var(--gray-lighter); position: relative; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.trust-card { background: white; padding: 2rem; border-radius: var(--radius-lg); text-align: center; position: relative; overflow: hidden; transition: all 0.3s ease; border: 1px solid var(--gray-light); }
.trust-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient-primary); transform: translateX(-100%); transition: transform 0.3s ease; }
.trust-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.trust-card:hover::before { transform: translateX(0); }
.trust-icon { width: 80px; height: 80px; margin: 0 auto 1.5rem; background: var(--gradient-primary); border-radius: 20px; display: flex; align-items: center; justify-content: center; position: relative; box-shadow: var(--shadow-md); }
.trust-icon svg { width: 40px; height: 40px; fill: white; }
.trust-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--dark); }
.trust-card p { color: var(--gray); font-size: 0.95rem; }

.services-section { padding: 5rem 0; background: white; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-badge { display: inline-block; background: var(--gradient-primary); color: white; padding: 8px 20px; border-radius: 50px; font-size: 0.875rem; font-weight: 600; margin-bottom: 1rem; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; background: var(--gradient-dark); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-subtitle { font-size: 1.125rem; color: var(--gray); max-width: 600px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; }
.service-card { background: white; border-radius: var(--radius-xl); overflow: hidden; transition: all 0.3s ease; border: 1px solid var(--gray-lighter); position: relative; }
.service-card { display: flex; flex-direction: column; height: 100%; }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); border-color: transparent; }
.service-image { height: 200px; background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.25) 100%), url('../../images/construction-cleaning.png'); background-size: cover; background-position: center; position: relative; overflow: hidden; }
.service-card.post-construction .service-image { background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.25) 100%), url('../../images/construction-cleaning.png'); background-size: cover; background-position: center; }
.service-image::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 100px; background: linear-gradient(to bottom, transparent, white); }
.service-icon-float { position: absolute; bottom: 10px; left: 2rem; width: 70px; height: 70px; background: white; border-radius: 20px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); z-index: 1; }
.service-icon-float svg { width: 35px; height: 35px; fill: var(--primary); }
.service-content { padding: 3rem 2rem 2rem; flex: 1 1 auto; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--dark); }
.service-card p { color: var(--gray); margin-bottom: 1.5rem; line-height: 1.7; }
.service-features { list-style: none; margin-bottom: 1.5rem; }
.service-features li { display: flex; align-items: flex-start; gap: 12px; padding: 8px 0; color: var(--gray-dark); }
.service-features li svg { width: 20px; height: 20px; fill: var(--secondary); flex-shrink: 0; margin-top: 2px; }
.service-footer { padding: 1rem 1.5rem; background: var(--gray-lighter); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.service-footer .btn { white-space: nowrap; }
.service-price { font-size: 1.35rem; font-weight: 700; color: var(--primary); line-height: 1.1; display: flex; align-items: baseline; gap: 8px; }
.service-price span { font-size: 0.85rem; color: var(--gray); font-weight: 500; }

@media (max-width: 480px) {
  .service-footer { padding: 0.875rem 1rem; }
  .service-price { font-size: 1.25rem; }
}

.testimonials-section { padding: 5rem 0; background: var(--gray-lighter); }
.testimonials-controls { display: flex; justify-content: flex-end; gap: 0.5rem; margin-bottom: 1rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; overflow: hidden; }

/* Slider layout for larger screens: show 3, move track with transform */
@media (min-width: 992px) {
  .testimonials-grid { display: flex; gap: 2rem; scroll-behavior: smooth; overflow: hidden; }
  .testimonials-grid .testimonial-card { min-width: calc((100% - 4rem) / 3); }
}

/* Slider layout for tablets: show 2 */
@media (min-width: 640px) and (max-width: 991px) {
  .testimonials-grid { display: flex; gap: 1.5rem; overflow: hidden; }
  .testimonials-grid .testimonial-card { min-width: calc((100% - 1.5rem) / 2); }
}

/* Mobile: show 1 */
@media (max-width: 639px) {
  .testimonials-grid { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .testimonials-grid .testimonial-card { min-width: 100%; scroll-snap-align: start; }
}

/* RTL Support */
[dir="rtl"] {
    /* Text alignment */
    .text-left { text-align: right; }
    .text-right { text-align: left; }
    
    /* Margins and paddings */
    .footer-column a:hover { padding-right: 10px; padding-left: 0; }
    
    /* Flexbox order - exclude mobile nav-menu from row-reverse */
    .hero-features, .footer-grid { flex-direction: row-reverse; }
    
    /* Desktop nav-menu RTL support only */
    @media (min-width: 769px) {
        .nav-menu { flex-direction: row-reverse; }
    }
    
    /* Gradients and backgrounds */
    .gradient-primary, .hero, .cta-section {
        background: linear-gradient(135deg, #1b2949 0%, #21b2c2 100%);
    }
}

/* Language specific font settings */
.lang-ar {
    --font-sans: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Cairo', var(--font-sans);
    font-size: 17px;
}

/* Arabic specific hero background */
.lang-ar .hero {
    background: linear-gradient(135deg, rgba(33,178,194,0.9) 0%, rgba(27,41,73,0.9) 100%), url('../../images/cover.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lang-ru {
    --font-sans: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Roboto', var(--font-sans);
}
.testimonial-card { background: white; padding: 2rem; border-radius: var(--radius-xl); position: relative; transition: all 0.3s ease; border: 1px solid var(--gray-lighter); }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.testimonial-rating { display: flex; gap: 4px; margin-bottom: 1rem; }
.star { width: 20px; height: 20px; fill: var(--accent); }
.testimonial-text { font-size: 1.1rem; line-height: 1.7; color: var(--gray-dark); margin-bottom: 2rem; position: relative; }
.testimonial-text::before { content: '"'; position: absolute; top: -20px; left: -10px; font-size: 4rem; color: var(--primary); opacity: 0.2; font-family: Georgia, serif; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--gradient-primary); display: flex; align-items: center; justify-content: center; color: white; font-weight: 600; font-size: 1.2rem; }
.author-info h4 { font-size: 1.1rem; color: var(--dark); margin-bottom: 0.25rem; }
.author-info p { color: var(--gray); font-size: 0.9rem; }

.cta-section { padding: 5rem 0; background: var(--gradient-primary); color: white; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px); background-size: 50px 50px; animation: moveGrid 20s linear infinite; }
.cta-content { position: relative; z-index: 1; }
.cta-section h2 { color: white; margin-bottom: 1rem; }
.cta-section p { font-size: 1.25rem; opacity: 0.95; margin-bottom: 2rem; }

footer { background: var(--dark); color: white; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1.5fr 0.8fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand h3 { font-size: 1.5rem; margin-bottom: 1rem; background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-brand p { color: var(--gray-light); margin-bottom: 1.5rem; line-height: 1.7; }
.social-links { display: flex; gap: 1rem; }
.social-links a { width: 40px; height: 40px; background: rgba(255, 255, 255, 0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.social-links a:hover { background: var(--primary); transform: translateY(-3px); }
.social-links svg { width: 20px; height: 20px; fill: white; }
.footer-column h4 { margin-bottom: 1.5rem; font-size: 1.1rem; color: white; }
.footer-column ul { list-style: none; }
.footer-column a { color: var(--gray-light); text-decoration: none; display: block; padding: 0.5rem 0; transition: all 0.3s ease; }
.footer-column a:hover { color: white; padding-left: 10px; }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1); text-align: center; color: var(--gray-light); }

.whatsapp-float { position: fixed; bottom: 2rem; right: 2rem; width: 65px; height: 65px; background: linear-gradient(135deg, #21b2c2 0%, #1b2949 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-xl); z-index: 999; transition: all 0.3s ease; animation: pulse 2s infinite; }
.whatsapp-float:hover { transform: scale(1.1); animation: none; }
.whatsapp-float img { width: 60%; height: 60%; object-fit: contain; display: block; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(33, 178, 194, 0.4), var(--shadow-xl); } 50% { box-shadow: 0 0 0 20px rgba(33, 178, 194, 0), var(--shadow-xl); } }
@keyframes moveGrid { 0% { transform: translate(0, 0); } 100% { transform: translate(50px, 50px); } }

.mobile-menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-menu-toggle span { display: block; width: 25px; height: 3px; background: var(--dark); margin: 5px 0; transition: all 0.3s ease; border-radius: 3px; }

@media (max-width: 1024px) {
    /* Hide logo text image and hero title on tablet and mobile */
    .logo-icon-text-header { display: none; }
    .hero-title-wrapper { display: none; }
    
    /* Ensure clean logo styling on tablet */
    .logo-icon {
        background: white;
    }
    
    .logo-icon img {
        filter: brightness(1) contrast(1.1);
        opacity: 1;
    }
    
    /* Fix footer logo for tablet - remove white background */
    footer .logo-icon {
        background: transparent;
    }
    
    footer .logo-icon img {
        filter: none;
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; flex-direction: column; padding: 2rem; box-shadow: var(--shadow-xl); gap: 1rem; }
    .nav-menu.active { display: flex; }
    .mobile-menu-toggle { display: block; }
    .hero h1 { font-size: 2rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .services-grid, .testimonials-grid { grid-template-columns: 1fr; }

    /* Move hero section up more on mobile */
    .hero {
        margin-top: 40px;
        min-height: 60vh;
    }

    /* Hide hero title on mobile */
    .hero-title-wrapper { display: none; }

    /* Fix logo colors and visibility on mobile */
    .logo-icon {
        background: white;
    }
    
    .logo-icon img {
        filter: brightness(1) contrast(1.1);
        opacity: 1;
    }
    
    /* Fix footer logo for mobile - remove white background and filters */
    footer .logo-icon {
        background: transparent;
    }
    
    footer .logo-icon img {
        filter: none;
        opacity: 1;
    }

    /* Make navigation button smaller on mobile */
    .nav-cta .btn-primary { 
        padding: 8px 16px; 
        font-size: 0.85rem;
        border-radius: 8px;
    }

    /* Arabic mobile menu specific styles */
    .lang-ar .nav-menu {
        text-align: right;
        direction: rtl;
    }
    
    .lang-ar .nav-menu a {
        text-align: right;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--gray-lighter);
    }
    
    .lang-ar .nav-menu a:last-child {
        border-bottom: none;
    }

    /* Make hero elements smaller on mobile */
    .hero-features { gap: 0.75rem; margin-bottom: 2rem; }
    .hero-feature { 
        padding: 8px 16px; 
        font-size: 0.85rem;
        border-radius: 20px;
    }
    .hero-feature svg { width: 16px; height: 16px; }
    
    .hero-badge { 
        padding: 8px 16px; 
        font-size: 0.75rem; 
        margin-bottom: 1.5rem;
        border-radius: 20px;
    }
    .hero-badge svg { width: 14px; height: 14px; }
    
    .hero-buttons { gap: 0.75rem; }
    .hero-buttons .btn { 
        padding: 12px 20px; 
        font-size: 0.95rem;
        border-radius: 25px;
    }
    .hero-buttons .btn img { width: 20px; height: 20px; }
    .hero-buttons .btn svg { width: 20px; height: 20px; }
    
    /* Fix form alignment on mobile - make grid columns stack */
    .form-modern div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    /* Reduce form padding on mobile */
    .form-modern {
        padding: 2rem 1.5rem !important;
    }
}

.form-modern { background: white; padding: 3rem; border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); border: 1px solid var(--gray-lighter); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 2px solid var(--gray-lighter); border-radius: var(--radius); font-size: 1rem; transition: all 0.3s ease; background: var(--gray-lighter); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); background: white; box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1); }

.pricing-card { background: white; border-radius: var(--radius-xl); overflow: hidden; transition: all 0.3s ease; border: 2px solid var(--gray-lighter); position: relative; }
.pricing-card.featured { border-color: var(--primary); transform: scale(1.05); box-shadow: var(--shadow-xl); }
.pricing-card.featured .pricing-header { background: var(--gradient-primary); color: white; }
.pricing-header { padding: 2rem; text-align: center; background: var(--gray-lighter); }
.pricing-price { font-size: 3rem; font-weight: 800; color: var(--primary); }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--gray); }

.text-gradient { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.glass { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); }
.shadow-glow { box-shadow: 0 0 30px rgba(14, 165, 233, 0.3); }


