/* Global Styles */
:root {
    /* Color Variables */
    --primary-color: #B8860B; /* Dark Golden */
    --primary-dark: #8B6914; /* Darker Golden */
    --primary-light: #DAA520; /* Lighter Golden */
    --secondary-color: #DC143C; /* Crimson Red */
    --secondary-dark: #B22222; /* Darker Red */
    --text-dark: #1A1A1A; /* Almost Black */
    --text-light: #FFFFFF; /* White */
    --text-gray: #666666;
    --bg-light: #F8F9FA;
    --bg-dark: #1A1A1A;
    --border-color: #E5E5E5;
    --pure-black: #000000;
    --brilliant-white: #FFFFFF;
    --dark-golden: #B8860B;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Header Styles */
/* Header Styles */
.header {
    background: var(--pure-black);
    padding: 0.25rem 0; /* Further reduced from 0.5rem to 0.25rem */
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Hide header when scrolling down */
.header.hide-header {
    transform: translateY(-100%);
}

/* Add padding to body to account for fixed header */
body {
    padding-top: 40px; /* Further reduced from 60px to 40px */
}

.header.hide-header {
    transform: translateY(-100%);
}

.navbar {
    padding: 0;
}

.navbar-brand {
    padding: 0;
}

.logo {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--brilliant-white);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--dark-golden);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--dark-golden);
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    height: auto;
    min-height: auto;
    overflow: visible;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
}

.navbar-collapse {
    background: var(--pure-black);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 8px;
    max-height: 80vh;
    overflow-y: auto;
}

.navbar-nav {
    padding: 1rem 0;
}

.nav-item {
    margin: 0.5rem 0;
}

.nav-link {
    padding: 0.75rem 1rem !important;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link:focus {
    background: rgba(184, 134, 11, 0.1);
}

.btn-primary.nav-link {
    text-align: center;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem !important;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay with 60% opacity */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    width: 100%;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Cards */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card-title {
    color: var(--text-dark);
    font-weight: 600;
}

/* Services Section */
.service-card {
    text-align: center;
    padding: 2rem;
}

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

/* Gallery Section */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 30px;
}

.gallery-item img {
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    color: var(--text-light);
}

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

/* Testimonials */
.testimonial-card {
    background: var(--text-light);
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-card .rating {
    color: var(--primary-color);
}

/* Blog */
.blog-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-card img {
    height: 200px;
    object-fit: cover;
}

.blog-card .card-body {
    padding: 1.5rem;
}

/* Forms */
.form-control {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(184, 134, 11, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.footer a:hover {
    color: var(--primary-color);
}

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

/* Animations */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero {
        height: 50vh;
        min-height: 300px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .navbar-collapse {
        background: var(--bg-dark);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }
    
    .nav-link {
        padding: 0.5rem 0 !important;
    }
}

/* Call to Action Sections */
.cta-section {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cta-section .btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.cta-section .btn-primary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
}

/* Stats Cards */
.stats-card {
    background: var(--text-light);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stats-number {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stats-label {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Social Media Icons */
.social-icons a {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
}

.back-to-top:hover {
    background: var(--primary-dark);
    color: var(--text-light);
    transform: translateY(-3px);
}

/* Contact Page Background */
.contact-page {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, 
        #C0C0C0 0%,    /* Silver grey */
        #B8860B 25%,   /* Dark golden */
        #FFFFFF 50%,   /* White */
        #2E8B57 75%,   /* Jungle green */
        #C0C0C0 100%   /* Silver grey */
    );
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    padding-top: 80px; /* Add padding for fixed header */
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.contact-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.contact-logo img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.contact-logo img:hover {
    transform: scale(1.05);
}

.contact-form-container {
    flex: 1;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Ensure all sections are visible */
.contact-section {
    position: relative;
    z-index: 2;
    padding: 4rem 0;
}

.contact-info {
    position: relative;
    z-index: 2;
}

.contact-form {
    position: relative;
    z-index: 2;
}

/* Ensure footer is visible */
.footer {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.9);
}

@media (max-width: 991.98px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-logo {
        order: -1;
        padding: 1rem;
    }
    
    .contact-logo img {
        max-width: 200px;
    }
}

/* Gradient Background */
.gradient-bg {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, 
        #C0C0C0 0%,    /* Silver grey */
        #B8860B 25%,   /* Dark golden */
        #FFFFFF 50%,   /* White */
        #2E8B57 75%,   /* Jungle green */
        #C0C0C0 100%   /* Silver grey */
    );
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    padding-top: 80px; /* Add padding for fixed header */
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Ensure content visibility */
.gradient-bg > * {
    position: relative;
    z-index: 2;
}

/* Booking Form Styles */
.booking-form-container {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.booking-form .form-group {
    margin-bottom: 1.5rem;
}

.booking-form .form-control {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.booking-form .form-control:focus {
    border-color: var(--dark-golden);
    box-shadow: 0 0 0 0.2rem rgba(184, 134, 11, 0.25);
}

.booking-form .btn-primary {
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    color: var(--dark-golden);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #666;
    margin-bottom: 2rem;
}

/* Booking Section Styles */
.booking-section {
    position: relative;
    z-index: 1;
    background: white;
    padding: 4rem 0;
}

/* Step Indicator Styles */
.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.step {
    text-align: center;
    flex: 1;
    position: relative;
}

.step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 20px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: #ddd;
    z-index: 1;
}

.step.active:not(:last-child):after {
    background: var(--primary-color);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ddd;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: var(--primary-color);
    transform: scale(1.1);
}

.step-title {
    font-size: 0.9rem;
    color: #666;
    transition: all 0.3s ease;
}

.step.active .step-title {
    color: var(--primary-color);
    font-weight: bold;
}

/* Booking Step Styles */
.booking-step {
    display: none;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.booking-step.active {
    display: block;
}

.service-card {
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card.selected {
    border-color: var(--dark-golden);
    background: rgba(184, 134, 11, 0.05);
}

.price {
    font-weight: bold;
    color: var(--dark-golden);
}

/* Form Styles */
.form-label {
    font-weight: 500;
    color: #333;
}

.form-control, .form-select {
    border: 1px solid #e0e0e0;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--dark-golden);
    box-shadow: 0 0 0 0.2rem rgba(184, 134, 11, 0.25);
}

/* Button Styles */
.btn-primary {
    background: var(--dark-golden);
    border-color: var(--dark-golden);
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #9b7209;
    border-color: #9b7209;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #666;
    border-color: #666;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #555;
    border-color: #555;
    transform: translateY(-2px);
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 120px 0 60px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.thank-you-content {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.thank-you-content h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thank-you-content .lead {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.thank-you-content p {
    color: #666;
    margin-bottom: 2rem;
}

.thank-you-content .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Form Status Alert Styles */
#form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
}

#form-status.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#form-status.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

#form-status.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Header Animation Styles */
.main-header {
    transition: transform 0.3s ease-in-out;
}

.main-header.hide {
    transform: translateY(-100%);
}

.main-header.show {
    transform: translateY(0);
}

/* Bubble Animation */
.bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
    animation: bubble-float 3s ease-in-out infinite;
}

@keyframes bubble-float {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }
} 