:root {
    --primary: #FF6B35;
    /* Warm orange tone */
    --primary-dark: #E55A2B;
    --secondary: #2D3436;
    --accent: #cd6c27;
    /* Teal accent */
    --accent-dark: #b45d3a;
    --neutral-bg: #F8F9FA;
    --neutral-text: #2D3748;
    --light: #ffffff;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-light: 0 8px 32px rgba(44, 46, 74, 0.15);
    --shadow-hover: 0 15px 35px rgba(31, 38, 135, 0.2);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-smooth: all 0.3s ease;
    --paint: #ffd34d;

}

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

html,
body {
    overflow-x: hidden;
}


body {
    font-family: "Exo 2", Sans-serif;
    color: var(--neutral-text);
    overflow-x: hidden;
    padding-top: 80px;
    background: var(--light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
    /* Light white placeholder */
    opacity: 1;
    /* Ensure visibility */
}

/* Preloader with Morphing Animation */
#preloader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
}

.wall-animation {
    position: relative;
    width: 220px;
    height: 60px;
    display: flex;
    overflow: hidden;
    gap: 5px;
}

.paint-layer {
    flex: 1;
    background: var(--paint);
    transform: translateY(100%);
    border-radius: 6px;
    animation: slideUp 1.4s ease-in-out infinite;
}

.paint-layer:nth-child(2) {
    animation-delay: 0.2s;
}

.paint-layer:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes slideUp {
    0% {
        transform: translateY(100%);
    }

    50% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(100%);
    }
}

.loader-text {
    text-align: center;
    color: #fff;
    margin-top: 25px;
}

.loader-text h1 {
    font-size: 36px;
    letter-spacing: 1px;
}

.loader-text p {
    font-size: 14px;
    opacity: 0.8;
    margin-top: -6px;
}

.spinner-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.morphing-spinner {
    width: 80px;
    height: 80px;
    position: relative;
}

.morphing-spinner::before,
.morphing-spinner::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    animation: morph 2s infinite ease-in-out;
}

.morphing-spinner::before {
    background: rgba(255, 255, 255, 0.8);
    animation-delay: -1s;
}

.morphing-spinner::after {
    background: rgba(255, 255, 255, 0.6);
}

@keyframes morph {

    0%,
    100% {
        transform: scale(0) rotate(0deg);
        border-radius: 50%;
    }

    50% {
        transform: scale(1) rotate(180deg);
        border-radius: 20%;
    }
}

.loading-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 20px;
    animation: pulse-text 2s infinite;
}

@keyframes pulse-text {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

/* Top Bar with Glassmorphism */
.top-bar {
    background: rgba(45, 52, 54, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light);
    padding: 8px 0;
    font-size: 0.9rem;
}

.top-contact a {
    color: var(--light);
    text-decoration: none;
    margin-right: 20px;
    transition: var(--transition);
    position: relative;
}

.top-contact a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--accent);
    transition: width 0.3s ease;
}

.top-contact a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.top-contact a:hover::after {
    width: 100%;
}

/* Navbar with Glassmorphism */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
    padding: 15px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar.shrink {
    padding: 8px 0;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--secondary);
    font-weight: 500;
    margin: 0 10px;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

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

/* Buttons with Gradient and Hover Effects */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.btn-primary::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;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

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

.btn-outline-primary {
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 10px 28px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    background: transparent;
    position: relative;
    overflow: hidden;
}

.btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-outline-primary:hover {
    color: var(--light);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-outline-primary:hover::before {
    left: 0;
}

/* Hero Section with Advanced Animations */
.hero {
    background: linear-gradient(135deg,
            rgba(0, 212, 170, 0.05) 0%,
            rgba(253, 203, 110, 0.05) 50%,
            rgba(225, 112, 85, 0.05) 100%);
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

img {
    transition: transform 0.3s ease-in-out;
    /* smooth effect */
}

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

.hero-content {
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--neutral-text);
    opacity: 0.9;
}

.hero-btns .btn {
    margin-right: 20px;
    margin-bottom: 15px;
}

/* Floating Particles Background */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(0, 212, 170, 0.3);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
    width: 20px;
    height: 20px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    width: 15px;
    height: 15px;
    top: 50%;
    left: 80%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    width: 25px;
    height: 25px;
    top: 70%;
    left: 20%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    width: 12px;
    height: 12px;
    top: 30%;
    left: 70%;
    animation-delay: 1s;
}

.particle:nth-child(5) {
    width: 18px;
    height: 18px;
    top: 80%;
    left: 60%;
    animation-delay: 3s;
}

@keyframes float {

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

    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Morphing Shapes */
.hero-shape {
    position: absolute;
    z-index: 1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg,
            rgba(212, 71, 0, 0.1) 0%,
            rgba(253, 203, 110, 0.1) 100%);
    top: -200px;
    right: -200px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morph-shape 8s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg,
            rgba(45, 52, 54, 0.05) 0%,
            rgba(212, 71, 0, 0.05) 100%);
    bottom: -150px;
    left: 10%;
    border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
    animation: morph-shape 10s ease-in-out infinite reverse;
}

@keyframes morph-shape {

    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: scale(1) rotate(0deg);
    }

    25% {
        border-radius: 30% 70% 60% 40% / 50% 60% 30% 40%;
        transform: scale(1.1) rotate(90deg);
    }

    50% {
        border-radius: 70% 30% 40% 60% / 40% 50% 60% 30%;
        transform: scale(0.9) rotate(180deg);
    }

    75% {
        border-radius: 40% 60% 30% 70% / 70% 40% 50% 60%;
        transform: scale(1.05) rotate(270deg);
    }
}

/* Sections with Scroll Animations */
section {
    padding: 40px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.section-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-title h2 {
    color: var(--secondary);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 2px;
    animation: expand-line 1s ease-out 0.5s forwards;
}

@keyframes expand-line {
    from {
        width: 0;
    }

    to {
        width: 100px;
    }
}

/* Service Cards with Glass Effect */
.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 92, 0, 0.1), transparent);
    transform: rotate(-45deg);
    transition: transform 0.6s;
}

.service-card:hover::before {
    transform: rotate(-45deg) translate(50%, 50%);
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: rgba(212, 99, 0, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-icon i {
    font-size: 2.2rem;
    color: white;
    position: relative;
    z-index: 2;
}

/* --- Start of unique rules moved from duplicate block --- */
.services-detail h3 {
    text-align: center;
    margin-bottom: 20px;
}

.services-detail p {
    text-align: center;
    margin-bottom: 20px;
}

/* --- End of unique rules moved from duplicate block --- */

/* Pricing Cards */
.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.pricing-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid var(--accent);
    z-index: 2;
    position: relative;
}

.pricing-card.popular::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 3;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.pricing-card.popular:hover {
    transform: scale(1.07) translateY(-15px);
}

.pricing-header {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--light);
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.pricing-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* Animated Statistics Counter */
.stats-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #1e272e 100%);
    color: var(--light);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.03)"><polygon points="1000,100 1000,0 0,100"/></svg>');
    background-size: cover;
}

.stat-box {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--accent), #ffeaa7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Testimonials with Floating Effect */
.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    margin: 20px 15px;
    position: relative;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.testimonial-card:hover::before {
    opacity: 1;
}

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

/* FAQ with Smooth Accordion Animation */
.accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.accordion-button {
    background: transparent;
    color: var(--secondary);
    font-weight: 600;
    padding: 25px 30px;
    border: none;
    transition: var(--transition);
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--light);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.process-step {
    padding: 15px !important;
}

/* Contact Section with Glass Effect */
.contact-info {
    background: linear-gradient(135deg,
            rgba(45, 52, 54, 0.95),
            rgba(0, 0, 0, 0.8));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light);
    padding: 50px 40px;
    border-radius: 20px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(212, 92, 0, 0.1),
            rgba(253, 203, 110, 0.1));
    opacity: 0;
    transition: opacity 0.3s;
}

.contact-info:hover::before {
    opacity: 1;
}

/* Form Styling */
.form-control,
.form-select {
    border: 2px solid rgba(212, 92, 0, 0.1);
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(212, 92, 0, 0.1);
    transform: translateY(-2px);
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition);
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: var(--transition);
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition);
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-light);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-hover);
}

.about-badge {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow-light);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(212, 92, 0, 0.1), rgba(253, 203, 110, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

/* Responsive Design (First Instance - Kept) */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .pricing-card.popular {
        transform: scale(1);
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 72px;
    }

    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

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

    section {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0;
    }

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

    section {
        padding: 60px 0;
    }

    .service-card,
    .pricing-card,
    .testimonial-card {
        margin: 15px 0;
    }
}

@media (min-width: 1200px) {

    .h4,
    h4 {
        font-size: 1.1rem;
    }
}

/* Process Steps */
.process-step {
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-light);
}

/* Custom styles for home cleaning page */
.cleaning-detail {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

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

.room-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    margin-bottom: 30px;
}

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

.room-img {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.room-content {
    padding: 25px;
    background: white;
}

.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.space-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    margin-bottom: 30px;
    text-align: center;
    min-height: 210px;
    padding: 10px;
}

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

.space-content {
    padding: 25px;
    background: white;
}

.checklist li:last-child {
    border-bottom: none;
}

.checklist i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 1.2rem;
}

.comparison-table {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.comparison-table th {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--light);
    padding: 20px;
    font-weight: 600;
    border: none;
}

.comparison-table td {
    padding: 15px 20px;
    border: 1px solid rgba(212, 92, 0, 0.1);
    vertical-align: middle;
}

.comparison-table tbody tr:hover {
    background: rgba(0, 212, 170, 0.05);
}

.comparison-table .text-success {
    color: var(--primary) !important;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 3rem;
    margin: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3.3rem;
    top: 0.5rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    border: 4px solid white;
    box-shadow: 0 0 0 3px var(--primary);
}

.package-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    box-shadow: var(--shadow-light);
}

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

.package-header {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--light);
    padding: 30px;
    text-align: center;
}

.package-features {
    padding: 30px;
}

.process .about-badge {
    margin-bottom: 10px;
}

/* Pricing Table */
.pricing-table {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.pricing-table th {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--light);
    padding: 20px;
    font-weight: 600;
    border: none;
}

.pricing-table td {
    padding: 15px 20px;
    border: 1px solid rgba(212, 92, 0, 0.1);
    vertical-align: middle;
}

.pricing-table tbody tr:hover {
    background: rgba(0, 212, 170, 0.05);
}

/* About Section */
.about-heading {
    color: var(--secondary);
    margin-bottom: 25px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text.mb-4 {
    margin-bottom: 30px;
}

/* Badge Styles */
.about-badge {
    text-align: center;
}

.badge-icon {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.badge-title {
    color: var(--secondary);
    margin-bottom: 15px;
}

.badge-text {
    color: var(--neutral-text);
    margin: 0;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 80px 0;
}

/* Service Card */
.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
}

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

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Blog Page */
.blog-hero {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.08) 0%, rgba(253, 203, 110, 0.08) 50%, rgba(225, 112, 85, 0.08) 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.blog-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 100 20"><defs><pattern id="smallGrid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(212, 99, 0,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="20" fill="url(%23smallGrid)"/></svg>');
}

.blog-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Blog Cards */
.blog-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 40px;
    position: relative;
    box-shadow: var(--shadow-light);
    opacity: 0;
    transform: translateY(30px);
}

.blog-card.animate {
    opacity: 1;
    transform: translateY(0);
}

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

.blog-card-img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.blog-card-img img {
    width: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.blog-date {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--secondary);
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.blog-card-body {
    padding: 30px;
    min-height: 355px;
}

.blog-card-title a {
    color: var(--secondary);
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.blog-card-title a:hover {
    color: var(--primary);
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
    margin-bottom: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 25px;
}

.blog-author,
.blog-read-time {
    color: var(--neutral-text);
    font-size: 0.9rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
}

.blog-author i,
.blog-read-time i {
    margin-right: 8px;
    color: var(--primary);
}

/* Pagination */
.pagination-wrap {
    text-align: center;
    margin-top: 40px;
}

.pagination-wrap .page-link {
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    color: var(--secondary);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.pagination-wrap .page-item.active .page-link,
.pagination-wrap .page-link:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-color: transparent;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-light);
}

.widget-title {
    color: var(--secondary);
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(212, 92, 0, 0.1);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

/* Search Widget */
.search-form {
    position: relative;
}

.search-input {
    border-radius: 15px;
    padding: 15px 60px 15px 20px;
    border: 1px solid rgba(212, 92, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Recent Posts */
.recent-post {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.recent-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-post:hover {
    transform: translateX(10px);
}

.recent-post-img {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    margin-right: 15px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h6 {
    color: var(--secondary);
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.3;
}

.recent-post-content h6:hover {
    color: var(--primary);
}

.recent-post-date {
    color: var(--neutral-text);
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Categories Widget */
.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: rgba(212, 99, 0, 0.05);
    border-radius: 15px;
    margin-bottom: 10px;
    transition: var(--transition);
    border: 1px solid transparent;
    text-decoration: none;
}

.recent-post-content a {
    text-decoration: none;
    color: #000;
}

.category-item:hover {
    background: rgba(212, 92, 0, 0.1);
    border-color: rgba(212, 92, 0, 0.1);
    transform: translateX(5px);
}

.category-name {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
}

.category-count {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Tags */
.tag {
    display: inline-block;
    background: rgba(212, 92, 0, 0.1);
    color: var(--secondary);
    padding: 8px 15px;
    border-radius: 15px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
}

.tag:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Article Page */
.article-header {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.08) 0%, rgba(253, 203, 110, 0.08) 50%, rgba(225, 112, 85, 0.08) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.article-header::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 100 20"><defs><pattern id="smallGrid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(212, 99, 0,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="20" fill="url(%23smallGrid)"/></svg>');
}

.article-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 25px;
}

.article-author,
.article-date,
.article-read-time {
    color: var(--neutral-text);
    font-size: 1rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
}

.article-author i,
.article-date i,
.article-read-time i {
    margin-right: 8px;
    color: var(--primary);
}

/* Featured Image */
.featured-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    margin-bottom: 50px;
    position: relative;
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Article Content */
.article-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--neutral-text);
}

.article-content h2 {
    color: var(--secondary);
    margin: 40px 0 25px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 15px;
}

.article-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.article-content h3 {
    color: var(--secondary);
    margin: 35px 0 20px;
    font-size: 1.4rem;
}

.article-content p {
    margin-bottom: 25px;
}

.article-content ul,
.article-content ol {
    margin: 25px 0;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 10px;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(212, 92, 0, 0.1), rgba(253, 203, 110, 0.1));
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid var(--primary);
    margin: 35px 0;
    position: relative;
}

.highlight-box::before {
    content: '💡';
    font-size: 1.5rem;
    position: absolute;
    top: 20px;
    right: 25px;
}

.quote-box {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 92, 0, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-light);
}

.quote-box::before {
    content: '❝';
    font-family: serif;
    font-size: 3rem;
    color: var(--primary);
    position: absolute;
    top: 10px;
    left: 20px;
}

.quote-box p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--secondary);
    margin: 0;
}

.quote-box footer {
    margin-top: 15px;
    font-weight: 600;
    color: var(--primary);
}

/* Author Bio */
.author-bio {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 92, 0, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin: 50px 0;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: var(--shadow-light);
}

.author-bio-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.author-bio-text h4 {
    color: var(--secondary);
    margin-bottom: 10px;
}

.author-bio-text p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.author-social {
    display: flex;
    gap: 10px;
}

.author-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(212, 92, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.author-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Related Posts */
.related-posts {
    margin: 60px 0;
}

.related-posts h3 {
    color: var(--secondary);
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.related-posts h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.related-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    height: 100%;
}

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

.related-card-img {
    height: 200px;
    overflow: hidden;
}

.related-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.related-card-body {
    padding: 25px;
}

.related-card-body h5 a {
    color: var(--secondary);
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.related-card-body h5 a:hover {
    color: var(--primary);
}

.related-card-body .blog-read-time {
    margin-top: 10px;
}

/* Comments */
.comments-area {
    margin-top: 60px;
}

.comments-title {
    color: var(--secondary);
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment-item {
    display: flex;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comment-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 15px;
}

.comment-info {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
}

.comment-author {
    color: var(--secondary);
    margin: 0;
}

.comment-date {
    color: var(--neutral-text);
    opacity: 0.7;
    font-size: 0.9rem;
    margin-left: auto;
}

.comment-text {
    margin-left: 65px;
    line-height: 1.6;
}

.reply-btn {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: 65px;
    display: inline-block;
    margin-top: 10px;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-light);
}

.widget-title {
    color: var(--secondary);
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(212, 92, 0, 0.1);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

/* TOC */
.toc ul {
    list-style: none;
    padding: 0;
}

.toc li {
    margin-bottom: 8px;
}

.toc a {
    color: var(--neutral-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    display: block;
    padding: 8px 15px;
    border-radius: 10px;
}

.toc a:hover,
.toc a.active {
    background: rgba(212, 92, 0, 0.1);
    color: var(--primary);
    transform: translateX(5px);
}

/* Terms and Conditions/Privacy Policy Page */
.terms-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--neutral-text);
}

.terms-content h2 {
    color: var(--secondary);
    margin: 40px 0 25px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 15px;
}

.terms-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.terms-content h3 {
    color: var(--secondary);
    margin: 35px 0 20px;
    font-size: 1.4rem;
}

.terms-content p {
    margin-bottom: 25px;
}

.terms-content ul,
.terms-content ol {
    margin: 25px 0;
    padding-left: 30px;
}

.terms-content li {
    margin-bottom: 10px;
}

.terms-content strong {
    color: var(--secondary);
    font-weight: 600;
}

.highlight-section {
    background: linear-gradient(135deg, rgba(212, 92, 0, 0.1), rgba(253, 203, 110, 0.1));
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid var(--primary);
    margin: 30px 0;
    position: relative;
}

.highlight-section::before {
    content: '⚖️';
    font-size: 1.5rem;
    position: absolute;
    top: 20px;
    right: 25px;
}

.important-notice {
    background: rgba(225, 112, 85, 0.1);
    border-left: 5px solid var(--accent-dark);
    padding: 25px;
    border-radius: 20px;
    margin: 30px 0;
}

.important-notice::before {
    content: '⚠️';
    font-size: 1.3rem;
    margin-right: 10px;
}

.contact-info h3 {
    color: white;
    margin-bottom: 25px;
}

.contact-details {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item i {
    margin-right: 10px;
    color: var(--accent);
    font-size: 1.2rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.08) 0%, rgba(253, 203, 110, 0.08) 50%, rgba(225, 112, 85, 0.08) 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-header::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 100 20"><defs><pattern id="smallGrid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,212,170,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="20" fill="url(%23smallGrid)"/></svg>');
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
}

/* Gallery/Portfolio Section */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-light);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #fff;
}

.gallery-overlay p {
    color: #fff;
    font-weight: 600;
    margin: 0;
}

/* Overlay Colors */
.gallery-overlay.bg-green {
    background: rgba(0, 212, 170, 0.8);
}

.gallery-overlay.bg-orange {
    background: rgba(255, 112, 85, 0.8);
}

.gallery-overlay.bg-dark {
    background: rgba(45, 52, 54, 0.8);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: var(--light);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--primary) 25%,
            var(--accent) 50%,
            var(--primary) 75%,
            transparent 100%);
}

/* Animated background shapes */
.footer::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    animation: float 20s infinite ease-in-out;
}

@keyframes float {

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

    33% {
        transform: translate(50px, 50px) rotate(120deg);
    }

    66% {
        transform: translate(-50px, 30px) rotate(240deg);
    }
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
    position: relative;
}

.footer-logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.4s ease;
}

.footer-logo:hover::after {
    width: 100%;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-top: 25px;
    margin-bottom: 30px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.3rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.social-link::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 ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: transparent;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

/* Footer Links */
.footer-title {
    color: var(--light);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 15px;
    transform: translateX(0);
    transition: var(--transition);
}

.footer-links ul li:hover {
    transform: translateX(8px);
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.05rem;
    position: relative;
    display: inline-block;
}

.footer-links ul li a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: var(--transition);
    color: var(--accent);
}

.footer-links ul li a:hover::before {
    left: -25px;
    opacity: 1;
}

.footer-links ul li a:hover {
    color: var(--accent);
}

/* Newsletter */
.footer-newsletter-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.footer-form {
    position: relative;
}

.input-group {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-input {
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px 0 0 50px;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1rem;
    border-right: none;
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
    outline: none;
    color: white;
    box-shadow: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
    border-radius: 0 50px 50px 0;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.newsletter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.newsletter-btn:hover::before {
    width: 300px;
    height: 300px;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

/* Copyright */
.copyright {
    background: rgba(0, 0, 0, 0.4);
    padding: 30px 0;
    margin-top: 70px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 50px 0 0;
    }

    .footer-logo {
        font-size: 2.2rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .footer-title {
        font-size: 1.2rem;
    }
}

/* Demo spacing */
.demo-spacer {
    height: 50vh;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--light);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Title */
.cta-title {
    font-size: 2.8rem;
    font-weight: 700;
}

/* Subtitle */
.cta-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* Button */
.cta-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: var(--primary);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

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

/* Social Icons */
.social-link {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    color: var(--light);
    margin-right: 15px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--accent);
    color: #fff;
}

/* Section Titles */
.footer-title {
    color: var(--light);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-size: 1.2rem;
}

/* Links */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.05rem;
}

.footer-links ul li a:hover {
    color: var(--accent);
}

/* Additional styles specific to residential painting page */
.room-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    box-shadow: var(--shadow-light);
}

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

.room-img {
    height: 350px;
    background-size: cover;
    background-position: center;
}

.room-content {
    padding: 30px;
}

.paint-types {
    margin: 60px 0;
}

.paint-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    margin-bottom: 30px;
    box-shadow: var(--shadow-hover);
}

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

.paint-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.paint-icon i {
    font-size: 2.2rem;
    color: white;
}

.color-palette {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

.color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.service-highlight {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.05) 0%, rgba(253, 203, 110, 0.05) 50%, rgba(225, 112, 85, 0.05) 100%);
    padding: 80px 0;
    border-radius: 20px;
    margin: 60px 0;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Additional styles specific to commercial painting page */
.commercial-hero {
    padding: 120px 0 80px;
}

.commercial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    box-shadow: var(--shadow-light);
    height: 100%;
}

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

.commercial-img {
    height: 350px;
    background-size: cover;
    background-position: center;
}

.commercial-content {
    padding: 30px;
}

.business-benefits {
    margin: 60px 0;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    margin-bottom: 30px;
    box-shadow: var(--shadow-light);
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.benefit-icon i {
    font-size: 2.2rem;
    color: white;
}

.industry-section {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.05) 0%, rgba(253, 203, 110, 0.05) 50%, rgba(225, 112, 85, 0.05) 100%);
    padding: 80px 0;
    border-radius: 20px;
    margin: 60px 0;
}

.industry-list {
    list-style: none;
    padding: 0;
}

.industry-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.industry-list li:last-child {
    border-bottom: none;
}

.industry-list i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 1.2rem;
}

.project-timeline {
    margin: 60px 0;
}

.timeline-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 20px;
    width: 2px;
    height: calc(100% + 20px);
    background: var(--primary);
    opacity: 0.3;
}

.timeline-item:last-child::after {
    display: none;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--shadow-light);
}

.commercial-faq {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 80px 0;
    border-radius: 20px;
}

.commercial-contact-form .form-label {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 10px;
}

.commercial-contact-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 1.8rem;
    color: var(--accent);
    margin-right: 20px;
    margin-top: 5px;
}

.contact-detail h5 {
    color: var(--light);
    margin-bottom: 8px;
}

.contact-detail p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

.gradient-1 {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.gradient-2 {
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
}

.gradient-3 {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.gradient-4 {
    background: linear-gradient(135deg, #5ee7df, #b490ca);
}

.gradient-5 {
    background: linear-gradient(135deg, #d299c2, #fef9d7);
}

.gradient-6 {
    background: linear-gradient(135deg, #fdbb2d, #22c1c3);
}

.img-fluid {
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
}

/* Additional styles specific to contact page */
.contact-hero {
    padding: 120px 0 80px;
}

.contact-methods {
    margin: 80px 0;
}

.contact-method-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    margin-bottom: 30px;
    box-shadow: var(--shadow-light);
}

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

.contact-methods .contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.contact-methods .contact-icon i {
    font-size: 2.2rem;
    color: white;
}

.contact-details-section {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.05) 0%, rgba(253, 203, 110, 0.05) 50%, rgba(225, 112, 85, 0.05) 100%);
    padding: 80px 0;
    border-radius: 20px;
    margin: 80px 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-info-icon {
    font-size: 1.8rem;
    color: var(--accent);
    margin-right: 20px;
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-info-content h5 {
    color: var(--secondary);
    margin-bottom: 8px;
}

.contact-info-content p {
    color: var(--neutral-text);
    margin: 0;
    line-height: 1.6;
}

.service-areas {
    margin: 80px 0;
}

.area-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    margin-bottom: 20px;
    box-shadow: var(--shadow-light);
}

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

.map-section {
    margin: 80px 0;
}

.map-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: var(--shadow-light);
}

.gradient-1 {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.gradient-2 {
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
}

.gradient-3 {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.gradient-4 {
    background: linear-gradient(135deg, #5ee7df, #b490ca);
}

.contact-form-section {
    margin: 80px 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-light);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 10px;
}

.contact-form-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.faq-contact {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 80px 0;
    border-radius: 20px;
    margin: 80px 0;
}

/* Additional styles specific to color consultation page */
.color-hero {
    padding: 120px 0 80px;
}

.color-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    box-shadow: var(--shadow-light);
    height: 100%;
}

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

.color-img {
    height: 350px;
    background-size: cover;
    background-position: center;
}

.color-content {
    padding: 30px;
}

.color-types {
    margin: 60px 0;
}

.type-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    margin-bottom: 30px;
    box-shadow: var(--shadow-light);
}

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

.type-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.type-icon i {
    font-size: 2.2rem;
    color: white;
}

.color-psychology {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.05) 0%, rgba(253, 203, 110, 0.05) 50%, rgba(225, 112, 85, 0.05) 100%);
    padding: 80px 0;
    border-radius: 20px;
    margin: 60px 0;
}

.psychology-list {
    list-style: none;
    padding: 0;
}

.psychology-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.psychology-list li:last-child {
    border-bottom: none;
}

.psychology-list i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 1.2rem;
}

.process-section {
    margin: 60px 0;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 0 20px;
    margin-bottom: 30px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-light);
}

.color-faq {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 80px 0;
    border-radius: 20px;
}

.color-contact-form .form-label {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 10px;
}

.color-contact-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.color-palette {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.color-swatch {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    cursor: pointer;
}

.color-swatch:hover {
    transform: scale(1.1);
}

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

.benefit-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-light);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.gradient-1 {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.gradient-2 {
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
}

.gradient-3 {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.gradient-4 {
    background: linear-gradient(135deg, #5ee7df, #b490ca);
}

.color-wheel {
    width: 100%;
    max-width: 300px;
    height: 300px;
    border-radius: 50%;
    background: conic-gradient(red, yellow, lime, aqua, blue, magenta, red);
    margin: 0 auto;
    box-shadow: var(--shadow-light);
}

.room-visualization {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: var(--shadow-light);
}

/* Additional styles specific to decorative finishes page */
.decorative-hero {
    padding: 120px 0 80px;
}

.decorative-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    box-shadow: var(--shadow-light);
    height: 100%;
}

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

.decorative-img {
    height: 350px;
    background-size: cover;
    background-position: center;
}

.decorative-content {
    padding: 30px;
}

.finish-types {
    margin: 60px 0;
}

.finish-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    margin-bottom: 30px;
    box-shadow: var(--shadow-light);
}

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

.finish-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.finish-icon i {
    font-size: 2.2rem;
    color: white;
}

.technique-showcase {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.05) 0%, rgba(253, 203, 110, 0.05) 50%, rgba(225, 112, 85, 0.05) 100%);
    padding: 80px 0;
    border-radius: 20px;
    margin: 60px 0;
}

.technique-list {
    list-style: none;
    padding: 0;
}

.technique-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.technique-list li:last-child {
    border-bottom: none;
}

.technique-list i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 1.2rem;
}

.process-section {
    margin: 60px 0;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 0 20px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-light);
    height: auto;
    border-radius: 20px;
    min-height: 290px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-light);
}

.decorative-faq {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 80px 0;
    border-radius: 20px;
}

.decorative-contact-form .form-label {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 10px;
}

.decorative-contact-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.finish-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.finish-sample {
    height: 100px;
    border-radius: 10px;
    transition: var(--transition);
    cursor: pointer;
    background-size: cover;
    background-position: center;
}

.finish-sample:hover {
    transform: scale(1.05);
}

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

.benefit-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.gradient-1 {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.gradient-2 {
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
}

.gradient-3 {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.gradient-4 {
    background: linear-gradient(135deg, #5ee7df, #b490ca);
}

.gradient-5 {
    background: linear-gradient(135deg, #d299c2, #fef9d7);
}

.gradient-6 {
    background: linear-gradient(135deg, #fdbb2d, #22c1c3);
}

.texture-preview {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: var(--shadow-light);
}

/* Additional styles specific to surface preparation page */
.surface-hero {
    padding: 120px 0 80px;
}

.surface-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    box-shadow: var(--shadow-light);
    height: 100%;
}

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

.surface-img {
    height: 350px;
    background-size: cover;
    background-position: center;
}

.surface-content {
    padding: 30px;
}

.prep-types {
    margin: 60px 0;
}

.prep-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    margin-bottom: 30px;
    box-shadow: var(--shadow-light);
}

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

.prep-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.prep-icon i {
    font-size: 2.2rem;
    color: white;
}

.importance-section {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.05) 0%, rgba(253, 203, 110, 0.05) 50%, rgba(225, 112, 85, 0.05) 100%);
    padding: 80px 0;
    border-radius: 20px;
    margin: 60px 0;
}

.prep-list {
    list-style: none;
    padding: 0;
}

.prep-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.prep-list li:last-child {
    border-bottom: none;
}

.prep-list i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 1.2rem;
}

.process-section {
    margin: 60px 0;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 0 20px;
    margin-bottom: 30px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-light);
}

.surface-faq {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 80px 0;
    border-radius: 20px;
}

.surface-contact-form .form-label {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 10px;
}

.surface-contact-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
}

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

.benefit-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.gradient-1 {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.gradient-2 {
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
}

.gradient-3 {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.gradient-4 {
    background: linear-gradient(135deg, #5ee7df, #b490ca);
}

.gradient-5 {
    background: linear-gradient(135deg, #d299c2, #fef9d7);
}

.gradient-6 {
    background: linear-gradient(135deg, #fdbb2d, #22c1c3);
}

.problem-solution {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: var(--shadow-light);
}

.problem-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.problem-table th {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--light);
    padding: 15px;
    text-align: left;
}

.problem-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.problem-table tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.02);
}

.problem-table tr:hover {
    background: rgba(212, 92, 0, 0.05);
}

/* Additional styles specific to wallpaper installation page */
.wallpaper-hero {
    padding: 120px 0 80px;
}

.wallpaper-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    box-shadow: var(--shadow-light);
    height: 100%;
}

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

.wallpaper-img {
    height: 350px;
    background-size: cover;
    background-position: center;
}

.wallpaper-content {
    padding: 30px;
}

.wallpaper-types {
    margin: 60px 0;
}

.type-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    margin-bottom: 30px;
}

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

.type-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.type-icon i {
    font-size: 2.2rem;
    color: white;
}

.pattern-showcase {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.05) 0%, rgba(253, 203, 110, 0.05) 50%, rgba(225, 112, 85, 0.05) 100%);
    padding: 80px 0;
    border-radius: 20px;
    margin: 60px 0;
}

.pattern-list {
    list-style: none;
    padding: 0;
}

.pattern-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.pattern-list li:last-child {
    border-bottom: none;
}

.pattern-list i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 1.2rem;
}

.process-section {
    margin: 60px 0;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 0 20px;
    margin-bottom: 30px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-light);
}

.wallpaper-faq {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 80px 0;
    border-radius: 20px;
}

.wallpaper-contact-form .form-label {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 10px;
}

.wallpaper-contact-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.pattern-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.pattern-sample {
    height: 100px;
    border-radius: 10px;
    transition: var(--transition);
    cursor: pointer;
}

.pattern-sample:hover {
    transform: scale(1.05);
}

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

.benefit-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.gradient-1 {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.gradient-2 {
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
}

.gradient-3 {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.gradient-4 {
    background: linear-gradient(135deg, #5ee7df, #b490ca);
}

.footer-row {
    display: flex;
    justify-content: center;
    /* center horizontally */
    align-items: center;
    /* align items vertically */
    gap: 15px;
    /* space between p and a */
    flex-wrap: wrap;
    /* in case of small screens */
}

.footer-row p,
.footer-row a {
    margin: 0;
}

.footer-link {
    color: #fff;
    text-decoration: none;
}

/* Additional styles specific to about us page */
.about-hero {
    padding: 120px 0 80px;
}

.story-section {
    margin: 80px 0;
}

.story-timeline {
    position: relative;
    padding-left: 30px;
    margin: 40px 0;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    border: 4px solid white;
    box-shadow: 0 0 0 3px var(--primary);
}

.team-section {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 80px 0;
    border-radius: 20px;
    margin: 80px 0;
}

.team-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    box-shadow: var(--shadow-light);
    text-align: center;
}

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

.team-img {
    height: 350px;
    background-size: cover;
    background-position: center;
}

.team-content {
    padding: 30px;
}

.values-section {
    margin: 80px 0;
}

.value-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    margin-bottom: 30px;
    box-shadow: var(--shadow-light);
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.value-icon i {
    font-size: 2.2rem;
    color: white;
}

.mission-vision {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.05) 0%, rgba(253, 203, 110, 0.05) 50%, rgba(225, 112, 85, 0.05) 100%);
    padding: 80px 0;
    border-radius: 20px;
    margin: 80px 0;
}

.process-section {
    margin: 80px 0;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 0 20px;
    margin-bottom: 30px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-light);
}

.gradient-1 {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.gradient-2 {
    background: linear-gradient(135deg, #FF6B35, #E55A2B);
}

.gradient-3 {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.gradient-4 {
    background: linear-gradient(135deg, #5ee7df, #b490ca);
}

.gradient-5 {
    background: linear-gradient(135deg, #d299c2, #fef9d7);
}

.gradient-6 {
    background: linear-gradient(135deg, #fdbb2d, #22c1c3);
}

.certifications {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: var(--shadow-light);
}

.cert-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.cert-logo img {
    max-height: 100%;
    max-width: 100%;
}