/* ==========================================
   I&B Dakwerken - Professional Website Styles
   ========================================== */

/* ==========================================
   Root Variables & Reset
   ========================================== */
:root {
    --primary-color: #0a2463;
    --primary-dark: #061a47;
    --secondary-color: #1e4a8a;
    --accent-color: #c62828;
    --accent-light: #ef4444;
    --dark-color: #1e293b;
    --gray-dark: #334155;
    --gray-medium: #64748b;
    --gray-light: #e2e8f0;
    --white: #ffffff;
    --success: #10b981;
    --error: #ef4444;

    --font-primary: 'Poppins', sans-serif;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);

    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

/* ==========================================
   Container & Layout
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   Header & Navigation
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo img {
    height: 70px;
    width: auto;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--dark-color);
    position: relative;
    padding: 0.5rem 0;
}

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-contact .btn-call {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-contact .btn-call:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 5px;
}

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

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #0a1628 0%, #0d1b2a 50%, #1b263b 100%);
    position: relative;
    margin-top: 70px;
    padding: 4rem 0;
    overflow: hidden;
}

/* Animated Mesh Background */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 50%, rgba(30, 74, 138, 0.6) 0%, transparent 30%),
        radial-gradient(circle at 80% 50%, rgba(198, 40, 40, 0.5) 0%, transparent 30%),
        radial-gradient(circle at 50% 20%, rgba(15, 52, 96, 0.7) 0%, transparent 30%),
        radial-gradient(circle at 50% 80%, rgba(139, 35, 35, 0.4) 0%, transparent 30%);
    filter: blur(80px);
    animation: meshMove 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
}

@keyframes meshMove {
    0%, 100% {
        transform: translate(0%, 0%) rotate(0deg);
        opacity: 0.8;
    }
    25% {
        transform: translate(-10%, 10%) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translate(10%, -10%) rotate(180deg);
        opacity: 0.7;
    }
    75% {
        transform: translate(-10%, -10%) rotate(270deg);
        opacity: 0.9;
    }
}

/* Glowing Orbs Layer */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 70% 30%, rgba(30, 74, 138, 0.3) 0%, transparent 25%),
        radial-gradient(circle at 30% 70%, rgba(198, 40, 40, 0.3) 0%, transparent 25%),
        radial-gradient(circle at 90% 60%, rgba(30, 74, 138, 0.2) 0%, transparent 20%),
        radial-gradient(circle at 10% 40%, rgba(198, 40, 40, 0.2) 0%, transparent 20%);
    filter: blur(60px);
    animation: orbsFloat 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes orbsFloat {
    0%, 100% {
        transform: translate(0%, 0%);
    }
    33% {
        transform: translate(-5%, 5%);
    }
    66% {
        transform: translate(5%, -5%);
    }
}

/* Diagonal Light Streaks */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, transparent 0%, rgba(30, 74, 138, 0.1) 30%, transparent 50%, rgba(198, 40, 40, 0.08) 70%, transparent 100%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 0%, transparent 30%, rgba(30, 74, 138, 0.05) 60%, transparent 100%);
    background-size: 300% 300%;
    animation: diagonalFlow 25s ease-in-out infinite;
    pointer-events: none;
    z-index: 3;
}

@keyframes diagonalFlow {
    0%, 100% {
        background-position: 0% 50%;
        opacity: 0.6;
    }
    50% {
        background-position: 100% 50%;
        opacity: 1;
    }
}

/* Add glow effect on hover (optional) */
.hero:hover::before {
    animation: meshMove 20s ease-in-out infinite, pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        filter: blur(80px) brightness(1);
    }
    50% {
        filter: blur(90px) brightness(1.3);
    }
}

.hero-content {
    position: relative;
    z-index: 100;
    text-align: center;
    color: var(--white);
    animation: fadeInUp 1s ease;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 100;
}

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

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

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

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

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

.btn-white:hover {
    background: var(--gray-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* ==========================================
   Features Section
   ========================================== */
.features {
    padding: 4rem 0;
    background: var(--white);
    margin-top: -50px;
    position: relative;
    z-index: 20;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--gray-medium);
}

/* ==========================================
   Services Section
   ========================================== */
.services {
    padding: 5rem 0;
    background: var(--gray-light);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-medium);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 0;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    overflow: hidden;
}

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

.service-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 3rem;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 36, 99, 0.7) 0%, rgba(10, 36, 99, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    background: linear-gradient(to bottom, rgba(198, 40, 40, 0.7) 0%, rgba(10, 36, 99, 0.9) 100%);
}

.service-overlay i {
    font-size: 3.5rem;
    color: var(--white);
    transition: var(--transition);
}

.service-card:hover .service-overlay i {
    transform: scale(1.2);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    padding: 1.5rem 2rem 0 2rem;
}

.service-card p {
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
    padding: 0 2rem;
}

.service-link {
    color: var(--accent-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 2rem 2rem 2rem;
}

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

/* ==========================================
   Why Choose Us Section
   ========================================== */
.why-choose {
    padding: 5rem 0;
    background: var(--white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: center;
}

.why-choose-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

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

.why-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.why-item i {
    color: var(--success);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.why-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--dark-color);
}

.why-item p {
    color: var(--gray-medium);
}

.why-choose-image {
    display: flex;
    justify-content: center;
}

.why-choose-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 8rem;
    opacity: 0.9;
}

/* ==========================================
   CTA Section
   ========================================== */
.cta {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0a1628 0%, #0d1b2a 50%, #1b263b 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Mesh Background for CTA */
.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 30% 40%, rgba(198, 40, 40, 0.6) 0%, transparent 30%),
        radial-gradient(circle at 70% 60%, rgba(30, 74, 138, 0.5) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(15, 52, 96, 0.7) 0%, transparent 30%),
        radial-gradient(circle at 20% 70%, rgba(139, 35, 35, 0.4) 0%, transparent 30%);
    filter: blur(80px);
    animation: ctaMeshMove 18s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
}

@keyframes ctaMeshMove {
    0%, 100% {
        transform: translate(0%, 0%) rotate(0deg);
        opacity: 0.8;
    }
    33% {
        transform: translate(8%, -8%) rotate(120deg);
        opacity: 1;
    }
    66% {
        transform: translate(-8%, 8%) rotate(240deg);
        opacity: 0.7;
    }
}

/* Glowing Orbs for CTA */
.cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 80% 40%, rgba(198, 40, 40, 0.3) 0%, transparent 25%),
        radial-gradient(circle at 20% 60%, rgba(30, 74, 138, 0.3) 0%, transparent 25%),
        radial-gradient(circle at 50% 20%, rgba(30, 74, 138, 0.2) 0%, transparent 20%),
        radial-gradient(circle at 50% 80%, rgba(198, 40, 40, 0.2) 0%, transparent 20%);
    filter: blur(60px);
    animation: ctaOrbsFloat 14s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes ctaOrbsFloat {
    0%, 100% {
        transform: translate(0%, 0%);
    }
    50% {
        transform: translate(3%, -3%);
    }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 100;
}

.cta h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 1rem;
}

.footer-col p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

.footer-col h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col ul li a {
    color: var(--gray-light);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-light);
}

.contact-info i {
    color: var(--primary-color);
    font-size: 1.125rem;
}

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-light);
}

/* ==========================================
   Page Header
   ========================================== */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(180deg, #0a1628 0%, #0d1b2a 50%, #1b263b 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    margin-top: 70px;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 40% 50%, rgba(30, 74, 138, 0.5) 0%, transparent 30%),
        radial-gradient(circle at 60% 50%, rgba(198, 40, 40, 0.4) 0%, transparent 30%),
        radial-gradient(circle at 50% 30%, rgba(15, 52, 96, 0.6) 0%, transparent 30%);
    filter: blur(70px);
    animation: pageHeaderMove 16s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    opacity: 0.7;
}

@keyframes pageHeaderMove {
    0%, 100% {
        transform: translate(0%, 0%) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translate(-5%, 5%) rotate(180deg);
        opacity: 0.9;
    }
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.95;
    position: relative;
    z-index: 10;
}

/* ==========================================
   Services Detail Page
   ========================================== */
.services-detail {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.services-intro p {
    font-size: 1.2rem;
    color: var(--gray-medium);
    line-height: 1.8;
}

.service-detail-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3.5rem;
    padding: 3.5rem;
    background: var(--white);
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color), var(--accent-light));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: var(--transition);
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.service-detail-card.reverse {
    direction: rtl;
}

.service-detail-card.reverse .service-detail-content {
    direction: ltr;
}

.service-detail-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3.5rem;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(10, 36, 99, 0.3);
    transition: all 0.4s ease;
}

.service-detail-card:hover .service-detail-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 15px 40px rgba(198, 40, 40, 0.4);
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: var(--dark-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 0.8rem;
}

.service-detail-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    border-radius: 3px;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1.2rem;
    color: var(--dark-color);
    font-weight: 600;
}

.service-detail-content p {
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.08rem;
}

.service-detail-content ul {
    margin-bottom: 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.8rem;
}

.service-detail-content ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: var(--gray-dark);
    background: rgba(16, 185, 129, 0.05);
    border-radius: 10px;
    transition: var(--transition);
}

.service-detail-content ul li:hover {
    background: rgba(16, 185, 129, 0.1);
    transform: translateX(5px);
}

.service-detail-content ul li i {
    color: var(--success);
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* ==========================================
   About Page
   ========================================== */
.about-content {
    padding: 5rem 0;
    background: var(--white);
}

/* Modern About Intro */
.about-intro-modern {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.about-intro-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    box-shadow: 0 10px 30px rgba(10, 36, 99, 0.3);
    animation: floatIcon 3s ease-in-out infinite;
}

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

.about-intro-modern h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-weight: 700;
}

.about-intro-modern .lead {
    font-size: 1.3rem;
    color: var(--gray-medium);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.9;
}

/* Story Grid */
.about-story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-story-image {
    position: relative;
}

.about-story-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.2;
}

.about-story-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.about-story-image:hover img {
    transform: scale(1.02);
}

/* Section Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(198, 40, 40, 0.3);
}

.about-story-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.3;
}

.about-story-content p {
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

/* Story Highlight Quote */
.story-highlight {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.05), rgba(198, 40, 40, 0.05));
    border-left: 4px solid var(--accent-color);
    border-radius: 10px;
    margin-top: 2rem;
    position: relative;
}

.story-highlight i {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.3;
}

.story-highlight p {
    margin: 0;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray-dark);
}

.values {
    padding: 5rem 0;
    background: var(--gray-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

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

.value-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(10, 36, 99, 0.2);
    transition: var(--transition);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(198, 40, 40, 0.3);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 600;
}

.value-card p {
    color: var(--gray-medium);
    line-height: 1.7;
}

.expertise {
    padding: 5rem 0;
    background: var(--white);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    align-items: start;
}

.expertise-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.expertise-content > p {
    color: var(--gray-medium);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.expertise-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.expertise-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.expertise-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.expertise-text h4 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
    color: var(--dark-color);
    font-weight: 600;
}

.expertise-text p {
    color: var(--gray-medium);
}

.expertise-features h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.expertise-features ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.expertise-features ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gray-dark);
}

.expertise-features ul li i {
    color: var(--success);
    font-size: 1.25rem;
}

/* Team Section */
.team {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light), var(--primary-color));
}

.team-content {
    max-width: 1100px;
    margin: 0 auto;
}

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

.team-feature {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    position: relative;
}

.team-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-left-color: var(--accent-color);
}

.team-feature i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: block;
    transition: var(--transition);
}

.team-feature:hover i {
    transform: scale(1.1) rotate(5deg);
}

.team-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 600;
}

.team-feature p {
    color: var(--gray-medium);
    line-height: 1.8;
    margin: 0;
}

.team-content > p {
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Certifications Section */
.certifications {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

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

.cert-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.cert-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.cert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

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

.cert-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.cert-card:hover i {
    color: var(--accent-color);
    transform: scale(1.15) rotate(5deg);
}

.cert-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
    font-weight: 600;
}

.cert-card p {
    color: var(--gray-medium);
    line-height: 1.7;
    word-wrap: break-word;
    hyphens: auto;
    font-size: 1rem;
}

/* ==========================================
   Projects Page
   ========================================== */
.projects-intro {
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.intro-text {
    max-width: 900px;
    margin: 2rem auto 0;
    color: var(--gray-medium);
    line-height: 1.9;
    text-align: center;
    font-size: 1.1rem;
}

.projects-gallery {
    padding: 3rem 0 5rem;
    background: var(--white);
}

.project-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.filter-btn {
    padding: 0.85rem 1.8rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-color);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    width: 300px;
    height: 300px;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 36, 99, 0.3);
}

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

.project-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
    z-index: 10;
}

.project-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

.project-image {
    height: 280px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 5rem;
    position: relative;
    overflow: hidden;
}

.project-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 36, 99, 0.4) 100%);
    transition: var(--transition);
}

.project-card:hover .project-image::after {
    background: linear-gradient(to bottom, rgba(198, 40, 40, 0.2) 0%, rgba(10, 36, 99, 0.6) 100%);
}

.project-info {
    padding: 2.2rem;
}

.project-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
    font-weight: 700;
    transition: var(--transition);
}

.project-card:hover .project-info h3 {
    color: var(--accent-color);
}

.project-category {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(10, 36, 99, 0.08);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.project-card:hover .project-category {
    background: rgba(198, 40, 40, 0.1);
    color: var(--accent-color);
}

.project-info > p {
    color: var(--gray-medium);
    margin-bottom: 1.2rem;
    margin-top: 1rem;
    line-height: 1.7;
    font-size: 1.02rem;
}

.project-details {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-light);
}

.project-details li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-dark);
    font-size: 0.95rem;
    transition: var(--transition);
}

.project-details li:hover {
    color: var(--dark-color);
    transform: translateX(5px);
}

.project-details i {
    color: var(--success);
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
}

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

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border-top: 3px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    border-top-color: var(--accent-color);
}

.testimonial-stars {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    letter-spacing: 3px;
}

.testimonial-card p {
    color: var(--gray-medium);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-style: italic;
    font-size: 1.05rem;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-card p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--accent-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-light);
}

.testimonial-author strong {
    color: var(--dark-color);
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--gray-medium);
    font-size: 0.95rem;
}

/* ==========================================
   Contact Page
   ========================================== */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
}

.contact-intro {
    text-align: center;
    margin-bottom: 4.5rem;
}

.contact-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    color: var(--dark-color);
    font-weight: 700;
}

.contact-intro p {
    font-size: 1.2rem;
    color: var(--gray-medium);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3.5rem;
    align-items: start;
}

.contact-form-wrapper,
.contact-info-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.contact-form-wrapper:hover,
.contact-info-wrapper:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.contact-form-wrapper h3,
.contact-info-wrapper h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.contact-form-wrapper h3::after,
.contact-info-wrapper h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    border-radius: 3px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1.02rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.2rem;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(10, 36, 99, 0.1);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--primary-color);
}

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

.contact-form button {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.contact-info-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.8rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 18px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.contact-info-card:hover {
    background: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left-color: var(--accent-color);
    transform: translateX(5px);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(10, 36, 99, 0.2);
}

.contact-info-card:hover .info-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 10px 30px rgba(198, 40, 40, 0.3);
}

.info-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--dark-color);
    font-weight: 600;
}

.info-content a {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.info-content a:hover {
    color: var(--accent-color);
}

.info-content p {
    color: var(--gray-medium);
    line-height: 1.7;
}

.social-contact {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.05), rgba(198, 40, 40, 0.05));
    border-radius: 18px;
    text-align: center;
    border: 2px dashed var(--gray-light);
    transition: var(--transition);
}

.social-contact:hover {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, rgba(10, 36, 99, 0.08), rgba(198, 40, 40, 0.08));
}

.social-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: var(--dark-color);
    font-weight: 600;
}

.social-contact .social-links {
    justify-content: center;
}

/* Service Area Section */
.service-area {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.service-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.service-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.area-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-bottom: 3px solid transparent;
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    border-bottom-color: var(--accent-color);
}

.area-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.area-card:hover i {
    color: var(--accent-color);
    transform: scale(1.15) rotate(5deg);
}

.area-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
    font-weight: 600;
}

.area-card p {
    color: var(--gray-medium);
    line-height: 1.7;
}

.area-note {
    text-align: center;
    margin-top: 3rem;
    color: var(--gray-medium);
    font-style: italic;
    font-size: 1.05rem;
    padding: 1.5rem;
    background: rgba(10, 36, 99, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

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

.faq-item {
    padding: 2.5rem;
    background: var(--white);
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    border-left: 4px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-left-color: var(--accent-color);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: var(--dark-color);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-weight: 600;
    line-height: 1.5;
}

.faq-item h3 i {
    color: var(--primary-color);
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
    transition: var(--transition);
}

.faq-item:hover h3 i {
    color: var(--accent-color);
    transform: scale(1.1);
}

.faq-item p {
    color: var(--gray-medium);
    line-height: 1.8;
    font-size: 1.02rem;
}

/* ==========================================
   Privacy Policy Page
   ========================================== */
.privacy-content {
    padding: 5rem 0;
    background: var(--white);
}

.privacy-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-intro {
    padding: 2rem;
    background: var(--gray-light);
    border-left: 4px solid var(--accent-color);
    border-radius: 10px;
    margin-bottom: 3rem;
}

.privacy-intro p {
    margin: 0.5rem 0;
    line-height: 1.8;
}

.privacy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-light);
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section h2 {
    color: var(--dark-color);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.privacy-section h2 i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.privacy-section h3 {
    color: var(--dark-color);
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
}

.privacy-section p {
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-section ul {
    margin: 1rem 0 1rem 2rem;
}

.privacy-section ul li {
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

.privacy-section a {
    color: var(--accent-color);
    text-decoration: underline;
    transition: var(--transition);
}

.privacy-section a:hover {
    color: var(--accent-light);
}

.contact-info-box {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.contact-info-box p {
    margin: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-info-box i {
    color: var(--accent-color);
    width: 20px;
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-contact {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .service-detail-card {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .service-detail-card.reverse {
        direction: ltr;
    }

    .service-detail-icon {
        margin: 0 auto;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .features-grid,
    .services-grid,
    .values-grid,
    .cert-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
    }
}

/* ==========================================
   Animations & Utilities
   ========================================== */
.fade-in {
    animation: fadeIn 0.5s ease;
}

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

.slide-up {
    animation: slideUp 0.5s ease;
}

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