@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;700&display=swap');
@import 'variables.css';

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

body {
    font-family: var(--font-body);
    background-color: var(--black-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--gold-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gold-text {
    background: linear-gradient(45deg, var(--gold-primary), var(--gold-light), var(--gold-primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}

.btn-gold {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, var(--gold-dark), var(--gold-primary));
    color: var(--black-bg);
    font-weight: 600;
    border-radius: 5px;
    border: 1px solid var(--gold-primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
    z-index: -1;
}

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

.btn-gold:hover {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* Animations */
@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Header */
header {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    /* Adjust based on logo aspect ratio */
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 16px;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--gold-primary);
    transition: var(--transition);
}

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

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--gold-primary);
}

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--black-bg), transparent);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-muted);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--black-bg);
}

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

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-title .line {
    width: 100px;
    height: 3px;
    background: var(--gold-primary);
    margin: 0 auto;
}

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

.service-card {
    background-color: var(--black-card);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 40px;
    border-radius: 10px;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Rates Section */
.rates {
    padding: 80px 0;
    background-color: #0f0f0f;
}

.rate-card {
    background: linear-gradient(135deg, var(--black-card), #1a1a1a);
    border: 2px solid var(--gold-primary);
    border-radius: 15px;
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.1);
}

.rate-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 20px;
}

.rate-price {
    font-size: 3.5rem;
    color: var(--gold-primary);
    font-weight: 700;
}

.rate-unit {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.rate-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.rate-category h4 {
    color: var(--gold-light);
    margin-bottom: 15px;
    font-size: 1.2rem;
    border-left: 3px solid var(--gold-primary);
    padding-left: 10px;
}

.rate-category ul li {
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.rate-category ul li::before {
    content: '•';
    color: var(--gold-primary);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--black-bg);
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info,
.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    background-color: var(--black-card);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold-primary);
    margin-right: 20px;
    font-size: 20px;
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px;
    background-color: var(--black-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--text-light);
    font-family: var(--font-body);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
}


/* Footer */
footer {
    background-color: #050505;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 60px 0 20px;
}

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

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

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

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--black-bg);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    /* Footer */
    footer {
        background-color: #050505;
        padding: 60px 0 20px;
        color: var(--text-light);
        border-top: 1px solid rgba(212, 175, 55, 0.1);
    }

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

    .footer-col h3 {
        margin-bottom: 15px;
        font-size: 1.5rem;
    }

    .footer-col h4 {
        color: #fff;
        margin-bottom: 20px;
        font-size: 1.2rem;
        position: relative;
        padding-bottom: 10px;
    }

    .footer-col h4::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 2px;
        background-color: var(--gold-primary);
    }

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

    .footer-links a {
        color: var(--text-muted);
        transition: var(--transition-speed);
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .footer-links a:hover {
        color: var(--gold-primary);
        transform: translateX(5px);
    }

    .social-links {
        display: flex;
        gap: 15px;
        margin-top: 15px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: white;
        transition: 0.3s;
    }

    .social-links a:hover {
        background-color: var(--gold-primary);
        color: var(--black-bg);
    }

    /* Floating Action Buttons (Desktop & Mobile) */
    .floating-action-container {
        position: fixed;
        bottom: 30px;
        right: 30px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 1000;
    }

    .floating-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: white;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        text-decoration: none;
    }

    .floating-btn:hover {
        transform: scale(1.1);
    }

    .floating-btn.whatsapp {
        background-color: #25D366;
    }

    .floating-btn.call {
        background-color: var(--gold-primary);
    }

    .floating-btn-text {
        display: none;
        /* Hide text by default, minimal icon look */
    }

    /* Mobile Specific Adjustments */
    @media (max-width: 768px) {
        .floating-action-container {
            flex-direction: row;
            width: 100%;
            bottom: 0;
            right: 0;
            left: 0;
            background: var(--black-card);
            padding: 10px;
            justify-content: space-around;
            gap: 10px;
            border-top: 1px solid var(--gold-primary);
            border-radius: 0;
        }

        .floating-btn {
            width: auto;
            height: auto;
            padding: 10px 20px;
            border-radius: 50px;
            flex: 1;
            font-size: 1rem;
        }

        .floating-btn-text {
            display: inline-block;
            margin-left: 8px;
            font-weight: 600;
        }
    }


    /* New Page Styles */
    .page-header {
        background-color: #0f0f0f;
        padding: 80px 0 40px;
        text-align: center;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    .page-header h1 {
        font-size: 3.5rem;
        margin-bottom: 10px;
    }

    .faq-item {
        background-color: var(--black-card);
        border: 1px solid rgba(212, 175, 55, 0.1);
        margin-bottom: 20px;
        border-radius: 8px;
        overflow: hidden;
    }

    .faq-question {
        padding: 20px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1.1rem;
        color: var(--text-light);
    }

    .faq-question:hover {
        background-color: rgba(212, 175, 55, 0.05);
    }

    .faq-answer {
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out, padding 0.3s ease;
        background-color: rgba(255, 255, 255, 0.03);
    }

    .faq-item.active .faq-answer {
        /* max-height handled by JS */
        padding: 20px;
    }

    .faq-item.active .faq-question {
        color: var(--gold-primary);
        background-color: rgba(212, 175, 55, 0.1);
    }

    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }

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

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