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

:root {
    --primary-color: #2563eb;
    --primary-glow: rgba(37, 99, 235, 0.4);
    --secondary-color: #64748b;
    --text-color: #334155;
    --heading-color: #0f172a;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-glass: rgba(255, 255, 255, 0.8);
    --footer-bg: #1e293b;
    --footer-text: #cbd5e1;
    --border-color: #f1f5f9;
    --shadow-soft: 0 10px 30px -5px rgba(0, 0, 0, 0.04), 0 5px 15px -5px rgba(0, 0, 0, 0.02);
    --shadow-premium: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--heading-color);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Reusable Components */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.section-padding {
    padding: 120px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 10px 20px -5px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px var(--primary-glow);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
}

/* Glassmorphism Classes */
.glass {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Navbar */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 20px 0;
}

header.scrolled {
    background: var(--bg-glass);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    box-shadow: var(--shadow-soft);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--heading-color);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-smooth);
}

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

.menu-toggle {
    display: none;
    cursor: pointer;
}

/* Hero Sections (Global & Page Specific) */
.hero, .page-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: white;
}

.hero {
    height: 100vh;
}

.page-hero {
    padding-top: 180px;
    padding-bottom: 120px;
    height: auto;
    min-height: 50vh;
}

.hero::before, .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.4));
    z-index: 1;
}

.hero-index { background-image: url('../images/hero/hero-bg.png'); }
.hero-about { background-image: url('../images/about/about-company.png'); }
.hero-services { background-image: url('../images/services/maintenance.png'); }
.hero-contact { background-image: url('../images/about/who-we-are.png'); }

.hero-content, .page-hero .container {
    position: relative;
    z-index: 2;
}

/* Cinematic Slider Hero */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
}

.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.1);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    animation: kenburns 20s linear infinite;
}

@keyframes kenburns {
    from { transform: scale(1); }
    to { transform: scale(1.15); }
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
    z-index: 2;
}

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

.service-tag {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.hero-slider-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #ffffff !important;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.hero-slider-content p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.slider-dots {
    display: flex;
    gap: 1rem;
    margin-top: 4rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .hero-slider-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-slider-content {
        text-align: center;
    }
    
    .slider-dots {
        justify-content: center;
    }
}

/* Premium Split Hero */
.hero-split {
    min-height: 95vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    padding: 120px 0 80px;
}

.hero-split-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

/* Premium Light CTA */
.cta-banner-new {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: white;
}

.cta-bg-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('../images/hero/hero-bg.png') no-repeat center center/cover;
    transform: scale(1.05); /* Slight zoom for depth */
}

.cta-overlay-light {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 40%, rgba(255,255,255,0.2) 100%);
}

.container-relative {
    position: relative;
    z-index: 5;
}

.cta-content-new {
    max-width: 700px;
}

.cta-tag {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.cta-content-new h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--heading-color);
    margin-bottom: 2rem;
}

.cta-content-new p {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 3.5rem;
    line-height: 1.6;
}

.cta-flex {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.btn-cta-main {
    padding: 1.2rem 3.5rem;
    font-size: 1.1rem;
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.2);
}

.cta-trust {
    display: flex;
    gap: 2rem;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--heading-color);
}

.trust-pill i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .cta-banner-new {
        text-align: center;
    }
    
    .cta-overlay-light {
        background: rgba(255,255,255,0.9);
    }
    
    .cta-flex {
        flex-direction: column;
        gap: 2rem;
    }
    
    .cta-content-new h2 {
        font-size: 2.8rem;
    }
}

.trust-line {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.hero-split-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
}

.hero-split-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-btns-group {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

/* Stats Bar */
.hero-stats-bar {
    display: flex;
    gap: 3rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 2rem;
}

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

.stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--heading-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Visual Right */
.hero-img-container {
    position: relative;
    padding: 20px;
}

.hero-img-container img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.1);
    transform: perspective(1000px) rotateY(-5deg);
}

.accent-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    animation: float 4s ease-in-out infinite alternate;
}

.accent-card i {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
}

.hero-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -1;
}

.mock-bg {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0.08;
    filter: blur(10px);
    z-index: -2;
    transform: rotate(-10deg);
}

.mock-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mock-1 {
    width: 300px;
    height: 350px;
    top: 10%;
    left: -5%;
}

/* Industry Tag System for Parity */
.industry-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.mock-2 {
    width: 400px;
    height: 300px;
    bottom: -5%;
    right: 20%;
}

/* Animations */
@keyframes float {
    from { transform: translateY(0); }
    to { transform: translateY(-20px); }
}

.floating {
    animation: float 6s ease-in-out infinite alternate;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 0.8rem;
    font-weight: 600;
}

.scroll-indicator i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

.hero h1, .page-hero h1, 
.hero h2, .page-hero h2, 
.hero h3, .page-hero h3, 
.hero h4, .page-hero h4, 
.hero h5, .page-hero h5, 
.hero h6, .page-hero h6,
.hero p, .page-hero p,
.hero span, .page-hero span {
    color: white !important;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 4.5rem);
    color: white;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

/* Cards & Grid Improvements */
.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.section-title .accent-bar {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto;
    border-radius: 10px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.card-premium {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    text-align: left;
}

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

/* Contact Page Premium Styles */
.contact-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.contact-info-panel {
    background: var(--bg-light);
    padding: 4rem;
    border-radius: 30px;
    border: 1px solid var(--border-color);
}

.info-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-header p {
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    box-shadow: var(--shadow-soft);
}

.info-item h5 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.social-panel h5 {
    margin-bottom: 1.5rem;
}

/* Floating Label Form */
.form-card {
    padding: 4rem;
    border-radius: 30px;
}

.input-group {
    position: relative;
    margin-bottom: 2rem;
}

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: white;
    font-size: 1rem;
    outline: none;
    transition: var(--transition-smooth);
}

.input-group label {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    pointer-events: none;
    transition: var(--transition-smooth);
    background: white;
    padding: 0 5px;
}

.input-group textarea + label {
    top: 1.5rem;
    transform: none;
}

.input-group input:focus, 
.input-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-glow);
}

.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:focus + label,
.input-group textarea:not(:placeholder-shown) + label {
    top: 0;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .contact-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .service-block, .service-block.reverse {
        flex-direction: column !important;
        gap: 3rem;
    }
    
    .service-img-wrapper {
        width: 100%;
        height: 350px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Services Page Zig-Zag System */
.service-strip {
    padding: 100px 0;
}

.service-strip.bg-alternate {
    background: var(--bg-light);
}

.service-block {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-img-wrapper {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: var(--shadow-premium);
    height: 450px;
}

.service-img-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-bullets {
    margin-top: 1.5rem;
    list-style: none;
}

.service-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.service-bullets i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Reveal Animations */
.reveal-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease-out;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease-out;
}

.active-reveal {
    opacity: 1 !important;
    transform: translate(0) !important;
}

/* Card Stack System */
.card-stack {
    padding: 0 !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.card-img-top {
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.icon-stack {
    position: absolute; 
    bottom: -25px; 
    right: 25px; 
    background: var(--primary-color); 
    color: white; 
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    display: flex !important; 
    align-items: center !important; 
    justify-content: center !important; 
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    z-index: 10;
    transition: var(--transition-smooth);
}

.icon-stack i {
    font-size: 1.2rem !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.card-body-stack {
    padding: 3rem 2.5rem 2.5rem;
}

.card-stack:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.card-stack:hover .icon-stack {
    transform: scale(1.1) rotate(10deg);
    background: var(--heading-color);
}

.btn-text {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1.5rem;
    display: block;
    cursor: pointer;
}

.industry-tag i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.industry-tag span {
    font-weight: 600;
    color: var(--heading-color);
    font-size: 1.1rem;
}

.industry-tag:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
    border-color: var(--primary-color);
}

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

/* Footer Premium */
footer {
    background: #000000 !important;
    color: #94a3b8;
    padding: 100px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.8rem;
}

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

.footer-desc {
    line-height: 1.8;
    margin: 1.5rem 0 2rem;
}

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

.footer-links li {
    margin-bottom: 1.2rem;
}

.footer-links a, .footer-links span {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.social-bar {
    display: flex;
    gap: 1rem;
}

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

.social-bar a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--footer-text);
    font-size: 0.9rem;
}

/* Modal System */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: var(--transition-smooth);
}

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

.modal-content {
    background: white;
    max-width: 700px;
    width: 100%;
    padding: 4rem;
    border-radius: 30px;
    position: relative;
    box-shadow: var(--shadow-premium);
    animation: modalIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--secondary-color);
    transition: var(--transition-smooth);
}

.close-modal:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.modal-body h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.modal-body p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.modal-body ul {
    list-style: none;
    margin-top: 1rem;
}

.modal-body li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.modal-body li i {
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .grid-4, .grid-5 {
        grid-template-columns: 1fr 1fr;
    }
    .hero-split-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

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

    .hero-split-content p {
        margin: 0 auto 2.5rem;
    }

    .hero-btns-group {
        justify-content: center;
    }

    .hero-stats-bar {
        justify-content: center;
    }

    .hero-split-visual {
        order: -1;
    }

    .accent-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .grid-3, .grid-4, .grid-5 {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
