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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Orange Gradient Theme */
:root {
    --primary: #FF6B35;
    --primary-dark: #E55A2B;
    --secondary: #FFA62B;
    --light-orange: #FFE8D6;
    --dark: #333333;
    --gray: #666666;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-light: linear-gradient(135deg, #FFA62B, #FFD166);
    --shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--gray);
    font-size: 1.1rem;
}

.highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

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

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

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

/* Header & Navigation */
header {
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 5px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--dark);
}

.logo i {
    color: var(--primary);
    margin-right: 12px;
    font-size: 2.2rem;
}

.logo span {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 1.05rem;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: var(--gradient);
    bottom: -8px;
    left: 0;
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 166, 43, 0.05));
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: var(--gradient-light);
    opacity: 0.1;
    transform: rotate(30deg);
    border-radius: 50px;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: rotate(30deg) translateY(0); }
    50% { transform: rotate(30deg) translateY(-20px); }
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    font-size: 3.2rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Raleway', sans-serif;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 166, 43, 0.1));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

.image-placeholder i {
    font-size: 4rem;
    color: var(--primary);
    position: absolute;
    animation: bounce 3s ease-in-out infinite;
}

.image-placeholder i:nth-child(1) {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.image-placeholder i:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 0.5s;
}

.image-placeholder i:nth-child(3) {
    bottom: 15%;
    left: 35%;
    animation-delay: 1s;
}

.image-placeholder i:nth-child(4) {
    top: 35%;
    right: 25%;
    animation-delay: 1.5s;
}

.image-placeholder i:nth-child(5) {
    top: 25%;
    left: 45%;
    animation-delay: 2s;
}

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

/* Services Section */
.services {
    padding: 120px 0;
    background: var(--white);
}

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

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--gradient);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 30px auto 0;
    color: var(--gray);
}

.service-category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 40px 0 20px;
}

.category-tab {
    padding: 12px 24px;
    background: var(--light-gray);
    border: none;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--gray);
}

.category-tab:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
}

.category-tab.active {
    background: var(--gradient);
    color: var(--white);
    box-shadow: var(--shadow-light);
}

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

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow);
    border-color: rgba(255, 107, 53, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 166, 43, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.3s ease;
}

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

.service-icon i {
    font-size: 2.8rem;
    color: var(--primary);
}

.service-list {
    list-style: none;
    text-align: left;
    margin: 25px 0;
    padding: 0 10px;
}

.service-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.service-list i {
    color: var(--primary);
    margin-right: 12px;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.service-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.3rem;
    font-family: 'Raleway', sans-serif;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    gap: 8px;
}

.service-link:hover {
    color: var(--primary-dark);
    gap: 12px;
}

.view-more-container {
    text-align: center;
    margin-top: 60px;
}

/* Additional Services */
.additional-services {
    padding: 100px 0;
    background: var(--light-gray);
}

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

.additional-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.additional-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 166, 43, 0.1));
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    display: inline-block;
}

.additional-card h4 {
    margin-bottom: 15px;
    color: var(--dark);
}

.additional-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.feature i {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 166, 43, 0.1));
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    display: inline-block;
}

.feature h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.feature p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: var(--light-gray);
}

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

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 3px solid var(--primary);
}

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

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.pricing-header {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(255, 107, 53, 0.1);
}

.pricing-header h3 {
    color: var(--dark);
    margin-bottom: 15px;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Raleway', sans-serif;
}

.price span {
    font-size: 1.2rem;
    color: var(--gray);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.pricing-features i {
    margin-right: 15px;
    font-size: 1.2rem;
}

.pricing-features .fa-check {
    color: #2ecc71;
}

.pricing-features .fa-times {
    color: #e74c3c;
}

/* Contact CTA */
.contact-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(255, 166, 43, 0.9)), url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    position: relative;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.9;
}

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

.contact-cta h2 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

.contact-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-size: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--white);
    margin-top: 5px;
}

.contact-item h4 {
    color: var(--white);
    margin-bottom: 8px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
    font-size: 1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 100px 0 30px;
}

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

.footer-section h4 {
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: var(--white);
}

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

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

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

.business-hours li {
    display: flex;
    justify-content: space-between;
    color: #bbb;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.business-hours span {
    color: var(--white);
    font-weight: 500;
}

.newsletter {
    margin-top: 25px;
}

.newsletter input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

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

.newsletter .btn-small {
    width: 100%;
    background: var(--gradient);
    color: var(--white);
    border: none;
}

.newsletter .btn-small:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    border-radius: 50%;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient);
    transform: translateY(-5px) rotate(360deg);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bbb;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--shadow);
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

/* Responsive Design */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .image-placeholder {
        width: 350px;
        height: 350px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        text-align: center;
        gap: 25px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 150px 0 80px;
    }
    
    h1 {
        font-size: 2.3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .image-placeholder {
        width: 280px;
        height: 280px;
    }
    
    .image-placeholder i {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .service-category-tabs {
        gap: 10px;
    }
    
    .category-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
}
/* Gallery Section */
.gallery {
    padding: 120px 0;
    background: var(--light-gray);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 40px 0 60px;
}

.filter-btn {
    padding: 12px 24px;
    background: var(--white);
    border: 2px solid rgba(255, 107, 53, 0.1);
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--gray);
}

.filter-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    border-color: var(--primary);
}

.filter-btn.active {
    background: var(--gradient);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-light);
}

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

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    height: 300px;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    padding: 30px 25px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.gallery-overlay h3 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.view-project {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.view-project:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateX(5px);
}
.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    height: 300px;
    display: block; /* Ensure all items are visible */
}

/* Remove any .hidden class related styles */

/* Team Section */
/* Designer Profile Section */
.team {
    padding: 120px 0;
    background: var(--white);
}

.designer-profile {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
}

@media (min-width: 992px) {
    .designer-profile {
        flex-direction: row;
        align-items: flex-start;
        gap: 60px;
        padding: 50px;
    }
}

.designer-image {
    flex: 1;
    position: relative;
    max-width: 400px;
    width: 100%;
}

.designer-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 5px solid var(--white);
    transition: transform 0.3s ease;
}

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

.designer-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: var(--shadow-light);
}

.designer-badge i {
    font-size: 1.1rem;
}

.designer-details {
    flex: 1;
    width: 100%;
}

.designer-details h3 {
    color: var(--dark);
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-family: 'Raleway', sans-serif;
}

.designer-title {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 15px;
}

.designer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.designer-qualifications {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.qualification {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.qualification:hover {
    background: rgba(255, 107, 53, 0.05);
    border-left-color: var(--primary);
    transform: translateX(5px);
}

.qualification i {
    font-size: 1.8rem;
    color: var(--primary);
    width: 50px;
    text-align: center;
    flex-shrink: 0;
}

.qualification div {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.qualification strong {
    color: var(--dark);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

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

.designer-bio {
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 35px;
    font-size: 1.1rem;
    padding: 25px;
    background: rgba(255, 107, 53, 0.03);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.designer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
    margin-bottom: 40px;
}

.stat {
    background: var(--white);
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stat strong {
    display: block;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 8px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
}

.stat span {
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 500;
}

.designer-expertise {
    margin-bottom: 35px;
}

.designer-expertise h4 {
    color: var(--dark);
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-family: 'Raleway', sans-serif;
}

.skills-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.skill {
    margin-bottom: 5px;
}

.skill-name {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark);
    font-size: 1.05rem;
}

.skill-name span {
    color: var(--primary);
}

.skill-bar {
    height: 12px;
    background: var(--light-gray);
    border-radius: 6px;
    overflow: hidden;
}

.skill-level {
    height: 100%;
    background: var(--gradient);
    border-radius: 6px;
    transition: width 1.5s ease-in-out;
}

.designer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: var(--light-gray);
    color: var(--dark);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
    justify-content: center;
}

.social-link:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.social-link i {
    font-size: 1.3rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .designer-profile {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .designer-profile {
        padding: 35px;
        gap: 40px;
    }
    
    .designer-details h3 {
        font-size: 2.2rem;
    }
    
    .designer-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .designer-profile {
        padding: 30px 25px;
        gap: 35px;
    }
    
    .designer-details h3 {
        font-size: 1.8rem;
    }
    
    .designer-title {
        font-size: 1.2rem;
    }
    
    .designer-stats {
        grid-template-columns: 1fr;
    }
    
    .stat {
        padding: 20px;
    }
    
    .stat strong {
        font-size: 2rem;
    }
    
    .qualification {
        padding: 18px;
        gap: 15px;
    }
    
    .qualification i {
        font-size: 1.6rem;
    }
    
    .social-link {
        min-width: 150px;
        padding: 12px 25px;
    }
}

@media (max-width: 576px) {
    .designer-profile {
        padding: 25px 20px;
        gap: 30px;
    }
    
    .designer-details h3 {
        font-size: 1.6rem;
    }
    
    .designer-bio {
        padding: 20px;
        font-size: 1rem;
    }
    
    .designer-social {
        flex-direction: column;
    }
    
    .social-link {
        width: 100%;
    }
}
/* Responsive Design Additions */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .lightbox-nav.prev {
        left: 20px;
    }
    
    .lightbox-nav.next {
        right: 20px;
    }
}
/* 
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .lightbox-content {
        max-width: 95%;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .lightbox-nav.prev {
        left: 10px;
    }
    
    .lightbox-nav.next {
        right: 10px;
    } */


@media (max-width: 576px) {
    .gallery-filter {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .team-card {
        margin: 0 15px;
    }
}
/* Logo Styling */
.logo-img {
    height: 40px; /* Adjust based on your logo size */
    width: auto;
    margin-right: 12px;
    vertical-align: middle;
    transition: all 0.3s ease;
}

/* Optional: Add hover effect */
.logo:hover .logo-img {
    transform: scale(1.05) rotate(-5deg);
}

/* Adjust existing logo styles if needed */
.logo {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--dark);
}

.logo i {
    color: var(--primary);
    margin-right: 12px;
    font-size: 2.2rem;
}

/* Remove or comment out the old icon styling */
/*
.logo i {
    color: var(--primary);
    margin-right: 12px;
    font-size: 2.2rem;
}
*/
@media (max-width: 768px) {
    .logo-img {
        height: 35px; /* Smaller on mobile */
    }
    
    .logo {
        font-size: 1.8rem; /* Adjust font size if needed */
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 30px; /* Even smaller on very small screens */
    }
    
    .logo {
        font-size: 1.6rem;
    }
}
/* Lightbox Modal - Improved */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: lightboxFadeIn 0.3s ease;
}

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

.close-lightbox {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.close-lightbox:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: rotate(90deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.lightbox-content img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    display: block;
}

.lightbox-info {
    background: var(--white);
    padding: 25px 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
}

.lightbox-info h3 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-weight: 600;
}

.lightbox-info p {
    color: var(--gray);
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Improved Navigation Buttons */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.lightbox-nav:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

/* Hide buttons on mobile when not needed */
@media (max-width: 768px) {
    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .lightbox-nav.prev {
        left: 10px;
    }
    
    .lightbox-nav.next {
        right: 10px;
    }
    
    .lightbox-info {
        padding: 20px 25px;
    }
    
    .lightbox-info h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .lightbox-info {
        padding: 18px 20px;
    }
    
    .close-lightbox {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        top: 10px;
        right: 10px;
    }
}

/* Optional: Add navigation dot indicators */
.lightbox-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.lightbox-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.lightbox-indicator.active {
    background: var(--primary);
    transform: scale(1.2);
}

.lightbox-indicator:hover {
    background: var(--white);
    transform: scale(1.1);
}
/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  width: 90%;
  position: relative;
  animation: modalFadeIn 0.3s ease-out;
}

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

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #666;
}

.close-btn:hover {
  color: #000;
}

.offer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.offer-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  max-height: 300px;
  object-fit: cover;
}

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

.offer-text h3 {
  color: #e63946;
  margin-bottom: 10px;
  font-size: 24px;
}

.offer-text p {
  color: #333;
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.offer-button {
  display: inline-block;
  background-color: #e63946;
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.offer-button:hover {
  background-color: #d62839;
}

/* Responsive */
@media (min-width: 768px) {
  .offer-content {
    flex-direction: row;
  }
  
  .offer-image {
    width: 50%;
  }
  
  .offer-text {
    width: 50%;
    padding-left: 20px;
  }
}
/* ================================
   LOCATION UPDATE POPUP
================================ */

.location-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 15px;
}

/* Popup Card */
.location-popup-content {
  background: #ffffff;
  width: 100%;
  max-width: 420px;
  border-radius: 14px;
  padding: 25px 22px 30px;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
  animation: popupScale 0.35s ease;
}

/* Title */
.location-popup-content h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--primary);
  font-weight: 600;
}

/* Text */
.location-popup-content p {
  font-size: 15.5px;
  line-height: 1.5;
  color: #444;
  margin-bottom: 15px;
}

/* Close Button */
.close-location-popup {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 22px;
  cursor: pointer;
  color: #666;
  transition: color 0.2s ease;
}

.close-location-popup:hover {
  color: var(--primary);
}

/* ================================
   MINI MAP STYLING
================================ */

.map-container {
  width: 100%;
  height: 200px;
  margin: 15px 0 20px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ================================
   BUTTON
================================ */

.location-popup-content .btn {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
}

/* ================================
   ANIMATION
================================ */

@keyframes popupScale {
  from {
    opacity: 0;
    transform: scale(0.88);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ================================
   MOBILE OPTIMIZATION
================================ */

@media (max-width: 480px) {
  .location-popup-content {
    padding: 20px 18px 25px;
  }

  .location-popup-content h3 {
    font-size: 20px;
  }

  .map-container {
    height: 180px;
  }
}
/* Animation for animated class */
.service-card,
.gallery-item,
 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
} 

.service-card.animated,
.gallery-item.animated{
    opacity: 1;
    transform: translateY(0);
} 

/* Notification styles */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1002;
    animation: slideIn 0.3s ease;
    min-width: 300px;
    max-width: 400px;
}

.notification.error {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}
