/* Khan Stretch Ceilings - Home 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 30px;
}

/* 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(--white);
    transition: all 0.3s ease;
}

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

/* Hero Section */
.hero {
    background: transparent;
    color: var(--gold-light);
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    margin: 40px 0;
}

.hero-content {
    flex: 1;
    padding: 0 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    max-width: 600px;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    background: linear-gradient(135deg, var(--main-green), var(--metal-gray));
    color: var(--gold-light);
    box-shadow: 0 4px 15px rgba(47, 95, 58, 0.3);
    border: 2px solid transparent;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--main-green), var(--metal-gray));
    color: var(--gold-light);
    box-shadow: 0 4px 15px rgba(47, 95, 58, 0.3);
}

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

.btn-secondary {
    background: linear-gradient(135deg, var(--main-green), var(--metal-gray));
    color: var(--gold-light);
    box-shadow: 0 4px 15px rgba(47, 95, 58, 0.3);
}

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

.btn-tertiary {
    background: linear-gradient(135deg, var(--main-green), var(--metal-gray));
    color: var(--gold-light);
    box-shadow: 0 4px 15px rgba(47, 95, 58, 0.3);
}

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

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

.ceiling-showcase {
    width: 400px;
    height: 300px;
    background: url('../../images/home/Square.jfif') center/cover no-repeat;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 30px var(--shadow-dark);
    overflow: hidden;
}

.ceiling-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: transparent;
    margin: 40px 0;
}

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

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

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

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-dark);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.3rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--gold-light);
    line-height: 1.6;
}

/* Services Preview Section */
.services-preview {
    padding: 100px 0;
    background: transparent;
    margin: 40px 0;
}

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

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

.service-card {
    background: linear-gradient(135deg, var(--main-green), var(--metal-gray));
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease;
    border-left: 4px solid var(--accent-green);
}

.service-card:hover {
    transform: translateY(-3px);
}

.service-card h4 {
    font-size: 1.3rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--gold-light);
    line-height: 1.6;
}

.services-cta {
    text-align: center;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: transparent;
    color: var(--white);
    margin: 40px 0;
}

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

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--main-green), var(--metal-gray));
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-green), var(--main-green));
    border-radius: 50%;
    color: var(--gold-light);
}

.contact-item h4 {
    color: var(--gold-light);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--gold-light);
    font-weight: 500;
}

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

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

.footer-brand h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold-light);
}

.footer-brand p {
    color: var(--gold-light);
    line-height: 1.6;
}

.footer-links h5,
.footer-contact h5 {
    color: var(--gold-light);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--gold-light);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .ceiling-showcase {
        width: 300px;
        height: 200px;
    }
    
    .features h3,
    .services-preview h3,
    .contact-section h3 {
        font-size: 2rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .ceiling-showcase {
        width: 250px;
        height: 180px;
    }
}