/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --leaf-green: #8BC34A;
    --forest-green: #2E7D32;
    --moss-green: #388E3C;
    --deep-green: #1B5E20;
    --deep-forest: #182d09;
    --eco-white: #F9F9F6;
    --earth-brown: #795548;
    --text-dark: #2C3E50;
    --text-light: #666;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(134, 240, 108, 0.15);
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--eco-white);
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--deep-forest);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 1002;
    gap: 10px; /* spacing between image and text */
}

.logo img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.brand-name {
    font-size: 1.4rem;
    color: white;
    font-weight: 600;
    font-family: 'Segoe UI', sans-serif;
}


/* Desktop Menu */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 10px 0;
}

.nav-link:hover {
    color: var(--leaf-green);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
    background: transparent;
    border: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(27, 94, 32, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        margin: 10px 0;
    }

    .nav-link {
        display: block;
        padding: 20px;
        font-size: 1.2rem;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--leaf-green);
    }
}

/* Buttons */
.btn-primary {
    background: var(--leaf-green);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: var(--forest-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-primary.large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.intro-ccta {
    display: block;
    width: 160px;
    margin: 20px auto;
    padding: 8px 0;
    background: linear-gradient(135deg, var(--leaf-green), var(--forest-green));
    color: white;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.intro-ccta:hover {
    background: linear-gradient(135deg, var(--forest-green), var(--moss-green));
    transform: translateY(-2px) scale(1.05);
}

.intro-cta {
    display: inline-block;
    padding: 12px 30px;
    margin-top: 30px;
    background: linear-gradient(135deg, var(--leaf-green), var(--forest-green));
    color: white;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.intro-cta:hover {
    background: linear-gradient(135deg, var(--forest-green), var(--moss-green));
    transform: translateY(-2px) scale(1.05);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    padding: 0 20px;
    overflow: hidden;
}

/* Hero Video Styles */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    gap: 60px;
}

.hero-content {
    flex: 1;
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.2rem;
    line-height: 2;
}

.hero-highlights li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-highlights i {
    margin-right: 15px;
    font-size: 1.3rem;
}

.banner-form {
    flex: 0 0 400px;
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.banner-form .form-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: white;
    text-align: center;
    font-family: 'Playfair Display', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.banner-form input,
.banner-form select,
.banner-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.banner-form input:focus,
.banner-form select:focus,
.banner-form textarea:focus {
    background: white;
    box-shadow: 0 0 0 2px var(--leaf-green);
}

.banner-form button {
    width: 100%;
    background: var(--leaf-green);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.banner-form button:hover {
    background: var(--forest-green);
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.8rem;
    color: var(--forest-green);
    margin-bottom: 30px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 90%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Section Titles */
.section-title {
    font-size: 2.8rem;
    color: var(--forest-green);
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Why Prakruti Section */
.why-prakruti {
    padding: 100px 0;
    background: var(--eco-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
    margin-bottom: 40px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--leaf-green), var(--forest-green));
    transition: left 0.4s ease;
    z-index: 1;
}

.feature-card:hover::before {
    left: 0;
}

.feature-card:hover {
    color: white;
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-card > * {
    position: relative;
    z-index: 2;
}

.feature-card:hover h3,
.feature-card:hover p {
    color: white;
}

.feature-card:hover .feature-icon {
    background: white;
    color: var(--forest-green);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--leaf-green), var(--moss-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.feature-card h3 {
    font-size: 1.6rem;
    color: var(--forest-green);
    margin-bottom: 20px;
    transition: color 0.4s ease;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    transition: color 0.4s ease;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 50px 0 40px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    padding: 25px;
    background: var(--eco-white);
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--leaf-green);
}

.benefit-item:hover {
    background: var(--forest-green);
    color: white;
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--leaf-green);
    margin-right: 20px;
    width: 30px;
    text-align: center;
    transition: color 0.3s ease;
}

.benefit-item:hover i {
    color: var(--leaf-green);
}

.benefit-item span {
    font-weight: 600;
    font-size: 1rem;
}

/* Resort Lifestyle Section */
.resort-lifestyle {
    padding: 100px 0;
    background: var(--eco-white);
}

.lifestyle-categories {
    margin-top: 60px;
}

.category {
    margin-bottom: 60px;
}

.category h3 {
    font-size: 2.2rem;
    color: var(--forest-green);
    margin-bottom: 15px;
    text-align: center;
}

.category-description {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
    font-size: 1.2rem;
    text-align: center;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.amenity-card {
    background: var(--white);
    border-radius: 10px;
    width: 100%;
    height: 350px;
    padding-top: 50px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.amenity-card img {
    max-width: 100%;
    max-height: 180px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border-radius: 20px;
}

.amenity-card:hover img {
    transform: scale(1.05);
}

.amenity-card h4 {
    font-size: 1.4rem;
    color: var(--forest-green);
    padding: 20px 20px 10px;
}

.amenity-card p {
    color: var(--text-light);
    padding: 0 20px 25px;
    line-height: 1.6;
}

/* Wellness Section */
.wellness {
  padding: 100px 0;
  background: #f4f4f4;
}

.wellness .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #2E7D32;
}

.wellness .section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 40px;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.activity-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
}

.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.activity-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.activity-card h4 {
  padding: 15px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  text-align: center;
}


/* Buyer Profiles Section */
.buyer-profiles {
    padding: 100px 0;
    background: var(--eco-white);
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0 40px 0;
}

.profile-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.profile-card i {
    font-size: 3.5rem;
    color: var(--leaf-green);
    margin-bottom: 25px;
}

.profile-card h3 {
    font-size: 1.5rem;
    color: var(--forest-green);
    margin-bottom: 15px;
}

.profile-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.profiles-conclusion {
    text-align: center;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--forest-green);
    margin-top: 50px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

/* Gallery Section */
.gallery {
    padding: 4rem 1rem;
    background-color: #f9f9f9;
}

.gallery .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.gallery .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Location Section */
.location {
    padding: 100px 0;
    background: var(--white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-text h2 {
    font-size: 2.5rem;
    color: var(--forest-green);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.location-text h2 i {
    color: var(--leaf-green);
    margin-right: 15px;
}

.location-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.proximity-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.proximity-item {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--forest-green);
    font-size: 1.1rem;
}

.proximity-item i {
    color: var(--leaf-green);
    margin-right: 15px;
    width: 25px;
    font-size: 1.2rem;
}

.location-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--forest-green), var(--moss-green));
    color: white;
    text-align: center;
    position: relative;
    
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/KSST4554.JPG') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.final-cta .container {
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.final-cta h3 {
    font-size: 2.8rem;
    color: var(--leaf-green);
    margin-bottom: 30px;
}

.final-cta p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.final-cta .btn-primary {
    background: var(--leaf-green);
    font-size: 1.3rem;
    padding: 20px 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.final-cta .btn-primary:hover {
    background: white;
    color: var(--forest-green);
    transform: translateY(-3px);
}

.cta-subtitle {
    margin-top: 25px;
    font-style: italic;
    opacity: 0.8;
    font-size: 1.1rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--forest-green);
    color: white;
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.sticky-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-content span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: var(--deep-forest);
    color: white;
    padding: 80px 0 40px 0;
    text-align: center;
}

.footer-map-section {
    margin-bottom: 50px;
}

.footer-map-section h3 {
    font-size: 2.2rem;
    color: var(--leaf-green);
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.map-container iframe {
    filter: grayscale(20%) contrast(1.1);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%) contrast(1.2);
}

.map-info {
    display: flex;
    justify-content: center;
}

.location-details {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.location-item i {
    color: var(--leaf-green);
    font-size: 1.3rem;
    width: 25px;
    text-align: center;
}

.location-item:hover {
    color: var(--leaf-green);
    cursor: pointer;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
}

.footer-content p {
    margin: 8px 0;
    opacity: 0.8;
    font-size: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding-bottom: 20px;
}

.social-icons a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: var(--leaf-green);
    transform: scale(1.2);
}

.phone-number {
    color: #8BC34A;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.2rem;
}

.phone-number:hover {
    color: #2E7D32;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.amenity-card,
.activity-card,
.profile-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        gap: 40px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .banner-form {
        flex: 0 0 380px;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 20px 50px;
    }

    .hero-content-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .banner-form {
        flex: 1 1 100%;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .about-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .features-grid,
    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .activities-slider {
        grid-template-columns: repeat(2, 1fr);
    }

    .profiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sticky-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .final-cta h2 {
        font-size: 2.5rem;
    }

    .final-cta h3 {
        font-size: 2rem;
    }

    .location-details {
        flex-direction: column;
        gap: 25px;
    }

    .footer-map-section h3 {
        font-size: 1.8rem;
    }

    .location-text h2 {
        font-size: 2rem;
        flex-direction: column;
        text-align: center;
    }

    .location-text h2 i {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .social-icons {
        padding-bottom: 40px;
        gap: 15px;
    }
    
    .social-icons a {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .activities-slider,
    .profiles-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 15px;
    }

    .banner-form {
        padding: 25px 20px;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .final-cta h3 {
        font-size: 1.6rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        padding: 20px;
    }

    .social-icons {
        gap: 10px;
        margin-top: 10px;
    }
    
    .social-icons a {
        font-size: 1rem;
    }
}

/* Video controls and loading states */
.hero-video::-webkit-media-controls {
    display: none !important;
}

.hero-video::-webkit-media-controls-panel,
.hero-video::-webkit-media-controls-play-button,
.hero-video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
}

/* Ensure video loads properly on mobile */
@media (max-width: 768px) {
    .hero-video {
        object-position: center center;
    }
}
/* Blog Section */
.blog {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 20px;
}

.blog-card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #2E7D32;
    margin-bottom: 10px;
}

.blog-date {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.blog-card-content p {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-cta {
    display: inline-block;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #8BC34A;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-cta:hover {
    color: #2E7D32;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}






