/* ================================
   COMERO COMPANY LTD - Modern Website
   Enhanced CSS Design System
   ================================ */

/* === CSS Variables === */
:root {
    --primary-color: #1a5f7a;
    --primary-dark: #134b5f;
    --primary-light: #2d8fb3;
    --secondary-color: #f97316;
    --secondary-light: #fb923c;
    --accent-color: #0ea5e9;
    --dark-color: #1e293b;
    --dark-light: #334155;
    --text-color: #475569;
    --text-light: #64748b;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;

    /* Enhanced Shadows - INTENSIFIED */
    --shadow-sm: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
    --shadow-md: 0 6px 12px -2px rgba(0, 0, 0, 0.15), 0 4px 6px -2px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 15px 25px -5px rgba(0, 0, 0, 0.15), 0 8px 10px -6px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 25px 40px -8px rgba(0, 0, 0, 0.18), 0 12px 16px -8px rgba(0, 0, 0, 0.15);
    --shadow-2xl: 0 35px 70px -15px rgba(0, 0, 0, 0.35);
    --shadow-inner: inset 0 3px 6px 0 rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 35px rgba(26, 95, 122, 0.5);
    --shadow-glow-orange: 0 0 40px rgba(249, 115, 22, 0.6);
    --shadow-intense: 0 30px 60px -15px rgba(0, 0, 0, 0.3), 0 15px 30px -10px rgba(0, 0, 0, 0.2);

    /* Bevel Effects - INTENSIFIED */
    --bevel-light: inset 2px 2px 4px rgba(255, 255, 255, 0.9), inset -2px -2px 4px rgba(0, 0, 0, 0.15);
    --bevel-dark: inset 2px 2px 4px rgba(255, 255, 255, 0.25), inset -2px -2px 4px rgba(0, 0, 0, 0.4);
    --bevel-raised: 6px 6px 15px rgba(0, 0, 0, 0.2), -6px -6px 15px rgba(255, 255, 255, 0.95);
    --bevel-pressed: inset 5px 5px 12px rgba(0, 0, 0, 0.15), inset -5px -5px 12px rgba(255, 255, 255, 0.9);
    --bevel-strong: 8px 8px 20px rgba(0, 0, 0, 0.25), -4px -4px 12px rgba(255, 255, 255, 1);

    /* Glass Effects - INTENSIFIED */
    --glass-bg: rgba(255, 255, 255, 0.12);
    --glass-bg-strong: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.35);
    --glass-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
    --glass-blur: blur(30px);
    --glass-blur-strong: blur(40px);

    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-elastic: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    --border-radius-2xl: 24px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

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

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

/* === Utility Classes === */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* === Section Styling with Clear Divisions === */
.section {
    padding: 6rem 0;
    position: relative;
    animation: sectionFadeIn 0.8s ease forwards;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), var(--primary-color), var(--border-color), transparent);
}

.section:first-of-type::before {
    display: none;
}

/* Section Divider Lines */
.section-divider {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--secondary-color), var(--primary-color), transparent);
    border-radius: 2px;
    margin: 0;
    box-shadow: 0 2px 10px rgba(26, 95, 122, 0.3);
}

.section-sm {
    padding: 3rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.6s ease forwards;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    box-shadow: 0 3px 10px rgba(249, 115, 22, 0.4);
    animation: shimmer 2s infinite;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 1.5rem auto 0;
    font-size: 1.1rem;
}

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

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

.text-secondary {
    color: var(--secondary-color);
}

/* === Enhanced Buttons with Bevels === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.25rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    transition: all var(--transition-bounce);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    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.3), transparent);
    transition: left 0.5s ease;
}

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

.btn-primary {
    background: linear-gradient(145deg, var(--primary-light), var(--primary-dark));
    color: var(--white);
    box-shadow:
        0 6px 20px rgba(26, 95, 122, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 12px 30px rgba(26, 95, 122, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2),
        var(--shadow-glow);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow:
        0 4px 15px rgba(26, 95, 122, 0.3),
        var(--bevel-pressed);
}

.btn-secondary {
    background: linear-gradient(145deg, var(--secondary-light), var(--secondary-color));
    color: var(--white);
    box-shadow:
        0 6px 20px rgba(249, 115, 22, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 12px 30px rgba(249, 115, 22, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2),
        var(--shadow-glow-orange);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow:
        0 8px 25px rgba(26, 95, 122, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-white {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    color: var(--primary-color);
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.btn-white:hover {
    background: linear-gradient(145deg, #f8f8f8, #e8e8e8);
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* === Grid System === */
.grid {
    display: grid;
    gap: 2.5rem;
}

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

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

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

@media (max-width: 992px) {

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

@media (max-width: 768px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* === Enhanced Header with INTENSE Glassmorphism === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(35px) saturate(180%);
    -webkit-backdrop-filter: blur(35px) saturate(180%);
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.15),
        0 4px 15px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    transition: all var(--transition-normal);
    animation: headerGlassShimmer 8s ease-in-out infinite;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
}

.logo-text:hover {
    transform: scale(1.05);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15);
}

.logo-text span {
    color: var(--secondary-color);
}

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

.nav-link {
    font-weight: 500;
    color: var(--dark-color);
    position: relative;
    padding: 0.5rem 0;
    transition: all var(--transition-normal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transition: width var(--transition-normal);
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.5);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    transform: translateY(-2px);
}

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

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    background: rgba(26, 95, 122, 0.08);
    border-radius: var(--border-radius);
    transition: all var(--transition-normal);
}

.header-phone:hover {
    background: rgba(26, 95, 122, 0.15);
    transform: scale(1.05);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    border-radius: 2px;
    transition: var(--transition-normal);
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 85px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: var(--shadow-xl);
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

    .header-phone {
        display: none;
    }
}

/* === Hero Section with Enhanced Effects === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.92) 0%, rgba(30, 41, 59, 0.88) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
    animation: heroGlow 15s ease-in-out infinite;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero-content {
    max-width: 750px;
    color: var(--white);
    padding-top: 80px;
    animation: heroContentSlide 1s ease forwards;
}

.hero-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(15px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: badgePulse 3s ease-in-out infinite;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease forwards 0.2s;
    opacity: 0;
}

.hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease forwards 0.4s;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease forwards 0.6s;
    opacity: 0;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    animation: fadeInUp 0.8s ease forwards 0.8s;
    opacity: 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.12);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 30px rgba(249, 115, 22, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-top: 0.5rem;
}

/* === About Section with Enhanced Effects === */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
    animation: slideInLeft 0.8s ease forwards;
}

.about-image img {
    border-radius: var(--border-radius-2xl);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.2),
        0 10px 20px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.03) rotate(1deg);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.25),
        0 15px 30px rgba(0, 0, 0, 0.2);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -25px;
    left: -25px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    border-radius: var(--border-radius-xl);
    z-index: -1;
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
    animation: floatElement 4s ease-in-out infinite;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    z-index: -1;
    box-shadow: 0 10px 30px rgba(26, 95, 122, 0.4);
    animation: floatElement 5s ease-in-out infinite reverse;
}

.about-content {
    animation: slideInRight 0.8s ease forwards;
}

.about-content h2 {
    margin-bottom: 1.5rem;
    position: relative;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin: 2.5rem 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--border-radius-lg);
    box-shadow:
        var(--bevel-raised),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all var(--transition-normal);
}

.about-feature:hover {
    transform: translateX(8px);
    box-shadow:
        6px 6px 15px rgba(0, 0, 0, 0.1),
        -2px -2px 8px rgba(255, 255, 255, 1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.about-feature-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(26, 95, 122, 0.4);
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* === Services Section with Glassmorphism === */
.services {
    background: linear-gradient(180deg, var(--light-bg) 0%, #e8f4f8 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    box-shadow: 0 3px 15px rgba(26, 95, 122, 0.4);
}

.services::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color), var(--secondary-color));
    box-shadow: 0 -3px 15px rgba(249, 115, 22, 0.4);
}

.service-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(35px) saturate(180%);
    -webkit-backdrop-filter: blur(35px) saturate(180%);
    padding: 3rem;
    border-radius: var(--border-radius-2xl);
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.12),
        0 8px 25px rgba(0, 0, 0, 0.08),
        8px 8px 20px rgba(0, 0, 0, 0.1),
        -4px -4px 15px rgba(255, 255, 255, 0.95),
        inset 0 2px 0 rgba(255, 255, 255, 1),
        inset 0 -2px 0 rgba(0, 0, 0, 0.05);
    transition: all var(--transition-elastic);
    position: relative;
    overflow: hidden;
    animation: cardFloat 0.6s ease forwards, cardPulseGlow 4s ease-in-out infinite;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% 100%;
    transform: scaleX(0);
    transition: transform var(--transition-normal);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.6);
    animation: gradientShift 3s ease infinite;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    animation: cardGlowPulse 5s ease-in-out infinite;
}

.service-card:hover {
    transform: translateY(-20px) scale(1.04);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.18),
        0 15px 40px rgba(0, 0, 0, 0.12),
        10px 10px 25px rgba(0, 0, 0, 0.15),
        -6px -6px 20px rgba(255, 255, 255, 1),
        inset 0 3px 0 rgba(255, 255, 255, 1),
        inset 0 -2px 0 rgba(0, 0, 0, 0.08),
        0 0 60px rgba(26, 95, 122, 0.25),
        0 0 80px rgba(249, 115, 22, 0.15);
}

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

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--primary-light), var(--primary-dark));
    border-radius: var(--border-radius-xl);
    margin-bottom: 1.75rem;
    font-size: 2.25rem;
    color: var(--white);
    box-shadow:
        0 10px 25px rgba(26, 95, 122, 0.35),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow:
        0 15px 35px rgba(26, 95, 122, 0.45),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

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

.service-link:hover {
    color: var(--secondary-color);
    gap: 1rem;
}

/* === Projects Section with Enhanced Cards === */
.project-card {
    position: relative;
    border-radius: var(--border-radius-2xl);
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
    animation: projectCardReveal 0.6s ease forwards;
}

.project-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    border-radius: var(--border-radius-2xl);
    transition: all var(--transition-normal);
    z-index: 2;
    pointer-events: none;
}

.project-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.2),
        0 15px 30px rgba(0, 0, 0, 0.15),
        0 0 50px rgba(249, 115, 22, 0.2);
}

.project-card:hover::before {
    border-color: var(--secondary-color);
    box-shadow: inset 0 0 20px rgba(249, 115, 22, 0.2);
}

.project-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.project-card:hover img {
    transform: scale(1.15);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 95, 122, 0.95) 0%, rgba(26, 95, 122, 0.4) 40%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    color: var(--white);
    transition: all var(--transition-normal);
}

.project-card:hover .project-overlay {
    background: linear-gradient(to top, rgba(26, 95, 122, 0.98) 0%, rgba(26, 95, 122, 0.6) 50%, rgba(26, 95, 122, 0.2) 100%);
}

.project-category {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.5);
    animation: categoryPulse 2s ease-in-out infinite;
}

.project-overlay h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 1.4rem;
}

.project-overlay p {
    opacity: 0.9;
    font-size: 0.95rem;
    margin: 0;
}

/* === Testimonials with Enhanced Glassmorphism === */
.testimonials {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, #0f2d3a 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light), var(--secondary-color));
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.5);
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--secondary-light), var(--secondary-color), var(--secondary-light));
    box-shadow: 0 -4px 20px rgba(249, 115, 22, 0.5);
}

.testimonials .section-title h2 {
    color: var(--white);
}

.testimonials .section-title h2::after {
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
    box-shadow: 0 3px 15px rgba(249, 115, 22, 0.6);
}

.testimonials .section-title p {
    color: rgba(255, 255, 255, 0.85);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    padding: 2.75rem;
    border-radius: var(--border-radius-2xl);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 10px 25px rgba(0, 0, 0, 0.2),
        8px 8px 25px rgba(0, 0, 0, 0.25),
        -4px -4px 15px rgba(255, 255, 255, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.2),
        inset 0 -2px 0 rgba(0, 0, 0, 0.15);
    transition: all var(--transition-elastic);
    animation: testimonialFloat 0.6s ease forwards, testimonialPulse 5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light), var(--secondary-color));
    background-size: 200% 100%;
    animation: gradientShift 4s ease infinite;
    box-shadow: 0 3px 12px rgba(249, 115, 22, 0.5);
}

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.04);
    background: rgba(255, 255, 255, 0.1);
    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.35),
        0 15px 40px rgba(0, 0, 0, 0.25),
        10px 10px 30px rgba(0, 0, 0, 0.3),
        -6px -6px 20px rgba(255, 255, 255, 0.15),
        inset 0 3px 0 rgba(255, 255, 255, 0.25),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2),
        0 0 60px rgba(249, 115, 22, 0.25),
        0 0 100px rgba(26, 95, 122, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.75rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.35rem;
    box-shadow:
        0 8px 20px rgba(249, 115, 22, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transition: all var(--transition-normal);
}

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

.testimonial-info h4 {
    color: var(--white);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.testimonial-info span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.testimonial-stars {
    color: var(--secondary-color);
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
    text-shadow: 0 2px 8px rgba(249, 115, 22, 0.5);
}

/* === CTA Section with Bevels === */
.cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 50%, #ff8534 100%);
    text-align: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--primary-color));
    box-shadow: 0 4px 20px rgba(26, 95, 122, 0.5);
}

.cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-color), var(--primary-light));
    box-shadow: 0 -4px 20px rgba(26, 95, 122, 0.5);
}

.cta h2 {
    color: var(--white);
    margin-bottom: 1.25rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.25);
    animation: ctaPulse 3s ease-in-out infinite;
}

.cta p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* === Contact Section Enhanced === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3.5rem;
}

.contact-info-card {
    background: linear-gradient(145deg, var(--primary-color), var(--primary-dark));
    padding: 3rem;
    border-radius: var(--border-radius-2xl);
    color: var(--white);
    box-shadow:
        0 25px 50px rgba(26, 95, 122, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: contactGlow 10s linear infinite;
}

.contact-info-card h3 {
    color: var(--white);
    margin-bottom: 1.75rem;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    transition: all var(--transition-normal);
}

.contact-item:hover {
    transform: translateX(8px);
}

.contact-item-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-lg);
    font-size: 1.35rem;
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all var(--transition-normal);
}

.contact-item:hover .contact-item-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.contact-item h4 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item p {
    margin: 0;
    font-size: 1.05rem;
}

.contact-social {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 1.25rem;
    transition: all var(--transition-bounce);
    box-shadow:
        0 6px 15px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.social-link:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-8px) scale(1.1);
    box-shadow:
        0 15px 30px rgba(249, 115, 22, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: var(--border-radius-2xl);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 10px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--dark-color);
}

.form-control {
    width: 100%;
    padding: 1.1rem 1.35rem;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-normal);
    font-family: inherit;
    background: var(--white);
    box-shadow:
        var(--bevel-pressed),
        inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow:
        0 0 0 4px rgba(26, 95, 122, 0.15),
        var(--bevel-pressed);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

/* === Footer with Enhanced Effects === */
.footer {
    background: linear-gradient(180deg, var(--dark-color) 0%, #0f1825 100%);
    color: rgba(255, 255, 255, 0.85);
    padding-top: 5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3.5rem;
}

.footer-brand p {
    margin-top: 1.25rem;
    line-height: 1.8;
}

.footer-title {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.5);
}

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

.footer-links a {
    transition: all var(--transition-normal);
    display: inline-block;
}

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

.footer-bottom {
    margin-top: 4rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* === Page Header Enhanced === */
.page-header {
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.93) 0%, rgba(30, 41, 59, 0.9) 100%);
    padding: 12rem 0 5rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light), var(--secondary-color));
    box-shadow: 0 -4px 20px rgba(249, 115, 22, 0.5);
}

.page-header::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
    animation: pageHeaderGlow 8s ease-in-out infinite;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

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

.page-header h1 {
    color: var(--white);
    margin-bottom: 1.25rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.6s ease forwards;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    opacity: 0.9;
    animation: fadeInUp 0.6s ease forwards 0.2s;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    transition: all var(--transition-normal);
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

/* === Enhanced Animations === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroGlow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-30%, -30%) scale(1.2);
        opacity: 0.8;
    }
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

@keyframes heroContentSlide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    50% {
        box-shadow: 0 8px 40px rgba(249, 115, 22, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

@keyframes floatElement {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(3deg);
    }
}

@keyframes shimmer {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

@keyframes cardFloat {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes projectCardReveal {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes testimonialFloat {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes categoryPulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(249, 115, 22, 0.5);
    }

    50% {
        box-shadow: 0 6px 25px rgba(249, 115, 22, 0.7);
    }
}

@keyframes ctaPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

@keyframes contactGlow {
    0% {
        transform: translate(-100%, -100%) rotate(0deg);
    }

    100% {
        transform: translate(0%, 0%) rotate(360deg);
    }
}

@keyframes pageHeaderGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes sectionFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* === NEW INTENSIFIED ANIMATIONS === */
@keyframes headerGlassShimmer {

    0%,
    100% {
        background: rgba(255, 255, 255, 0.7);
    }

    50% {
        background: rgba(255, 255, 255, 0.75);
    }
}

@keyframes cardPulseGlow {

    0%,
    100% {
        box-shadow:
            0 20px 50px rgba(0, 0, 0, 0.12),
            0 8px 25px rgba(0, 0, 0, 0.08),
            8px 8px 20px rgba(0, 0, 0, 0.1),
            -4px -4px 15px rgba(255, 255, 255, 0.95),
            inset 0 2px 0 rgba(255, 255, 255, 1),
            inset 0 -2px 0 rgba(0, 0, 0, 0.05);
    }

    50% {
        box-shadow:
            0 22px 55px rgba(0, 0, 0, 0.14),
            0 10px 30px rgba(0, 0, 0, 0.1),
            8px 8px 22px rgba(0, 0, 0, 0.12),
            -4px -4px 16px rgba(255, 255, 255, 1),
            inset 0 2px 0 rgba(255, 255, 255, 1),
            inset 0 -2px 0 rgba(0, 0, 0, 0.06),
            0 0 40px rgba(26, 95, 122, 0.1);
    }
}

@keyframes testimonialPulse {

    0%,
    100% {
        border-color: rgba(255, 255, 255, 0.2);
    }

    50% {
        border-color: rgba(255, 255, 255, 0.35);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes cardGlowPulse {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

.animate-delay-4 {
    animation-delay: 0.4s;
}

/* === Responsive === */
@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .btn {
        width: 100%;
        justify-content: center;
    }

    .stat-item {
        padding: 1rem;
    }
}