/* ======================= General Setup & Variables ======================= */
:root {
    /* Color Palette */
    --color-gold: #D4AF37;
    --color-black: #0B0B0B;
    --color-dark-blue: #101820; /* A very dark blue, almost black */
    --color-white: #FFFFFF;
    --color-grey-text: #E0E0E0; /* A slightly off-white for body text */
    --color-pink-cta: #E94D68; /* From the "Call Us" button in the concept */

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-image: url('image/bg2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--color-white);
    overflow-x: hidden; /* Prevents horizontal scroll */
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 24, 32, 0.85) 0%, rgba(11, 11, 11, 0.75) 100%);
    z-index: -1;
}

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

/* ======================= Header & Navigation ======================= */
.main-header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: rgba(16, 24, 32, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px; /* Adjust as needed */
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--color-white);
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

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

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-gold);
}

/* ======================= CTA Button Styles ======================= */
.cta-button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px; /* Fully rounded */
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px); /* Lifts the button slightly */
}

.nav-cta {
    background: linear-gradient(45deg, #D4AF37, #FFD700, #B8860B);
    color: var(--color-black);
    font-weight: 700;
}

/* ======================= Hero Section ======================= */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px; /* Reduced offset for fixed header */
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
    }
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 50%;
    animation: fadeInLeft 1s ease-out;
}

.hero-image {
    flex: 1.5;
    max-width: 65%;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-image img,
.hero-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px; /* Soft rounded corners for the image/video */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(212, 175, 55, 0.2); /* Gold border */
}

.hero-image img:hover,
.hero-image video:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3); /* Enhanced shadow on hover */
    border-color: rgba(212, 175, 55, 0.5); /* More visible border on hover */
}

/* Hero section video specific styling */
.hero-image video {
    animation: float 6s ease-in-out infinite; /* Subtle floating animation */
}

/* Video overlay effect for better visual appeal */
.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 24, 32, 0.1) 0%, rgba(11, 11, 11, 0.2) 100%);
    border-radius: 20px;
    pointer-events: none;
    z-index: 1;
}

/* Ensure consistent sizing between hero sections */
.hero-section .hero-image,
.about-hero-section .about-hero-image {
    height: 450px; /* Consistent height for all hero section videos */
}

/* --- Hero Text Styling --- */
.subtitle {
    color: var(--color-gold);
    font-weight: 700;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.main-headline {
    animation: fadeInUp 1s ease-out 0.7s both;
}

.description {
    animation: fadeInUp 1s ease-out 0.9s both;
}

.main-headline {
    font-family: var(--font-heading);
    font-size: 4rem; /* Large, impactful font size */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.highlight-gold {
    color: var(--color-gold);
}

.description {
    font-size: 1.1rem;
    color: var(--color-grey-text);
    max-width: 450px;
    margin-bottom: 30px;
}

/* --- Hero Button Styling --- */
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.primary-cta {
    background-color: var(--color-gold);
    color: var(--color-black);
}

.secondary-cta {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255,255,255,0.3);
}
.secondary-cta:hover {
    background-color: rgba(255,255,255,0.1);
}

.secondary-cta i {
    margin-right: 10px;
}

/* --- Optional: Decorative background shapes --- */
.background-shape {
    position: absolute;
    opacity: 0.1;
    z-index: -1;
}
.shape-1 {
    width: 300px;
    height: 300px;
    border: 2px solid var(--color-gold);
    top: 10%;
    left: 5%;
    transform: rotate(45deg);
}
.shape-2 {
    width: 200px;
    height: 200px;
    background-color: var(--color-gold);
    bottom: 15%;
    right: 10%;
    border-radius: 50%;
}

/* ======================= Services Section ======================= */
.services-section {
    padding: 80px 0;
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 1s ease-out;
}

.services-subtitle {
    color: var(--color-gold);
    font-weight: 700;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.services-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--color-white);
}

.services-description {
    font-size: 1.2rem;
    color: var(--color-grey-text);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 60px;
}

/* Alternating Service Layout */
.service-alternate {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.service-alternate.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-alternate.service-left {
    flex-direction: row;
}

.service-alternate.service-right {
    flex-direction: row-reverse;
}

.service-alternate .service-image {
    flex: 1;
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
}

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

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

.service-alternate .service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 24, 32, 0.7) 0%, rgba(11, 11, 11, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-alternate:hover .service-overlay {
    opacity: 1;
}

.service-alternate .service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--color-gold), #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: glow 2s ease-in-out infinite alternate;
}

.service-alternate .service-icon i {
    font-size: 2rem;
    color: var(--color-black);
}

.service-alternate .service-content {
    flex: 1;
    padding: 30px;
    text-align: left;
}

.service-alternate .service-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-gold);
    margin-bottom: 15px;
    opacity: 0.7;
}

.service-alternate .service-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 20px;
}

.service-alternate .service-description {
    color: var(--color-grey-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-alternate .service-link {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.service-alternate .service-link:hover {
    color: #FFD700;
}

.service-alternate .service-link i {
    transition: transform 0.3s ease;
}

.service-alternate .service-link:hover i {
    transform: translateX(5px);
}

.service-card {
    flex: 1;
    min-width: 250px;
    max-width: calc(25% - 30px);
}

.service-card {
    background: rgba(16, 24, 32, 0.8);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    animation: fadeInUp 1s ease-out;
}

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

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

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

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 24, 32, 0.7) 0%, rgba(11, 11, 11, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--color-gold), #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: glow 2s ease-in-out infinite alternate;
}

.service-icon i {
    font-size: 2rem;
    color: var(--color-black);
}

.service-content {
    padding: 30px;
}

.service-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 15px;
}

.service-description {
    color: var(--color-grey-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #FFD700;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Sticky Header Enhancement */
.main-header.scrolled {
    background: rgba(16, 24, 32, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 30px rgba(212, 175, 55, 0.1);
}

/* Responsive Design for Services */
@media (max-width: 1024px) {
    .services-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .service-card {
        max-width: calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 0;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .services-description {
        font-size: 1rem;
    }
    
    .services-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .service-card {
        max-width: 100%;
        min-width: 250px;
    }
    
    .service-content {
        padding: 20px;
    }
}

/* ======================= About Us Section ======================= */
.about-section {
    padding: 80px 0; /* Reduced padding */
    position: relative;
    background: rgba(16, 24, 32, 0.3);
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.about-card {
    background: rgba(16, 24, 32, 0.8);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    max-width: 1100px; /* Increased max-width */
    width: 100%;
    display: flex;
    animation: fadeInUp 1s ease-out;
}

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

.about-content {
    flex: 1;
    padding: 40px;
    text-align: left;
}

.about-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 15px;
}

.about-subtitle {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 25px;
}

.about-description {
    color: var(--color-grey-text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: left;
}

.about-image {
    flex: 1;
    position: relative;
    height: 550px; /* Increased height */
    overflow: hidden;
}

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

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

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 24, 32, 0.7) 0%, rgba(11, 11, 11, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-card:hover .about-overlay {
    opacity: 1;
}

/* ======================= About Hero Section ======================= */
.about-hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px; /* Reduced offset for fixed header */
}

.about-hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-hero-content {
    flex: 1;
    max-width: 50%;
}

.about-hero-image {
    flex: 1.5;
    max-width: 65%;
    height: 450px; /* Restored previous height */
}

.about-hero-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px; /* Soft rounded corners for the video */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.about-hero-image video:hover {
    transform: scale(1.05);
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: 4rem; /* Large, impactful font size */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--color-white);
}

.about-hero-description {
    font-size: 1.2rem;
    color: var(--color-grey-text);
    max-width: 450px;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* ======================= Who We Are Section ======================= */
.who-we-are-section {
    padding: 80px 0;
    position: relative;
    background: rgba(16, 24, 32, 0.3);
}

.who-we-are-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.who-we-are-card {
    background: rgba(16, 24, 32, 0.8);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    max-width: 1100px; /* Increased max-width */
    width: 100%;
    display: flex;
    animation: fadeInUp 1s ease-out;
}

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

.who-we-are-content {
    flex: 1;
    padding: 40px;
    text-align: left;
}

.who-we-are-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 15px;
}

.who-we-are-subtitle {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 25px;
}

.who-we-are-description {
    color: var(--color-grey-text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: left;
}

.who-we-are-image {
    flex: 1;
    position: relative;
    height: 550px; /* Increased height */
    overflow: hidden;
}

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

.who-we-are-card:hover .who-we-are-image img {
    transform: scale(1.1);
}

.who-we-are-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 24, 32, 0.7) 0%, rgba(11, 11, 11, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.who-we-are-card:hover .who-we-are-overlay {
    opacity: 1;
}

/* ======================= Responsive Design ======================= */
@media (max-width: 992px) {
    .main-headline {
        font-size: 3rem;
    }
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content, .hero-image {
        max-width: 100%;
    }
    .hero-image {
        margin-top: 40px;
    }
    .description {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }
    
    /* Alternating Service Layout Mobile */
    .service-alternate {
        margin-bottom: 60px;
    }
    
    .service-alternate .service-image {
        height: 250px;
    }
    
    .service-alternate .service-number {
        font-size: 2rem;
    }
    
    .service-alternate .service-name {
        font-size: 1.5rem;
    }
    /* Hide desktop nav, show mobile hamburger menu (logic in JS) */
    .main-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .main-headline {
        font-size: 3rem;
    }
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-content, .hero-image {
        max-width: 100%;
    }
    .hero-image {
        margin-top: 40px;
    }
    .description {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    /* Hide desktop nav, show mobile hamburger menu (logic in JS) */
    .main-nav {
        display: none;
    }
    
    /* About Us Responsive */
    .about-section {
        padding: 80px 0;
    }
    
    .about-card {
        flex-direction: column;
        max-width: 100%;
    }
    
    .about-content, .about-image {
        max-width: 100%;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        font-size: 1.3rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .about-image {
        height: 400px;
    }
    
    /* About Hero Responsive */
    .about-hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }
    
    .about-hero-content, .about-hero-image {
        max-width: 100%;
    }
    
    .about-hero-image {
        margin-top: 40px;
        height: 350px;
    }
    
    .about-hero-title {
        font-size: 3rem;
    }
    
    .about-hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Who We Are Responsive */
    .who-we-are-section {
        padding: 80px 0;
    }
    
    .who-we-are-card {
        flex-direction: column;
        max-width: 100%;
    }
    
    .who-we-are-content, .who-we-are-image {
        max-width: 100%;
    }
    
    .who-we-are-title {
        font-size: 2.5rem;
    }
    
    .who-we-are-subtitle {
        font-size: 1.3rem;
    }
    
    .who-we-are-description {
        font-size: 1rem;
    }
    
    .who-we-are-image {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .main-headline {
        font-size: 2.5rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    
    /* About Us Mobile */
    .about-section {
        padding: 60px 0;
    }
    
    .about-card {
        border-radius: 15px;
    }
    
    .about-content {
        padding: 30px 25px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1.2rem;
    }
    
    .about-image {
        height: 350px;
    }
    
    /* About Hero Mobile */
    .about-hero-section {
        padding-top: 80px;
    }
    
    .about-hero-image {
        height: 300px;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero-description {
        font-size: 1rem;
    }
    
    /* Who We Are Mobile */
    .who-we-are-section {
        padding: 60px 0;
    }
    
    .who-we-are-card {
        border-radius: 15px;
    }
    
    .who-we-are-content {
        padding: 30px 25px;
    }
    
    .who-we-are-title {
        font-size: 2rem;
    }
    
    .who-we-are-subtitle {
        font-size: 1.2rem;
    }
    
    .who-we-are-image {
        height: 350px;
    }
}
/* ======================= Why Us Section ======================= */
.why-us-section {
    padding: 80px 0;
    background: rgba(11, 11, 11, 0.5);
}

.why-us-card {
    background: rgba(16, 24, 32, 0.8);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.why-us-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 40px;
}

.why-us-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    margin-top: 30px;
}

.why-us-item {
    flex: 1;
    max-width: 300px;
}

.why-us-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 15px;
}

.why-us-item p {
    color: var(--color-grey-text);
    font-size: 1rem;
    line-height: 1.6;
}
.why-us-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--color-gold), #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: glow 2s ease-in-out infinite alternate;
}

.why-us-icon i {
    font-size: 2.5rem;
    color: var(--color-black);
}
/* ======================= Team Section ======================= */
.team-section {
    padding: 80px 0;
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
}

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

.team-member {
    background: rgba(16, 24, 32, 0.8);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.team-member h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
}
/* ======================= Testimonials Section ======================= */
.testimonials-section {
    padding: 80px 0;
    background: rgba(11, 11, 11, 0.5);
}

.testimonials-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.testimonial-left {
    flex: 1.5; /* Increased flex value to make the image container larger */
    position: relative;
}

.testimonial-card {
    background: var(--color-white);
    color: var(--color-black);
    border-radius: 15px;
    padding: 35px;
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    z-index: 10;
}

.testimonial-quote .fa-quote-left {
    font-size: 3rem;
    color: var(--color-gold);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 30px;
}

.testimonial-quote p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.testimonial-author h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #777;
}

.testimonial-right {
    flex: 1;
    padding-left: 40px;
}

.testimonial-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
}

.testimonial-description {
    font-size: 1.1rem;
    color: var(--color-grey-text);
    margin-bottom: 30px;
}
.testimonial-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: block;
}

/* ======================= Stats Section ======================= */
.stats-section {
    padding: 80px 0;
    position: relative;
    background: rgba(11, 11, 11, 0.5);
}

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

.stats-header {
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out;
}

.stats-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.stats-item {
    flex: 1;
    min-width: 300px;
    background: rgba(16, 24, 32, 0.8);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease-out;
}

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

.stats-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--color-gold), #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: glow 2s ease-in-out infinite alternate;
}

.stats-icon i {
    font-size: 2.5rem;
    color: var(--color-black);
}

.stats-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.stats-label {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 15px;
}

.stats-description {
    color: var(--color-grey-text);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ======================= Stats Section Responsive ======================= */
@media (max-width: 992px) {
    .stats-grid {
        justify-content: center;
    }
    
    .stats-item {
        max-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 60px 0;
    }
    
    .stats-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-item {
        max-width: 100%;
        min-width: 280px;
    }
}

@media (max-width: 576px) {
    .stats-section {
        padding: 50px 0;
    }
    
    .stats-title {
        font-size: 1.8rem;
    }
    
    .stats-item {
        padding: 30px 20px;
    }
    
    .stats-number {
        font-size: 2.5rem;
    }
    
    .stats-label {
        font-size: 1.1rem;
    }
    
    .stats-description {
        font-size: 0.9rem;
    }
}

/* ======================= Scroll Effects ======================= */
/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Animation keyframes for scroll effects */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Scroll animations for sections */
.services-section,
.about-section,
.why-us-section,
.team-section,
.testimonials-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.services-section.animate,
.about-section.animate,
.why-us-section.animate,
.team-section.animate,
.testimonials-section.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Individual section animations */
.services-section {
    transition-delay: 0.2s;
}

.about-section {
    transition-delay: 0.4s;
}

.why-us-section {
    transition-delay: 0.6s;
}

.team-section {
    transition-delay: 0.8s;
}

.testimonials-section {
    transition-delay: 1s;
}


/* Service card animations */
.service-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.4s; }

/* Team member animations */
.team-member {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
}

.team-member.animate {
    opacity: 1;
    transform: translateY(0);
}

.team-member:nth-child(1) { transition-delay: 0.1s; }
.team-member:nth-child(2) { transition-delay: 0.2s; }
.team-member:nth-child(3) { transition-delay: 0.3s; }
.team-member:nth-child(4) { transition-delay: 0.4s; }
.team-member:nth-child(5) { transition-delay: 0.5s; }
.team-member:nth-child(6) { transition-delay: 0.6s; }

/* Header animation on scroll */
.main-header {
    transition: all 0.3s ease;
}

/* Scroll to top button animation */
.scroll-to-top {
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.scroll-to-top:hover {
    animation: pulse 0.6s ease-in-out infinite;
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--color-gold), #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top i {
    font-size: 1.5rem;
    color: var(--color-black);
    transition: transform 0.3s ease;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.scroll-to-top:hover i {
    transform: translateY(-3px);
}

/* ======================= Blog Section ======================= */
.blog-hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: rgba(11, 11, 11, 0.5);
}

.blog-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blog-subtitle {
    color: var(--color-gold);
    font-weight: 700;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--color-white);
}

.blog-description {
    font-size: 1.2rem;
    color: var(--color-grey-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-posts-section {
    padding: 80px 0;
    position: relative;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 30px;
}

.blog-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: rgba(16, 24, 32, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-grey-text);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--color-gold);
    color: var(--color-white);
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blog-post-card {
    background: rgba(16, 24, 32, 0.8);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

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

.blog-post-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-post-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-gold);
    color: var(--color-black);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.blog-post-content {
    padding: 25px;
}

.blog-post-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--color-grey-text);
}

.blog-post-date,
.blog-post-author {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-post-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-post-excerpt {
    color: var(--color-grey-text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-btn {
    display: inline-block;
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: #FFD700;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: rgba(11, 11, 11, 0.7);
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 20px;
}

.newsletter-description {
    font-size: 1.1rem;
    color: var(--color-grey-text);
    margin-bottom: 30px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    background: rgba(16, 24, 32, 0.8);
    color: var(--color-white);
    font-size: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: border-color 0.3s ease;
}

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

.newsletter-form input::placeholder {
    color: var(--color-grey-text);
}

/* Blog Modal */
.blog-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    overflow-y: auto;
}

.modal-content {
    background: rgba(16, 24, 32, 0.95);
    margin: 2% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--color-grey-text);
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--color-white);
}

.modal-post-header {
    position: relative;
}

.modal-post-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.modal-post-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(11, 11, 11, 0.9), transparent);
    padding: 30px 25px 20px;
    color: var(--color-white);
}

.modal-post-category {
    display: inline-block;
    background: var(--color-gold);
    color: var(--color-black);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.modal-post-date,
.modal-post-author {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.modal-post-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin-top: 15px;
}

.modal-post-content {
    padding: 30px 25px;
    color: var(--color-grey-text);
    line-height: 1.8;
}

.modal-post-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white);
    margin-top: 30px;
    margin-bottom: 15px;
}

.modal-post-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-top: 25px;
    margin-bottom: 10px;
}

.modal-post-content p {
    margin-bottom: 15px;
}

.modal-post-footer {
    padding: 20px 25px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-modal-btn {
    padding: 10px 20px;
    background: rgba(16, 24, 32, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-white);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.close-modal-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--color-gold);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(16, 24, 32, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-grey-text);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--color-gold);
    color: var(--color-white);
}

/* Loading Spinner */
.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    color: var(--color-grey-text);
}

.loading-spinner i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--color-gold);
}

/* No Posts Message */
.no-posts {
    text-align: center;
    padding: 60px;
    color: var(--color-grey-text);
    font-size: 1.2rem;
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(16, 24, 32, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3000;
    min-width: 300px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.notification.success {
    border-color: rgba(46, 204, 113, 0.5);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.notification-content i {
    font-size: 1.2rem;
    color: var(--color-gold);
}

.notification-close {
    background: none;
    border: none;
    color: var(--color-grey-text);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.notification-close:hover {
    color: var(--color-white);
}

/* ======================= Blog Responsive ======================= */
@media (max-width: 992px) {
    .blog-title {
        font-size: 3rem;
    }
    
    .blog-posts-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .blog-hero-section {
        padding-top: 100px;
        min-height: 50vh;
    }
    
    .blog-title {
        font-size: 2.5rem;
    }
    
    .blog-description {
        font-size: 1rem;
    }
    
    .blog-posts-section {
        padding: 60px 0;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-post-image {
        height: 250px;
    }
    
    .modal-post-footer {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .blog-hero-section {
        padding-top: 80px;
    }
    
    .blog-title {
        font-size: 2rem;
    }
    
    .blog-posts-section {
        padding: 40px 0;
    }
    
    .blog-post-card {
        border-radius: 10px;
    }
    
    .blog-post-content {
        padding: 20px;
    }
    
    .blog-post-title {
        font-size: 1.3rem;
    }
    
    .modal-post-title {
        font-size: 1.5rem;
    }
    
    .modal-post-content {
        padding: 20px;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        min-width: auto;
    }
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* Sticky header enhancement with scroll effect */
.main-header.scrolled {
    background: rgba(16, 24, 32, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 30px rgba(212, 175, 55, 0.1);
    padding: 15px 0;
}

/* ======================= Footer Section ======================= */
.main-footer {
    background: rgba(11, 11, 11, 0.9);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about {
    flex: 1;
    max-width: 350px;
}

.footer-about h3,
.footer-links h3,
.footer-contact h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.footer-about p {
    color: var(--color-grey-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-about .copyright {
    font-size: 0.9rem;
    color: var(--color-grey-text);
    opacity: 0.8;
}

.footer-links {
    flex: 1;
    max-width: 250px;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: var(--color-grey-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-contact {
    flex: 1;
    max-width: 300px;
}

.footer-contact p {
    color: var(--color-grey-text);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: var(--color-gold);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 0.85rem;
    color: var(--color-grey-text);
    opacity: 0.7;
}

/* ======================= Blog Gallery Section ======================= */
.blog-gallery-section {
    padding: 80px 0;
    background: rgba(11, 11, 11, 0.5);
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-description {
    font-size: 1.1rem;
    color: var(--color-grey-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

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

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(11, 11, 11, 0.9), transparent);
    padding: 30px 20px 20px;
    color: var(--color-white);
}

.gallery-overlay h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    color: var(--color-grey-text);
    margin: 0;
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    overflow-y: auto;
}

.gallery-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: 2% auto;
}

.gallery-modal-image {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
}

.gallery-modal-caption {
    text-align: center;
    padding: 20px;
    background: rgba(16, 24, 32, 0.9);
    border-radius: 10px;
    margin-top: 20px;
}

.gallery-modal-caption h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
}

/* No Gallery Message */
.no-gallery {
    text-align: center;
    padding: 60px;
    color: var(--color-grey-text);
    font-size: 1.2rem;
}

/* ======================= Recent Gallery Section ======================= */
.recent-gallery-section {
    padding: 80px 0;
    background: rgba(16, 24, 32, 0.3);
}

.recent-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.recent-gallery-item {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.recent-gallery-item:hover {
    transform: scale(1.05);
}

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

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

.recent-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px 15px 15px;
    color: white;
}

.recent-gallery-overlay h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    font-weight: 600;
}

.recent-gallery-overlay p {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.9;
}

/* ======================= Latest Posts Section ======================= */
.latest-posts-section {
    padding: 80px 0;
    background: rgba(11, 11, 11, 0.5);
}

.latest-posts-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--color-grey-text);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.latest-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.latest-post-card {
    background: rgba(16, 24, 32, 0.8);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

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

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

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

.latest-post-card:hover .latest-post-image img {
    transform: scale(1.05);
}

.latest-post-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-gold);
    color: var(--color-black);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.latest-post-content {
    padding: 25px;
}

.latest-post-meta {
    margin-bottom: 15px;
}

.latest-post-date {
    color: var(--color-grey-text);
    font-size: 0.9rem;
}

.latest-post-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 15px;
    line-height: 1.3;
}

.latest-post-excerpt {
    color: var(--color-grey-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ======================= Footer Responsive ======================= */
@media (max-width: 992px) {
    .footer-container {
        flex-wrap: wrap;
    }

    .footer-about,
    .footer-links,
    .footer-contact {
        max-width: 100%;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 50px 0 20px;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .footer-about,
    .footer-links,
    .footer-contact {
        max-width: 100%;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .footer-links li {
        margin-bottom: 0;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .blog-gallery-section {
        padding: 60px 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }

    .gallery-modal-content {
        max-width: 95%;
    }
}

@media (max-width: 576px) {
    .main-footer {
        padding: 40px 0 15px;
    }

    .footer-about h3,
    .footer-links h3,
    .footer-contact h3 {
        font-size: 1.3rem;
    }

    .footer-about p,
    .footer-links a,
    .footer-contact p {
        font-size: 0.9rem;
    }

    .blog-gallery-section {
        padding: 40px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-overlay h4 {
        font-size: 1.1rem;
    }
}
