/* Global Styles */
:root {
    --primary-black: #000000;
    --secondary-black: #1a1a1a;
    --primary-gold: #d4af37;
    --secondary-gold: #f4e4c1;
    --light-gold: #faf3e0;
    --white: #ffffff;
    --gray: #666666;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gold-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    margin: 0 auto 3rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
    object-fit: cover;
}

.logo-text h1 {
    font-size: 1.8rem;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.logo-text .tagline {
    font-size: 0.7rem;
    color: var(--secondary-gold);
    font-weight: 300;
    letter-spacing: 2px;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-gold);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-gold);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

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

/* About Section */
.about {
    padding: 5rem 0;
    background-color: var(--secondary-black);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    color: var(--secondary-gold);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.founder-info {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(244, 228, 193, 0.1));
    border-left: 3px solid var(--primary-gold);
}

.founder-info h3 {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.founder-info p {
    color: var(--secondary-gold);
    font-style: italic;
}

/* Credentials Section */
.credentials {
    margin-top: 2rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.credential-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--primary-gold);
}

.credential-item p {
    color: var(--primary-gold);
    font-weight: 500;
    margin: 0;
}

.image-frame {
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

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

.image-frame:hover img {
    transform: scale(1.05);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--primary-black);
}

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

.service-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.4));
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

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

/* Enhanced Service Cards */
.service-card.featured {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(0, 0, 0, 0.8));
    overflow: hidden;
    padding: 0;
    border-radius: 15px;
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-overlay i {
    font-size: 3rem;
    color: var(--primary-gold);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.service-card.featured:hover .service-overlay {
    opacity: 1;
}

.service-card.featured:hover .service-overlay i {
    transform: scale(1);
}

.service-card.featured:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
}

.service-price {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 1rem;
    text-align: center;
    padding: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--secondary-black);
}

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

.testimonial-card {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.stars {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--secondary-gold);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-card h4 {
    color: var(--primary-gold);
    font-weight: 400;
}

/* Enhanced Testimonials */
.testimonial-card.featured-testimonial {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(0, 0, 0, 0.7));
    border-radius: 15px;
    text-align: left;
}

.testimonial-image {
    flex-shrink: 0;
}

.testimonial-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.testimonial-content {
    flex: 1;
}

.testimonial-content .stars {
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-content h4 {
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--primary-black);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-top: 0.5rem;
}

.info-item h3 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--secondary-gold);
}

/* Contact Form */
.contact-form {
    background: rgba(26, 26, 26, 0.8);
    padding: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.contact-form h3 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    color: var(--primary-black);
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* Footer */
.footer {
    background-color: #000000;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

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

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--primary-gold);
    border-radius: 50%;
    color: var(--primary-gold);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-gold);
    color: var(--primary-black);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

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

/* Gallery Section */
.gallery {
    padding: 5rem 0;
    background-color: var(--secondary-black);
}

.gallery-subtitle {
    text-align: center;
    color: var(--secondary-gold);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-style: italic;
}

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

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.gallery-overlay p {
    color: var(--secondary-gold);
    font-size: 1rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }
    
    .nav-link {
        padding: 1rem 0;
        display: block;
        font-size: 1.2rem;
    }

    .hamburger {
        display: flex;
    }

    /* Hero */
    .logo {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .logo-text h1 {
        font-size: 1.4rem;
    }
    
    .logo-text .tagline {
        font-size: 0.6rem;
    }
    
    .hero-content {
        max-width: 100%;
        width: 90%;
        background-color: rgba(0, 0, 0, 0.7);
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .cta-button {
        padding: 1.2rem 2rem;
        font-size: 1rem;
        width: 80%;
        text-align: center;
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-description {
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .about-image {
        margin: 0 auto;
        max-width: 90%;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .testimonial-card.featured-testimonial {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .credential-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .info-item {
        margin-bottom: 1.5rem;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 1.2rem;
        font-size: 1rem;
    }
    
    .submit-btn {
        padding: 1.2rem;
        font-size: 1.1rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-social a {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .gold-divider {
        margin-bottom: 2rem;
    }
    
    .about, .services, .testimonials, .contact {
        padding: 3rem 0;
    }
    
    .about-description, .service-card p, .testimonial-card p {
        font-size: 0.95rem;
    }
    
    .info-item i {
        font-size: 1.3rem;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .testimonial-image img {
        width: 60px;
        height: 60px;
    }
    
    .service-image {
        height: 150px;
    }
    
    .credential-item img {
        width: 50px;
        height: 50px;
    }
}
