/* Main CSS for Debaneek Assembly */

:root {
    --primary-color: #1a1a1a;
    --accent-color: #c9a227;
    /* Gold/Brass accent for a premium feel */
    --text-color: #333333;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-color);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.text-accent {
    color: var(--accent-color);
}

/* Navbar Customization */
.navbar {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--primary-color) !important;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: #b08e20;
    border-color: #b08e20;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

/* Sections */
.section-padding {
    padding: 5rem 0;
}

/* Services & Why Choose Us Redesign */
.service-card-modern {
    background: var(--white);
    border: none;
    border-radius: 24px;
    padding: 3rem 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c2c2c 100%);
    z-index: -1;
    opacity: 0;
    transition: all 0.5s ease;
}

.service-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card-modern:hover::before {
    opacity: 1;
}

.service-card-modern:hover h4,
.service-card-modern:hover p {
    color: var(--white) !important;
}

.service-card-modern:hover .feature-icon-circle {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: rotateY(360deg);
}

.feature-icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(197, 168, 122, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 2rem;
    transition: all 0.6s ease;
}

/* Why Choose Us Modern */
.why-box-modern {
    padding: 3rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 168, 122, 0.2);
    transition: all 0.4s ease;
}

.why-box-modern:hover {
    background: var(--white);
    border-color: var(--accent-color);
    box-shadow: 0 15px 45px rgba(197, 168, 122, 0.15);
}

.number-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 5rem;
    font-weight: 900;
    color: var(--accent-color);
    opacity: 0.05;
    transition: all 0.4s ease;
}

.why-box-modern:hover .number-badge {
    opacity: 0.1;
    transform: scale(1.1);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-link {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--accent-color);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

/* Gallery Section */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 300px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}


/* Testimonials */
.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--accent-color);
}

.stars i {
    color: #ffc107;
    margin-right: 2px;
}

/* FAQs */
.accordion-item {
    border: none;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 10px !important;
}

.accordion-button {
    font-weight: 600;
    padding: 1.25rem;
    border-radius: 10px !important;
}

.accordion-button:not(.collapsed) {
    background-color: var(--white);
    color: var(--accent-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}
/* Floating Buttons */
.floating-btn {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-whatsapp {
    right: 30px;
    background-color: #25d366;
}

.btn-phone {
    left: 30px;
    background-color: var(--accent-color);
}

@media (max-width: 768px) {
    .floating-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        font-size: 20px;
    }
    .btn-whatsapp { right: 20px; }
    .btn-phone { left: 20px; }
}
