/* Gallas Royal Cleaning - 2025 Modern Website Styles */

/* CSS Variables for Brand Colors - 2025 Palette */
:root {
    --dark-blue: #0a192f;
    --light-blue: #64ffda;
    --white: #e6f1ff;
    --pure-white: #ffffff;
    --gold: #ffd700;
    --text-dark: #1d2d50;
    --text-light: #5f6c80;
    --shadow: rgba(10, 25, 47, 0.15);
    --gradient-primary: linear-gradient(135deg, #0a192f, #3a506b);
    --gradient-accent: linear-gradient(135deg, #64ffda, #00b4d8);
    --gradient-gold: linear-gradient(135deg, #ffd700, #f9a826);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.1);
    --blur-amount: 10px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--pure-white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Header and Navigation - 2025 Style */
.header {
    background: rgba(10, 25, 47, 0.85);
    color: var(--pure-white);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(10, 25, 47, 0.2);
    backdrop-filter: blur(var(--blur-amount));
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--pure-white);
}

.logo img {
    height: 60px;
    width: auto;
    margin-right: 15px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--pure-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--gold);
}

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

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

/* Navigation Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--pure-white);
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown-content a {
    color: var(--text-dark);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: var(--light-blue);
    color: var(--pure-white);
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Add delay to prevent quick collapse */
.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content {
    transition-delay: 0s;
}

.dropdown:not(:hover) .dropdown-content {
    transition-delay: 0.2s;
}

/* Hero Section - 2025 Style */
.hero {
    background: linear-gradient(rgba(10, 25, 47, 0.7), rgba(10, 25, 47, 0.7)), url('images/hero-bg.jpg') center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--pure-white);
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(100, 255, 218, 0.1) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(10, 25, 47, 1), transparent);
    z-index: 1;
    pointer-events: none;
}

.commercial-hero {
    height: 85vh;
    position: relative;
}

.hero-content {
    max-width: 900px;
    padding: 3rem;
    background-color: rgba(10, 25, 47, 0.5);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(var(--blur-amount));
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    animation: fadeIn 1s ease-out;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(100, 255, 218, 0.05) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), #b8941f);
    color: var(--pure-white);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--pure-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero h1 .highlight {
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--white);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--white);
}

.feature-icon {
    color: var(--gold);
    font-weight: bold;
}

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

.cta-button {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--pure-white);
    padding: 16px 32px;
    text-decoration: none;
    border-radius: var(--border-radius-md);
    font-weight: bold;
    transition: all var(--transition-medium);
    box-shadow: 0 8px 20px rgba(249, 168, 38, 0.25);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(var(--blur-amount));
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.95rem;
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Elegant CTA Variations */
.cta-secondary {
    display: inline-block;
    background: linear-gradient(135deg, var(--light-blue), var(--dark-blue));
    color: var(--pure-white);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(135, 183, 206, 0.3);
    border: 2px solid transparent;
}

.cta-secondary:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 18px rgba(135, 183, 206, 0.4);
    border-color: var(--gold);
}

.cta-outline {
    display: inline-block;
    background: transparent;
    color: var(--dark-blue);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--dark-blue);
}

.cta-outline:hover {
    background: var(--dark-blue);
    color: var(--pure-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(19, 31, 47, 0.2);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
.section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.section-alt {
    background-color: #f8f9fa;
}

.section-with-bg {
    background-attachment: fixed;
    position: relative;
}

.section-with-bg .container {
    position: relative;
    z-index: 2;
}

.cta-section .section-title h2,
.cta-section .section-title p {
    color: var(--pure-white);
}

.cta-section p {
    color: var(--white) !important;
}

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

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

.section-title p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px var(--shadow);
    text-align: center;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--blur-amount));
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(19, 31, 47, 0.15);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    font-size: 2.2rem;
    color: var(--pure-white);
    box-shadow: 0 10px 25px rgba(100, 255, 218, 0.25);
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: var(--gradient-accent);
    opacity: 0.3;
    filter: blur(8px);
    z-index: -1;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.service-card p {
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--light-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--dark-blue);
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--light-blue);
    font-family: serif;
}

.stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.reviewer {
    font-weight: 600;
    color: var(--dark-blue);
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px var(--shadow);
}

.footer-logo {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--pure-white);
    font-size: 1.5rem;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin: 0;
}

.contact-item a {
    color: var(--light-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--dark-blue);
}

/* Map Container */
.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    margin-top: 2rem;
}

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

/* Footer - 2025 Style */
.footer {
    background: var(--gradient-primary);
    color: var(--pure-white);
    padding: 4rem 0 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--light-blue), transparent);
    opacity: 0.5;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: radial-gradient(ellipse at bottom, rgba(100, 255, 218, 0.1), transparent 70%);
    pointer-events: none;
}

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

.footer-section h3 {
    color: var(--pure-white);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.footer-logo h3 {
    margin: 0;
    color: var(--pure-white);
}

.footer-bottom {
    border-top: 1px solid var(--light-blue);
    padding-top: 1rem;
    margin-top: 2rem;
}

/* Service Areas */
.service-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.area-item {
    background: var(--light-blue);
    color: var(--pure-white);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.area-item:hover {
    transform: scale(1.05);
}

/* Animations */
@keyframes shine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Contact Item Hover Effects */
.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(19, 31, 47, 0.15) !important;
}

/* Mobile Navigation Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #131f2f;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(212, 175, 55, 0.1);
}

.mobile-nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
}

.mobile-nav-menu.active {
    display: block;
    animation: slideDown 0.3s ease-out;
}

.mobile-nav-menu ul {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
}

.mobile-nav-menu li {
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.mobile-nav-menu li:last-child {
    border-bottom: none;
}

.mobile-nav-menu a {
    display: block;
    padding: 1rem 2rem;
    color: #131f2f;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-nav-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    padding-left: 2.5rem;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-content {
    display: none;
    background: rgba(248, 249, 250, 0.9);
}

.mobile-dropdown-content.active {
    display: block;
}

.mobile-dropdown-content a {
    padding-left: 3rem;
    font-weight: 500;
    font-size: 0.9rem;
}

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

/* Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header {
        position: relative;
    }
    
    .hero h1 {
        font-size: 2.2rem !important;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1.1rem !important;
    }
    
    .commercial-hero {
        height: auto;
        padding: 4rem 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .hero-content {
        padding: 2rem 1rem !important;
        margin: 1rem;
        border-radius: var(--border-radius-md);
    }
    
    .services-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .cta-button {
        padding: 14px 24px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .contact-widget {
        bottom: 20px !important;
        right: 20px !important;
    }
    
    .contact-widget-content {
        width: 280px !important;
        right: -20px;
    }
    
    /* Mobile-friendly form elements */
    input, textarea, select {
        font-size: 16px !important; /* Prevents zoom on iOS */
        padding: 12px 16px;
    }
    
    /* Touch-friendly buttons */
    .btn, .cta-button, .cta-secondary, .cta-outline {
        min-height: 44px;
        padding: 12px 20px;
        display: inline-block;
        text-align: center;
    }
    
    /* Mobile hero improvements */
    .hero-buttons {
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .hero-buttons .cta-button,
    .hero-buttons .cta-secondary {
        width: 100%;
        max-width: 280px;
        margin: 0.5rem auto;
    }
    
    /* Mobile service areas */
    .service-areas {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .area-item {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    /* Mobile footer improvements */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-section {
        padding: 1rem 0;
    }
    
    /* Mobile map container */
    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem !important;
    }
    
    .hero p {
        font-size: 1rem !important;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .section-title h2 {
        font-size: 1.7rem;
    }
    
    .cta-button {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-content {
        padding: 1.5rem 1rem !important;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    /* Mobile-specific content adjustments */
    .image-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonial-with-images {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-with-images {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Mobile typography improvements */
    .gallery-category h3 {
        font-size: 1.4rem;
    }
    
    .content-card h3 {
        font-size: 1.2rem;
    }
    
    .process-step h4 {
        font-size: 1.1rem;
    }
    
    /* Mobile image optimizations */
    .image-item img {
        height: 200px;
    }
    
    .service-image img {
        height: 180px;
    }
    
    .testimonial-image img {
        height: 150px;
    }
}

/* Additional mobile enhancements */
@media (max-width: 320px) {
    .hero h1 {
        font-size: 1.6rem !important;
    }
    
    .section-title h2 {
        font-size: 1.5rem !important;
    }
    
    .service-card {
        padding: 1rem 0.75rem;
    }
    
    .container {
        padding: 0 0.5rem;
    }
}

/* Image Gallery Styles */
.image-gallery {
    margin-top: 3rem;
}

.gallery-category {
    margin-bottom: 4rem;
}

.gallery-category h3 {
    text-align: center;
    color: var(--dark-blue);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
}

.gallery-category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--gold), #b8941f);
    border-radius: 2px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.image-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(19, 31, 47, 0.15);
    transition: all 0.3s ease;
    background: var(--pure-white);
}

.image-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(19, 31, 47, 0.25);
}

.image-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(19, 31, 47, 0.9));
    color: var(--pure-white);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.image-overlay p {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--pure-white);
    text-align: center;
}

/* Content Grid Styles */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.content-card {
    background: var(--pure-white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(135, 183, 206, 0.1);
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(19, 31, 47, 0.15);
    border-color: var(--light-blue);
}

.content-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--light-blue), var(--dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.2rem;
    color: var(--pure-white);
    box-shadow: 0 4px 15px rgba(135, 183, 206, 0.3);
}

.content-card h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
    font-size: 1.4rem;
}

.content-card p {
    line-height: 1.7;
    color: var(--text-light);
    font-size: 1rem;
}

/* Enhanced Hero Section */
.hero {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(10, 25, 47, 0.15);
}

.benefit-icon {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--gold);
}

.benefit-item h4 {
    margin-bottom: 0.8rem;
    color: var(--dark-blue);
    font-size: 1.1rem;
}

.content-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Process Steps Styling */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(19, 31, 47, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(135, 183, 206, 0.1);
    position: relative;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(19, 31, 47, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--light-blue), var(--dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--pure-white);
    box-shadow: 0 5px 15px rgba(135, 183, 206, 0.3);
}

.process-step h4 {
    margin-bottom: 1rem;
    color: var(--dark-blue);
    font-size: 1.2rem;
}

/* Benefits Grid Styling */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(19, 31, 47, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(135, 183, 206, 0.1);
}

.review-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(135, 183, 206, 0.1);
}

/* Image Gallery Styles */
.image-gallery {
    margin-top: 3rem;
}

.gallery-category {
    margin-bottom: 4rem;
}

.gallery-category h3 {
    text-align: center;
    color: var(--dark-blue);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    position: relative;
}

.gallery-category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

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

.image-item {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 10px 25px var(--shadow);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    background: var(--pure-white);
}

.image-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 25, 47, 0.2);
}

.image-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-primary);
    color: var(--pure-white);
    padding: 1rem;
    transform: translateY(100%);
    transition: transform var(--transition-medium);
}

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

.image-overlay p {
    margin: 0;
    font-weight: 600;
    text-align: center;
}

/* Testimonial with Images Styles */
.testimonial-with-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.testimonial-image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.testimonial-image {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 8px 20px var(--shadow);
}

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

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 25, 47, 0.9);
    color: var(--pure-white);
    padding: 0.8rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

/* Service Image Cards */
.services-with-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.service-image-card {
    background: var(--pure-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 35px var(--shadow);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    border: 1px solid var(--glass-border);
}

.service-image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(10, 25, 47, 0.2);
}

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

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.service-content {
    padding: 2rem;
}

.service-content .service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.3);
}

.service-content h3 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-content ul {
    list-style: none;
    padding: 0;
}

.service-content ul li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--light-blue);
    font-weight: bold;
}

/* Responsive Design for New Elements */
@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-with-images {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-with-images {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-image-card {
        margin-bottom: 1rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .gallery-category {
        margin-bottom: 3rem;
    }
    
    .gallery-category h3 {
        font-size: 1.5rem;
    }
    
    .image-item {
        margin-bottom: 1rem;
    }
    
    .image-item img {
        height: 200px;
    }
    
    .content-card {
        padding: 2rem;
    }
    
    .content-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .image-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .image-overlay p {
        font-size: 1rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.btn-secondary {
    background: var(--light-blue);
    color: var(--pure-white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background: var(--dark-blue);
}

