/* ============================================
   Varsha Waterproofing Services - Premium CSS
   Theme: Blue + White + Orange Accents
   Mobile-First Responsive Design
   Enhanced with Modern Animations & Glassmorphism
   ============================================ */

/* CSS Variables */
:root {
    --primary-blue: #0A4D8C;
    --secondary-blue: #1E6BB8;
    --light-blue: #E8F4FC;
    --accent-orange: #FF6B35;
    --dark-orange: #E55A2B;
    --white: #FFFFFF;
    --light-gray: #F8FAFB;
    --medium-gray: #E5E8EB;
    --dark-gray: #4A5568;
    --text-dark: #1A202C;
    --success-green: #25D366;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 40px rgba(10,77,140,0.15);
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
}

/* ============================================
   MODERN ANIMATIONS & KEYFRAMES
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

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

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

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

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

/* ============================================
   SCROLL ANIMATION CLASSES
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.animate-fadeIn { animation: fadeIn 0.8s ease forwards; }
.animate-fadeInUp { animation: fadeInUp 0.8s ease forwards; }
.animate-slideInLeft { animation: slideInLeft 0.8s ease forwards; }
.animate-slideInRight { animation: slideInRight 0.8s ease forwards; }
.animate-float { animation: float 4s ease-in-out infinite; }
.animate-scaleIn { animation: scaleIn 0.6s ease forwards; }
.animate-bounce { animation: bounce 2s ease-in-out infinite; }

/* Animation Delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ============================================
   GLASSMORPHISM EFFECTS
   ============================================ */
.glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-dark {
    background: rgba(10, 77, 140, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(10, 77, 140, 0.1);
}

/* ============================================
   MODERN GRADIENTS
   ============================================ */
.gradient-text {
    background: linear-gradient(135deg, var(--accent-orange), var(--dark-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-bg {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 50%, var(--primary-blue) 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

.gradient-overlay {
    background: linear-gradient(135deg, rgba(10,77,140,0.95) 0%, rgba(30,107,184,0.85) 100%);
}

/* ============================================
   ENHANCED SHADOWS & EFFECTS
   ============================================ */
.shadow-glow {
    box-shadow: 0 0 40px rgba(10, 77, 140, 0.2), 0 10px 40px rgba(0,0,0,0.1);
}

.shadow-orange {
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.shadow-blue {
    box-shadow: 0 4px 20px rgba(10, 77, 140, 0.3);
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.4);
}

/* ============================================
   MODERN BUTTON VARIANTS
   ============================================ */
.btn-glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    transition: all 0.3s ease;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-gradient {
    background: linear-gradient(135deg, var(--accent-orange), var(--dark-orange));
    background-size: 200% 200%;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    background-position: 100% 0;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-3d {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.2s ease;
}

.btn-3d:active {
    transform: translateY(2px);
}

/* Shimmer Loading Effect */
.shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite linear;
}

/* ============================================
   TRUST BADGES & FLOATING ELEMENTS
   ============================================ */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.trust-badge i {
    font-size: 1rem;
}

.floating-card {
    animation: float 5s ease-in-out infinite;
}

.floating-card:nth-child(2) { animation-delay: 1s; }
.floating-card:nth-child(3) { animation-delay: 2s; }

/* Modern Section Divider */
.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--dark-orange));
    border-radius: 2px;
    margin: 20px auto;
}

/* Decorative Elements */
.decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,107,53,0.1), rgba(10,77,140,0.1));
    pointer-events: none;
}

.decorative-dots {
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(rgba(10,77,140,0.2) 2px, transparent 2px);
    background-size: 20px 20px;
    pointer-events: none;
}

/* Enhanced Focus States */
input:focus, select:focus, textarea:focus, button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(10, 77, 140, 0.2);
}

/* Modern Card Variants */
.card-elevated {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.card-elevated:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.card-bordered {
    background: white;
    border: 2px solid var(--light-blue);
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
}

.card-bordered:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-hover);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    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 */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.top-bar {
    background: var(--primary-blue);
    padding: 10px 0;
    color: var(--white);
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-info {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-info i {
    color: var(--accent-orange);
}

.top-bar-social {
    display: flex;
    gap: 15px;
}

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

.top-bar-social a:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
}

/* Main Header */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.logo-text h1 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.2;
}

.logo-text span {
    font-size: 0.75rem;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Logo Image Styling */
.logo-img {
    height: 55px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

/* Navigation */
.main-nav ul {
    display: flex;
    gap: 8px;
    align-items: center;
}

.main-nav a {
    padding: 10px 18px;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-blue);
    background: var(--light-blue);
}

/* Services Dropdown - Enhanced Mega Menu Version */
.services-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    font-size: 0.7rem;
    color: var(--accent-orange);
    transition: transform 0.3s ease;
    margin-left: 4px;
}

.services-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Mega Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(-15px);
    background: var(--white);
    min-width: 320px;
    box-shadow: 0 20px 60px rgba(10, 77, 140, 0.2), 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1001;
    border: 1px solid rgba(10, 77, 140, 0.1);
    overflow: hidden;
}

.dropdown-menu.dropdown-mega {
    min-width: 600px;
    max-width: 700px;
}

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

.services-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Dropdown Header */
.dropdown-header {
    background: linear-gradient(135deg, var(--light-blue) 0%, rgba(255, 107, 53, 0.05) 100%);
    padding: 25px 30px;
    border-bottom: 1px solid rgba(10, 77, 140, 0.08);
    text-align: center;
}

.dropdown-header h4 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.dropdown-header h4 i {
    color: var(--accent-orange);
}

.dropdown-header p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin: 0;
}

/* Dropdown Grid Layout */
.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 20px;
    list-style: none;
}

.dropdown-grid li {
    margin: 0;
}

/* Dropdown Item */
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    background: transparent;
    border: 1px solid transparent;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, var(--light-blue) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-color: rgba(10, 77, 140, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(10, 77, 140, 0.1);
}

/* Dropdown Icon */
.dropdown-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dropdown-item:hover .dropdown-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Dropdown Content */
.dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.dropdown-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.dropdown-item:hover .dropdown-title {
    color: var(--primary-blue);
}

.dropdown-desc {
    font-size: 0.8rem;
    color: var(--dark-gray);
    transition: color 0.3s ease;
}

.dropdown-item:hover .dropdown-desc {
    color: var(--accent-orange);
}

/* Dropdown Badge */
.dropdown-badge {
    background: linear-gradient(135deg, var(--accent-orange), var(--dark-orange));
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    animation: pulse 2s infinite;
}

/* Dropdown Footer */
.dropdown-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: linear-gradient(135deg, rgba(10, 77, 140, 0.03) 0%, rgba(255, 107, 53, 0.03) 100%);
    border-top: 1px solid rgba(10, 77, 140, 0.08);
    gap: 15px;
}

.dropdown-view-all {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 18px;
    border-radius: 50px;
    border: 2px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.dropdown-view-all:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(10, 77, 140, 0.3);
}

.dropdown-view-all i {
    transition: transform 0.3s ease;
}

.dropdown-view-all:hover i {
    transform: translateX(3px);
}

.dropdown-call {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.dropdown-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.dropdown-call i {
    animation: pulse 1.5s infinite;
}

/* Staggered animation for dropdown items */
.services-dropdown:hover .dropdown-grid li {
    animation: slideIn 0.4s ease forwards;
    opacity: 0;
    transform: translateY(-10px);
}

.services-dropdown:hover .dropdown-grid li:nth-child(1) { animation-delay: 0.05s; }
.services-dropdown:hover .dropdown-grid li:nth-child(2) { animation-delay: 0.1s; }
.services-dropdown:hover .dropdown-grid li:nth-child(3) { animation-delay: 0.15s; }
.services-dropdown:hover .dropdown-grid li:nth-child(4) { animation-delay: 0.2s; }
.services-dropdown:hover .dropdown-grid li:nth-child(5) { animation-delay: 0.25s; }
.services-dropdown:hover .dropdown-grid li:nth-child(6) { animation-delay: 0.3s; }

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

/* Dropdown arrow indicator */
.dropdown-menu::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--white);
    filter: drop-shadow(0 -3px 3px rgba(0,0,0,0.05));
}

/* Mobile Responsive Dropdown */
@media (max-width: 768px) {
    .dropdown-menu.dropdown-mega {
        min-width: 280px;
        max-width: 320px;
    }
    
    .dropdown-grid {
        grid-template-columns: 1fr;
        padding: 15px;
    }
    
    .dropdown-header {
        padding: 20px;
    }
    
    .dropdown-header h4 {
        font-size: 1.1rem;
    }
    
    .dropdown-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .dropdown-view-all,
    .dropdown-call {
        width: 100%;
        justify-content: center;
    }
}

/* Header CTA Buttons */
.header-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-call {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-call:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,107,53,0.4);
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--success-green);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 600px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.03" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--accent-orange);
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-badges {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    padding: 10px 18px;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--accent-orange);
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--dark-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,107,53,0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--white);
    transition: var(--transition);
}

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

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
}

.hero-stats {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
}

.hero-stats h3 {
    font-size: 2rem;
    color: var(--accent-orange);
    font-weight: 800;
}

.hero-stats p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin: 0;
}

/* ============================================
   FEATURES / WHY CHOOSE US
   ============================================ */

.features {
    background: var(--light-gray);
}

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

.feature-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-blue);
}

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

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

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

.service-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
}

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

.service-image {
    height: 220px;
    overflow: hidden;
}

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

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

.service-content {
    padding: 25px 30px;
}

.service-content h3 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.service-content p {
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.service-features span {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-orange);
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
}

/* ============================================
   WORK PROCESS
   ============================================ */

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

.process .section-header h2,
.process .section-header p {
    color: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 80px;
    height: 80px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.process-step p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

/* ============================================
   GALLERY / BEFORE-AFTER
   ============================================ */

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

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10,77,140,0.95), transparent);
    padding: 30px 20px 20px;
    color: var(--white);
    transform: translateY(60%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
    background: var(--light-gray);
}

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

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-size: 5rem;
    color: var(--light-blue);
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-rating {
    color: #FFC107;
    margin-bottom: 15px;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-author h4 {
    font-size: 1rem;
    color: var(--text-dark);
}

.testimonial-author p {
    font-size: 0.85rem;
    color: var(--dark-gray);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.contact-item p {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.contact-social {
    display: flex;
    gap: 12px;
}

.contact-social a {
    width: 45px;
    height: 45px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.2rem;
    transition: var(--transition);
}

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

/* Contact Form */
.contact-form {
    background: var(--light-gray);
    padding: 40px;
    border-radius: var(--border-radius-lg);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--accent-orange);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
}

/* Map */
.map-container {
    margin-top: 50px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: #0A2847;
    color: var(--white);
    padding: 70px 0 0;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-orange);
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.footer-links a i {
    font-size: 0.8rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--accent-orange);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--success-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.6);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */

.service-detail-hero {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 100px 0 60px;
    color: var(--white);
    text-align: center;
}

.service-detail-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.service-detail-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.service-content-wrapper {
    padding: 60px 0;
}

.service-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.service-main-content h2 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin: 40px 0 20px;
}

.service-main-content h2:first-child {
    margin-top: 0;
}

.service-main-content p {
    color: var(--dark-gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.service-main-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.service-main-content ul li {
    color: var(--dark-gray);
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.service-main-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-orange);
    position: absolute;
    left: 0;
}

/* Service Sidebar */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-box {
    background: var(--light-gray);
    padding: 30px;
    border-radius: var(--border-radius-lg);
}

.sidebar-box h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--medium-gray);
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
}

.sidebar-cta h3 {
    color: var(--white);
    border-color: rgba(255,255,255,0.2);
}

.sidebar-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.sidebar-phone {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    display: block;
    margin-bottom: 20px;
}

.sidebar-services li {
    margin-bottom: 12px;
}

.sidebar-services a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-gray);
    padding: 10px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.sidebar-services a:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.sidebar-services a i {
    color: var(--accent-orange);
}

/* Sidebar Contact List */
.sidebar-box .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-box .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.sidebar-box .footer-contact li i {
    color: var(--accent-orange);
    font-size: 1rem;
    margin-top: 3px;
    width: 20px;
    text-align: center;
}

.sidebar-box .footer-contact li div {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Pricing Table */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.pricing-table th,
.pricing-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--medium-gray);
}

.pricing-table th {
    background: var(--light-blue);
    color: var(--primary-blue);
    font-weight: 600;
}

.pricing-table .price {
    color: var(--accent-orange);
    font-weight: 700;
}

/* ============================================
   BLOG PAGE
   ============================================ */

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

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.blog-image {
    height: 220px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 25px 30px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--dark-gray);
}

.blog-meta i {
    color: var(--accent-orange);
    margin-right: 5px;
}

.blog-content h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content p {
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-hero {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 100px 0 60px;
    color: var(--white);
    text-align: center;
}

.about-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.about-content-wrapper {
    padding: 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-hover);
    width: 100%;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 25px 35px;
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.experience-badge h3 {
    font-size: 2.5rem;
    font-weight: 800;
}

.experience-badge p {
    font-size: 0.9rem;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--dark-gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.mission-box {
    background: var(--light-gray);
    padding: 30px;
    border-radius: var(--border-radius-lg);
}

.mission-box i {
    font-size: 2rem;
    color: var(--accent-orange);
    margin-bottom: 15px;
}

.mission-box h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

/* Stats Section */
.stats-section {
    background: var(--primary-blue);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 10px;
}

.stat-item p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        z-index: 1002;
        padding: 80px 20px 20px;
        transition: var(--transition);
        box-shadow: 2px 0 20px rgba(0,0,0,0.2);
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-nav a {
        width: 100%;
        padding: 15px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        min-width: 100%;
        padding-left: 20px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        position: relative;
        bottom: auto;
        left: auto;
        margin: 20px auto 0;
        max-width: 250px;
    }
    
    .hero-image {
        display: none;
    }
    
    .contact-grid,
    .about-grid,
    .service-content-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .experience-badge {
        right: 10px;
        bottom: -10px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .header-cta .btn-whatsapp {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-bar-info {
        justify-content: center;
        width: 100%;
    }
    
    .top-bar-social {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .services-grid,
    .features-grid,
    .testimonials-grid,
    .gallery-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .service-detail-hero h1,
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .logo-text h1 {
        font-size: 1.1rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* ============================================
   IMAGE PLACEHOLDERS - Used when images missing
   ============================================ */

/* Service Image Placeholders */
.service-image,
.blog-image,
.gallery-item img,
.about-image img {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--medium-gray) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Removed ::before icons that were showing behind images */

/* Hero Image Placeholder */
.hero-image img {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 400px;
}

.hero-image img::before {
    content: '\f7d9';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 5rem;
    color: white;
    opacity: 0.5;
}

/* Gallery Placeholder */
.gallery-item img {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    min-height: 280px;
}

/* Before/After Placeholder */
img[src*="before"] {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

img[src*="after"] {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

/* About Page Image */
.about-image img {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    min-height: 500px;
}

/* Hide broken image icons */
img {
    text-indent: -9999px;
}

/* Ensure placeholder content visible */
.service-image,
.blog-image,
.gallery-item {
    position: relative;
    overflow: hidden;
}

/* Blog Image Placeholders */
.blog-image {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    min-height: 220px;
}

.blog-image::before {
    content: '\f15c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 3rem;
    color: var(--accent-orange);
    opacity: 0.4;
}

/* Project Specific Backgrounds */
img[src*="project-1"] { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
img[src*="project-2"] { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
img[src*="project-3"] { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
img[src*="project-4"] { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
img[src*="project-5"] { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
img[src*="project-6"] { background: linear-gradient(135deg, #30cfd0 0%, #330867 100%); }
img[src*="project-7"] { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); }
img[src*="project-8"] { background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%); }
img[src*="project-9"] { background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%); }

/* Favicon placeholder */
link[rel="icon"][href="assets/images/favicon.png"] {
    display: none;
}
