@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-logo {
    font-family: 'Sora', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.preloader-text {
    display: inline-block;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: scaleIn 0.5s ease-out both;
}

.preloader-text.accent {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: scaleIn 0.5s ease-out 0.2s both;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.preloader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 0 auto 20px;
    overflow: hidden;
}

.preloader-progress {
    height: 100%;
    background: var(--gradient-red);
    border-radius: 2px;
    width: 0;
    animation: loadProgress 2s ease-in-out forwards;
}

@keyframes loadProgress {
    0% { width: 0; }
    50% { width: 70%; }
    100% { width: 100%; }
}

.preloader-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeIn 0.5s ease-out 0.5s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

:root {
    --primary-blue: #0D47A1;
    --secondary-blue: #1565C0;
    --accent-red: #E53935;
    --accent-red-light: #FF5252;
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FC;
    --bg-dark: #0A0A0F;
    --text-primary: #0A0A0F;
    --text-secondary: #5C6B7A;
    --gradient-blue: linear-gradient(135deg, #0D47A1 0%, #1E88E5 100%);
    --gradient-red: linear-gradient(135deg, #E53935 0%, #FF5252 100%);
    --gradient-dark: linear-gradient(135deg, #0A0A0F 0%, #1A1A2E 100%);
    --shadow: 0 10px 40px rgba(13, 71, 161, 0.08);
    --shadow-hover: 0 25px 60px rgba(13, 71, 161, 0.15);
    --shadow-red: 0 10px 30px rgba(229, 57, 53, 0.25);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    background: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    line-height: 1.15;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

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

.section-title h2 {
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

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

.section-title p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 550px;
    margin: 20px auto 0;
    font-weight: 400;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

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

.btn-primary {
    background: var(--gradient-red);
    color: white;
    border-color: var(--accent-red);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-red);
    border-color: var(--accent-red-light);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.4);
}

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

.btn-secondary {
    background: var(--gradient-blue);
    color: white;
    border-color: var(--primary-blue);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(13, 71, 161, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--accent-red);
    border-color: var(--accent-red);
}

.btn-ghost:hover {
    background: var(--accent-red);
    color: white;
    transform: translateY(-3px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    animation: slideDown 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    margin-top: 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.navbar.scrolled .container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    height: 75px;
}

.logo {
    font-family: 'Sora', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    letter-spacing: -0.5px;
}

.logo span:first-child {
    color: var(--primary-blue);
}

.logo span:last-child {
    color: var(--accent-red);
}

.navbar.scrolled .logo span:first-child {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar.scrolled .logo span:last-child {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 45px;
}

.nav-links a {
    font-weight: 500;
    color: white;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-red);
    transition: var(--transition);
    border-radius: 1px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-red-light);
}

.nav-links a.active {
    color: white;
}

.navbar.scrolled .nav-links a {
    color: var(--text-primary);
}

.navbar.scrolled .nav-links a.active {
    color: var(--primary-blue);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--primary-blue);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--text-primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(21, 101, 192, 0.15) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(229, 57, 53, 0.1) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    animation: fadeInUp 0.6s ease-out both;
}

.hero-badge span {
    color: var(--accent-red-light);
    font-weight: 600;
}

.hero h1 {
    font-size: 4.2rem;
    color: white;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.1;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero h1 .highlight {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Title Word Animation */
.hero-title {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.hero-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px) rotateX(-90deg);
    animation: wordReveal 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-title .word-1 { animation-delay: 0.3s; }
.hero-title .word-2 { animation-delay: 0.45s; }
.hero-title .word-3 { animation-delay: 0.6s; }
.hero-title .word-4 { animation-delay: 0.75s; }
.hero-title .word-5 { animation-delay: 0.9s; }

@keyframes wordReveal {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(-90deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.hero-title .highlight {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: wordReveal 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.6s;
}

/* Subtitle with blur reveal */
.hero-subtitle {
    opacity: 0;
    animation: blurReveal 0.8s ease-out 1.2s forwards;
}

@keyframes blurReveal {
    0% {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

/* Buttons staggered animation */
.hero-buttons {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 1.4s forwards;
}

/* Hero stats animation */
.hero-stats {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 1.6s forwards;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 500px;
}

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

.hero-visual {
    position: relative;
    animation: fadeInRight 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate(60px, 0);
    }
    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

.hero-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 50px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-red);
}

.hero-card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-blue);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 2.2rem;
    color: white;
}

.hero-card h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.hero-card p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1rem;
    margin-bottom: 0;
}

.hero-shapes {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
}

.hero-shape-1 {
    width: 120px;
    height: 120px;
    background: var(--accent-red);
    opacity: 0.15;
    top: -30px;
    right: -30px;
    animation: pulse 4s infinite;
}

.hero-shape-2 {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    opacity: 0.2;
    bottom: 20px;
    left: -40px;
    animation: pulse 5s infinite reverse;
}

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

/* Hero Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.2rem;
    animation: floatParticle 6s ease-in-out infinite;
}

.particle-1 { top: 15%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 25%; right: 15%; animation-delay: 1s; }
.particle-3 { bottom: 30%; left: 8%; animation-delay: 2s; }
.particle-4 { bottom: 20%; right: 10%; animation-delay: 0.5s; }
.particle-5 { top: 50%; left: 5%; animation-delay: 1.5s; }
.particle-6 { top: 40%; right: 5%; animation-delay: 2.5s; }

@keyframes floatParticle {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-20px) rotate(10deg); 
        opacity: 0.6;
    }
}

/* Hero Lines */
.hero-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: lineMove 8s linear infinite;
}

.line-1 { top: 20%; width: 100%; animation-delay: 0s; }
.line-2 { top: 50%; width: 80%; animation-delay: 2s; }
.line-3 { top: 80%; width: 60%; animation-delay: 4s; }

@keyframes lineMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 32px;
    line-height: 1.8;
    max-width: 520px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-red);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card i {
    color: #25D366;
    font-size: 1.2rem;
}

.floating-card-1 {
    top: 20px;
    right: -20px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 30px;
    left: -30px;
    animation-delay: 2s;
}

.floating-card-2 i {
    color: var(--accent-red);
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Hero Button Animation */
.hero-buttons .btn {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons .btn:first-child {
    animation-delay: 0.4s;
}

.hero-buttons .btn:last-child {
    animation-delay: 0.5s;
}

/* Page Hero */
.page-hero {
    background: var(--bg-dark);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(229, 57, 53, 0.1) 0%, transparent 70%);
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(21, 101, 192, 0.1) 0%, transparent 70%);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 3.5rem;
    color: #FFFFFF;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 550px;
    margin: 0 auto;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}

/* Services Preview */
.services-preview {
    background: var(--bg-light);
    position: relative;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: var(--bg-dark);
}

.services-preview .section-title {
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
    background: white;
    padding: 30px 40px;
    border-radius: var(--radius);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.services-preview .section-title h2 {
    color: var(--text-primary);
}

.services-preview .section-title p {
    color: var(--text-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
}

.service-card {
    background: white;
    padding: 42px 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
    position: relative;
    overflow: hidden;
}

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

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.15s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.service-card:nth-child(4) { animation-delay: 0.25s; }
.service-card:nth-child(5) { animation-delay: 0.3s; }
.service-card:nth-child(6) { animation-delay: 0.35s; }

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

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

.service-card .icon {
    width: 75px;
    height: 75px;
    background: var(--bg-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.9rem;
    color: var(--primary-blue);
    transition: var(--transition);
}

.service-card:hover .icon {
    background: var(--gradient-blue);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 14px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 22px;
    line-height: 1.7;
}

.service-card .btn {
    color: white !important;
}

.service-card a {
    color: white;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.service-card a:hover {
    gap: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Image-based Service Cards */
.services-img-grid {
    grid-template-columns: repeat(3, 1fr);
}

.service-img-card {
    padding: 0;
    overflow: hidden;
    border-radius: 16px;
}

.service-img-card h3 {
    padding: 20px;
    text-align: center;
    margin: 0;
    background: white;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.service-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-img-card:hover .service-img img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 71, 161, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-img-card:hover .service-overlay {
    opacity: 1;
}

/* Why Choose Us */
.why-us {
    background: white;
    position: relative;
}

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

.why-us-card {
    text-align: center;
    padding: 50px 28px;
    border-radius: var(--radius);
    transition: var(--transition);
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
    background: var(--bg-light);
    border: 1px solid transparent;
}

.why-us-card:nth-child(1) { animation-delay: 0.1s; }
.why-us-card:nth-child(2) { animation-delay: 0.15s; }
.why-us-card:nth-child(3) { animation-delay: 0.2s; }
.why-us-card:nth-child(4) { animation-delay: 0.25s; }

.why-us-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-8px);
    box-shadow: var(--shadow-red);
}

.why-us-card .icon {
    width: 85px;
    height: 85px;
    background: var(--gradient-red);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: white;
    transition: var(--transition);
}

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

.why-us-card h3 {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 600;
}

.why-us-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: var(--bg-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(229, 57, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(21, 101, 192, 0.15) 0%, transparent 50%);
}

.cta-section .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-section .container > h2 {
    background: white;
    color: var(--primary-blue);
    font-size: 1.8rem;
    padding: 28px 40px;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    flex: 1;
    min-width: 300px;
}

.cta-section .container > .btn {
    background: var(--gradient-red);
    color: white;
    border: none;
    white-space: nowrap;
}

.cta-section .container:has(> h2) {
    justify-content: center;
}

.cta-content h2 {
    color: #FFFFFF;
    font-size: 2.4rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 400;
}

.cta-section .btn {
    background: var(--gradient-red);
    color: white;
    border: none;
}

.cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-red);
}

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

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--accent-red);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-content {
    animation: fadeInUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.about-content h2 {
    font-size: 2.6rem;
    color: var(--text-primary);
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--gradient-red);
    border-radius: 2px;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.85;
}

.mission-vision {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.mv-card {
    background: var(--bg-light);
    padding: 48px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.mv-card:hover {
    border-color: var(--accent-red);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.mv-card .icon {
    width: 75px;
    height: 75px;
    background: var(--gradient-red);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.9rem;
    color: white;
}

.mv-card h3 {
    color: var(--text-primary);
    margin-bottom: 16px;
    font-size: 1.4rem;
}

.mv-card p {
    color: var(--text-secondary);
    line-height: 1.75;
}

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

.stat-item {
    padding: 40px;
    background: var(--bg-light);
    border-radius: var(--radius);
    transition: var(--transition);
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.15s; }
.stat-item:nth-child(3) { animation-delay: 0.2s; }
.stat-item:nth-child(4) { animation-delay: 0.25s; }

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

.stat-item .number {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Sora', sans-serif;
}

.stat-item .label {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 8px;
    font-weight: 500;
}

/* Services Page */
.services-full .services-grid {
    grid-template-columns: repeat(3, 1fr);
}

.services-full .service-card {
    padding: 32px;
}

.services-full .service-card .icon {
    width: 65px;
    height: 65px;
    font-size: 1.6rem;
}

.services-full .service-card h3 {
    font-size: 1.15rem;
}

.services-full .service-card p {
    font-size: 0.9rem;
}

/* Services Tabs */
.services-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 12px 28px;
    border: 2px solid #E8EAF0;
    background: white;
    border-radius: 50px;
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.tab-btn.active {
    background: var(--gradient-red);
    border-color: var(--accent-red);
    color: white;
}

/* Featured Services */
.featured-services {
    margin-bottom: 30px;
}

.service-card.featured {
    border: 2px solid var(--accent-red);
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient-red);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-features {
    list-style: none;
    margin: 16px 0;
    padding: 0;
}

.service-features li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li i {
    color: var(--accent-red);
    font-size: 0.75rem;
}

/* Service Card Hidden State */
.service-card.hidden {
    display: none;
}

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

.filter-btn {
    padding: 12px 28px;
    border: 2px solid #E8EAF0;
    background: white;
    border-radius: 50px;
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.filter-btn.active {
    background: var(--gradient-red);
    border-color: var(--accent-red);
    color: white;
}

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

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.portfolio-overlay h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 6px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.portfolio-item:hover .portfolio-overlay h3,
.portfolio-item:hover .portfolio-overlay p {
    transform: translateY(0);
}

.portfolio-item.hidden {
    display: none;
}

/* FAQs Section */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius);
    margin-bottom: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 1.05rem;
    color: var(--text-primary);
    margin: 0;
}

.faq-question i {
    color: var(--accent-red);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    gap: 28px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 380px;
    max-width: 380px;
    background: white;
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

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

.testimonial-header h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.testimonial-header p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.testimonial-stars {
    color: #FFC107;
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
}

/* Testimonial Slider Controls */
.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 32px;
}

.testimonial-prev,
.testimonial-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--primary-blue);
    color: white;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.testimonial-dot.active {
    background: var(--primary-blue);
    transform: scale(1.2);
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

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

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

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--accent-red);
    transform: scale(1.2);
}

/* Contact Page */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
}

.contact-form {
    background: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.04);
}

.contact-form h3 {
    color: var(--text-primary);
    margin-bottom: 32px;
    font-size: 1.6rem;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #E8EAF0;
    border-radius: var(--radius-sm);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 0 0 0 4px rgba(13, 71, 161, 0.08);
}

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

.contact-info {
    padding: 20px 0;
}

.contact-info h3 {
    color: var(--text-primary);
    margin-bottom: 32px;
    font-size: 1.6rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
}

.info-item .icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-red);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.info-item:hover .icon {
    transform: scale(1.1);
}

.info-item .details h4 {
    color: var(--text-primary);
    margin-bottom: 6px;
    font-size: 1.1rem;
    font-weight: 600;
}

.info-item .details p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.info-item .details a {
    color: var(--accent-red);
    font-weight: 500;
}

.info-item .details a:hover {
    color: var(--accent-red-light);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 80px 0 24px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-about .logo {
    margin-bottom: 24px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: white;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-red);
    border-radius: 1px;
}

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

.footer ul a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer ul a:hover {
    color: var(--accent-red-light);
    padding-left: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom .watermark {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.8rem;
}

.footer-bottom .watermark a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: underline;
    transition: var(--transition);
}

.footer-bottom .watermark a:hover {
    color: var(--accent-red);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: var(--transition);
    animation: floatWA 3s ease-in-out infinite;
}

@keyframes floatWA {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(0);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45);
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal {
    background: white;
    border-radius: 24px;
    max-width: 480px;
    width: 100%;
    max-height: none;
    overflow-y: visible;
    overflow-x: hidden;
    transform: translateY(30px) scale(0.95) rotateX(5deg);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    margin: auto 0;
}

.modal::-webkit-scrollbar {
    width: 6px;
}

.modal::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.modal::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-red);
}

.modal::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(229, 57, 53, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1) rotateX(0);
}

.modal-header {
    padding: 20px 24px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.modal-header h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-header h3 i {
    width: 36px;
    height: 36px;
    background: var(--gradient-red);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
}

.modal-close {
    width: 38px;
    height: 38px;
    border: none;
    background: var(--bg-light);
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modal-close:hover {
    background: var(--accent-red);
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    padding: 8px 24px 24px;
    position: relative;
    z-index: 1;
    overflow-y: auto;
}

.modal-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 24px;
    margin-top: -10px;
}

/* Form Improvements */
.modal-form .form-group {
    margin-bottom: 16px;
    position: relative;
}

.modal-form .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
    font-size: 0.85rem;
    transition: var(--transition);
}

.modal-form .form-group input,
.modal-form .form-group select,
.modal-form .form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #E8EAF0;
    border-radius: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--bg-light);
    position: relative;
}

.modal-form .form-group input:focus,
.modal-form .form-group select:focus,
.modal-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: white;
    box-shadow: 
        0 0 0 4px rgba(13, 71, 161, 0.1),
        0 4px 15px rgba(13, 71, 161, 0.08);
    transform: translateY(-2px);
}

.modal-form .form-group input::placeholder,
.modal-form .form-group textarea::placeholder {
    color: #A0A8B8;
    transition: var(--transition);
}

.modal-form .form-group input:focus::placeholder,
.modal-form .form-group textarea:focus::placeholder {
    opacity: 0.6;
}

.modal-form .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235C6B7A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}

.modal-form .form-group textarea {
    min-height: 100px;
    resize: vertical;
    border-radius: 14px;
}

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

.modal-form .form-group.focused label {
    color: var(--primary-blue);
}

/* Submit Button */
.modal-form .btn-submit {
    width: 100%;
    padding: 14px 24px;
    font-size: 0.95rem;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

.modal-form .btn-submit .btn-text {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.modal-form .btn-submit .btn-icon {
    font-size: 1.1rem;
    transition: var(--transition);
}

.modal-form .btn-submit:hover .btn-icon {
    transform: translateX(4px);
}

/* Form Success Animation */
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.form-success-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.5rem;
    color: white;
    animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.form-success h4 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.form-success p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero h1 {
        font-size: 3.2rem;
    }
}

@media (max-width: 1024px) {
    .services-grid,
    .services-full .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-story {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image img {
        height: 380px;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        position: relative;
        margin: 12px 12px;
        height: 70px;
        border-radius: 16px;
    }
    
    .navbar.scrolled .container {
        height: 65px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: calc(100% + 8px);
        left: 12px;
        right: 12px;
        background: white;
        flex-direction: column;
        padding: 24px;
        gap: 0;
        box-shadow: var(--shadow);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        border-radius: 16px;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        color: var(--text-primary);
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 16px;
    }
    
    .nav-links .btn {
        margin: 16px 24px;
        width: calc(100% - 48px);
    }
    
    .hero {
        padding-top: 120px;
        padding-bottom: 50px;
    }
    
    .hero h1 {
        font-size: 2.4rem;
    }
    
    .hero p {
        font-size: 1.05rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-card {
        padding: 36px;
    }
    
    .hero-card h3 {
        font-size: 1.5rem;
    }
    
    .hero-stats {
        gap: 24px;
        margin-top: 30px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .particle {
        display: none;
    }
    
    .hero-lines {
        display: none;
    }
    
    .services-grid,
    .services-full .services-grid,
    .why-us-grid,
    .mission-vision,
    .stats,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .cta-section .container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 1.9rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .whatsapp-float {
        bottom: 24px;
        right: 24px;
        width: 58px;
        height: 58px;
        font-size: 1.8rem;
    }
    
    .page-hero h1 {
        font-size: 2.4rem;
    }
    
    .stat-item .number {
        font-size: 2.8rem;
    }
    
    .contact-form {
        padding: 32px;
    }
    
    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
        padding: 24px;
    }
}
