/*---------------------------------------------
   Global Styles & Resets
---------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #000;
    color: #fff;
}

/*---------------------------------------------
   Navigation Styles (Used on All Pages)
---------------------------------------------*/
.main-nav {
    display: grid;
    grid-template-columns: auto 1fr;  /* Logo in first column */
    align-items: center;
    padding: 1rem 4rem;
    background-color: transparent;
    position: relative;
    width: 100%;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 500;
    margin-right: 2rem;
}
.logo_image {
    background-image: url("images/logo.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    height: 40px;
    width: 40px;
    text-indent: -99999px;
}

.main-nav ul {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    list-style: none;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 300;
}

/*---------------------------------------------
   Home Page / Hero Section
---------------------------------------------*/
/* Base hero styles */
.hero {
    position: relative;
    height: 60vh; /* Default height for other pages */
    width: 100%;
    background-color: #000;
    overflow: hidden;
}

/* Home page specific hero height */
.hero:has(.video-background) {
    height: 100vh; /* Full viewport height for home page */
}

/* Video background specific styles */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Changed back to 'cover' to fill the container */
}

/* Optional: Add a dark overlay for better text visibility */
.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* Contact hero specific styles */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('../images/contact-bg.jpg') center/cover;
    height: 40vh;
}

/* Ensure hero content is centered vertically */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    padding: 1rem 2rem;
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.cta-button:hover {
    background-color: #fff;
    color: #000;
}

/*---------------------------------------------
   Services Page Styles
---------------------------------------------*/
.service-section {
    padding: 4rem;
}

.service-section.services-main {
    padding: 4rem;
}
.service-section h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    margin-top: 2rem;
    text-align: center;
}
.service-section.services-main h2 {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;  /* Ensure text is visible on dark background */
}

.service-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    background-color: #f7f7f7;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 0 20px rgba(248, 247, 247, 0.1);
}
.package-card:hover {
    transform: translateY(-10px);
}
.package-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}
.package-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}
.package-content li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #dcdcdc;
}
.package-btn {
    width: 100%;
    max-width: 200px;
}

/* Premium Package Styling */
.package-card:nth-child(2) {
    background: linear-gradient(
        45deg,
        #7f7f7f 0%,
        #a8a8a8 50%,
        #696969 100%
    );
    background-size: 200% 200%;
    animation: subtle-shine 3s ease-in-out infinite;
}
/* Deluxe Package Styling - Darker gold with more apparent shine */
.package-card:nth-child(3) {
    background: linear-gradient(
        45deg,
        #b8860b 0%,    /* Darker gold base */
        #daa520 50%,   /* Slightly brighter middle for shine */
        #8b6914 100%   /* Darkest gold */
    );
    background-size: 200% 200%;
    animation: subtle-shine 3s ease-in-out infinite 1.5s;
}
/* Simplified Animation Keyframes */
@keyframes subtle-shine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
/* Adjust semi-transparent text background for premium and deluxe */
.package-card:nth-child(1) .package-content,
.package-card:nth-child(2) .package-content,
.package-card:nth-child(3) .package-content {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

/* Darker gray for Basic Package */
.package-card:nth-child(1) {
    background-color: #3d3232;
}
.package-card:nth-child(2) .package-btn {
    border-color: #dedede;
}
.package-card:nth-child(3) .package-btn {
    border-color: #daa520;
}

/* Quote Section on Services Page */
.service-quote-box {
    text-align: center;
    padding: 4rem 2rem;
    margin-top: 2rem;
    background-color: #4b4b4b;
    border-radius: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-quote-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.service-quote-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.service-quote-box .cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    font-size: 1.2rem;
}

/*---------------------------------------------
   Contact Page Styles
---------------------------------------------*/
.contact-section {
    padding: 2rem 2rem;
    background-color: #000;
}
.contact-container {
    max-width: 420px;
    margin: 0 auto;
}
.contact-info {
    background-color: #111;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(77, 74, 74, 0.1);
    text-align: center;
}
.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}
.contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
}
.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}
.contact-item i {
    font-size: 1.5rem;
    color: #fff;
}
.contact-item h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    width: 100%;
    text-align: center;
}
.contact-item p {
    width: 100%;
    text-align: center;
}
.contact-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-item a:hover {
    color: #ccc;
}
.social-links {
    width: 100%;
    text-align: center;
}
.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    justify-content: center;
}
.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}
.social-icons a:hover {
    color: #ccc;
}

/*---------------------------------------------
   Footer Styles (Used on All Pages)
---------------------------------------------*/
.main-footer {
    background-color: #111;
    color: #fff;
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.footer-section ul {
    list-style: none;
    padding: 0;
}
.footer-section ul li {
    margin-bottom: 0.8rem;
}
.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-section a:hover {
    color: #ccc;
}
.footer-section p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.footer-social a {
    font-size: 1.5rem;
}
.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: #888;
}

/*---------------------------------------------
   Team Section Styles
---------------------------------------------*/
.team-section {
    padding: 4rem 2rem;
    text-align: center;
}

.team-section h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: #fff;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background-color: #111;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #fff;
}

.member-role {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.member-description {
    color: #fff;
    line-height: 1.6;
}

/*---------------------------------------------
   What We Do Section Styles
---------------------------------------------*/
.what-we-do {
    padding: 6rem 2rem;
    background-color: #111;
    text-align: center;
}

.what-we-do h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: #fff;
}

.service-intro {
    max-width: 1200px;
    margin: 0 auto;
}

.intro-content {
    padding: 2rem;
}

.intro-content h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #fff;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #dcdcdc;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.highlight {
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.highlight h4 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #fff;
}

.highlight p {
    font-size: 1rem;
    color: #dcdcdc;
    margin-bottom: 0;
}

.quote-section {
    min-height: 80vh;
    padding: 6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

.quote-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.quote-container h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #fff;
}

.quote-content {
    background-color: #111;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.quote-content > p {
    font-size: 1.2rem;
    color: #dcdcdc;
    margin-bottom: 3rem;
}

.quote-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.step {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

.step i {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 400;
}

.step p {
    color: #dcdcdc;
    line-height: 1.4;
}

.quote-section .cta-button {
    display: inline-block;
    font-size: 1.2rem;
    padding: 1rem 3rem;
    margin-top: 1rem;
    text-decoration: none;
}

/* Spam Notice Styles */
.spam-notice {
    margin: 1.5rem 0;
    padding: 0.8rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.spam-notice p {
    color: #dcdcdc;
    font-size: 0.9rem;
    margin: 0;
}

.spam-notice i {
    margin-right: 0.5rem;
    color: #ffd700;
}

@media (max-width: 768px) {
    .contact-info {
        padding: 2rem;
    }
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-section p {
        justify-content: center;
    }
    .footer-social {
        justify-content: center;
    }
    .service-packages {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    .services-main {
        margin-top: 100px;
    }
    .team-container {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .member-image {
        width: 150px;
        height: 150px;
    }
    .what-we-do {
        padding: 4rem 1rem;
    }
    
    .service-highlights {
        grid-template-columns: 1fr;
    }
    .quote-steps {
        grid-template-columns: 1fr;
    }
    
    .quote-container h1 {
        font-size: 2.5rem;
    }
    
    .quote-content {
        padding: 2rem;
    }
}