/* Khan Stretch Ceilings - Services Page Desktop Styles */

/* Global link styles */
a {
    color: inherit;
    text-decoration: none;
}

a:visited {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    color: inherit;
    text-decoration: none;
}

:root {
    --main-green: #2F5F3A;
    --accent-green: #3FA450;
    --accent-red: #8B1E1E;
    --metal-gray: #2D2D2D;
    --gold-light: #E8D6B9;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --black: #000000;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.2);
}

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

body {
    font-family: 'Poppins', 'Segoe UI', 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--gold-light);
    background: url('../../images/home/back.jfif') center/cover fixed no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    transition: all 0.3s ease;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
    pointer-events: none;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--main-green), var(--metal-gray));
    box-shadow: 0 2px 10px var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.nav-brand {
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.nav-brand:hover {
    transform: scale(1.05);
    text-decoration: none;
}

.nav-brand:visited {
    color: inherit;
    text-decoration: none;
}

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

.brand-logo {
    width: 150px;
    height: 100px;
    transition: transform 0.3s ease;
}

.brand-text h1 {
    color: var(--gold-light);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.brand-subtitle {
    color: var(--gold-light);
    font-size: 0.9rem;
    font-weight: 300;
}

/* Desktop Navigation with Oval Style */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: block;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--main-green);
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(232, 214, 185, 0.3);
    transition: all 0.3s ease;
}

/* Hide Mobile Elements on Desktop */
.mobile-menu,
.menu-toggle,
.nav-overlay {
    display: none !important;
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    background: transparent;
    border: 2px solid var(--gold-light);
    color: var(--gold-light);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.lang-btn:hover,
.lang-btn.active {
    background-color: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--metal-gray);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--gold-light);
    transition: all 0.3s ease;
}



.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    background: linear-gradient(135deg, var(--main-green), var(--metal-gray));
    color: var(--gold-light);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(47, 95, 58, 0.4);
    background: var(--gold-light);
    color: var(--main-green);
}

/* Main Content */
main {
    margin-top: 120px;
}

/* Page Hero */
.page-hero {
    background: transparent;
    color: var(--gold-light);
    padding: 6rem 0 4rem;
    text-align: center;
    margin-top: 80px;
    margin-bottom: 40px;
    border-radius: 20px;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gold-light);
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--gold-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Detailed Section */
.services-detailed {
    padding: 4rem 0;
    background: transparent;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--main-green), var(--metal-gray));
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(63, 164, 80, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(63, 164, 80, 0.3);
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 2rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-content p {
    font-size: 1.1rem;
    color: var(--gold-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    color: var(--gold-light);
    font-weight: 500;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-light);
    background: linear-gradient(135deg, rgba(63, 164, 80, 0.1), rgba(47, 95, 58, 0.1));
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: inline-block;
    border: 2px solid var(--accent-green);
}

.service-image {
    flex: 1;
    height: 300px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 5px 20px var(--shadow);
    position: relative;
    overflow: hidden;
}

/* Service Image Backgrounds */
.glossy-ceiling {
    background: linear-gradient(45deg, var(--white), var(--light-gray)),
                linear-gradient(135deg, rgba(80, 200, 120, 0.3), rgba(255, 255, 255, 0.8));
    background-blend-mode: overlay;
}

.glossy-ceiling::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    right: 20%;
    bottom: 20%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 10px;
    animation: glossy-shine 4s infinite;
}

@keyframes glossy-shine {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.matte-ceiling {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    position: relative;
}

.matte-ceiling::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(80, 200, 120, 0.1), transparent 70%);
}

.satin-ceiling {
    background: linear-gradient(135deg, #f1f3f4, #ffffff, #f8f9fa);
    position: relative;
}

.satin-ceiling::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    animation: satin-shimmer 3s infinite;
}

@keyframes satin-shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.multilevel-ceiling {
    background: linear-gradient(135deg, var(--main-green), var(--accent-green), var(--metal-gray));
    position: relative;
}

.multilevel-ceiling::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 30%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.multilevel-ceiling::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 60%;
    height: 40%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.photo-ceiling {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #60a5fa);
    position: relative;
}

.photo-ceiling::before {
    content: '🌟';
    position: absolute;
    top: 20%;
    left: 20%;
    font-size: 2rem;
    animation: twinkle 2s infinite;
}

.photo-ceiling::after {
    content: '✨';
    position: absolute;
    bottom: 30%;
    right: 25%;
    font-size: 1.5rem;
    animation: twinkle 2s infinite 1s;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Additional Services Section */
.additional-services {
    padding: 4rem 0;
    background: transparent;
}

.additional-services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--gold-light);
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.additional-item {
    background: linear-gradient(135deg, var(--main-green), var(--metal-gray));
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(63, 164, 80, 0.2);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--accent-green);
}

.additional-item:hover {
    transform: translateY(-5px);
}

.additional-item h3 {
    font-size: 1.3rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.additional-item p {
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.additional-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-light);
    background: rgba(63, 164, 80, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--main-green), var(--metal-gray));
    color: var(--gold-light);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--gold-light);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gold-light);
}

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

.cta-section .btn-primary {
    background: var(--gold-light);
    color: var(--main-green);
    border: none;
}

.cta-section .btn-primary:hover {
    background: var(--accent-green);
    color: var(--white);
    transform: translateY(-2px);
}

.cta-section .btn-secondary {
    background: transparent;
    color: var(--gold-light);
    border: 2px solid var(--gold-light);
}

.cta-section .btn-secondary:hover {
    background: var(--gold-light);
    color: var(--main-green);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero {
        padding: 4rem 0 2rem;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .service-item {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .service-item.reverse {
        flex-direction: column;
    }
    
    .service-image {
        height: 250px;
        width: 100%;
    }
    
    .service-content h2 {
        font-size: 1.6rem;
    }
    
    .additional-services h2,
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .service-content {
        padding: 0;
    }
    
    .service-features li {
        font-size: 0.9rem;
    }
    
    .service-price {
        font-size: 1.2rem;
        padding: 0.8rem 1rem;
    }
    
    .additional-item {
        padding: 1.5rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--main-green), var(--metal-gray));
    color: var(--gold-light);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section h3 {
    color: var(--gold-light);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section p,
.footer-section li {
    color: var(--gold-light);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(232, 214, 185, 0.2);
    padding-top: 1rem;
    text-align: center;
    color: var(--gold-light);
}

.footer-brand {
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-info {
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.contact-info strong {
    color: var(--gold-light);
    font-weight: 600;
}