/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* HEADER / HERO SECTION */
.hero-header {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    background-image: url('images/Home/Header bg.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}

/* Overlay oscuro sobre la imagen de fondo */
.hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* NAVIGATION BAR */
.navbar {
    position: relative;
    z-index: 100;
    padding: 1.5rem 0;
    background: transparent;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #efcd97;
}

.nav-link.active {
    color: #efcd97;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #efcd97;
}

/* Right Side: Instagram + Contact Button */
.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.instagram-icon {
    color: #ffffff;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.instagram-icon:hover {
    color: #efcd97;
    transform: scale(1.1);
}

.btn-contact {
    background: #efcd97;
    color: #000000;
    border: 2px solid #efcd97;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 205, 151, 0.4);
}

/* HERO CONTENT */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: 0.3px;
    opacity: 0.9;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.btn-hero {
    background: #efcd97;
    color: #000000;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(239, 205, 151, 0.3);
    margin: 0 auto;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 205, 151, 0.5);
    background: #ffffff;
}

/* RATING BADGE */
.rating-badge {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stars {
    font-size: 1.2rem;
    color: #ffffff;
    letter-spacing: 3px;
    margin-bottom: 0.3rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.rating-text {
    font-size: 0.7rem;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .nav-menu {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-hero {
        padding: 0.7rem 2rem;
        font-size: 0.9rem;
    }
    
    .logo img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .stars {
        font-size: 1rem;
    }
    
    .rating-text {
        font-size: 0.6rem;
    }
}

/* ========================================
   FEATURES SECTION WITH PARALLAX
======================================== */
.features-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    background-image: url('images/Home/Iluminacion bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.features-grid {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    padding: 4rem 2rem;
    align-items: center;
}

.feature-item {
    color: #ffffff;
    text-align: left;
}

.feature-item h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.feature-item p {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 200px;
}

/* Vertical positioning */
.feature-top-left {
    align-self: end;
}

.feature-top-center {
    align-self: start;
}

.feature-top-right {
    align-self: start;
}

.feature-bottom-left {
    align-self: end;
}

/* Responsive for Features Section */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 3rem 3rem;
        gap: 2.5rem;
    }
    
    .feature-item {
        align-self: center !important;
    }
    
    .feature-item p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .features-section {
        height: auto;
        min-height: auto;
        background-attachment: scroll;
    }{
        align-self: center !important;
    }
    
    .feature-item h3 {
        font-size: 1.6rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
        max-width: 100%
    }
    
    .feature-item h3 {
        font-size: 1.6rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .features-grid {
        padding: 2rem 1.5rem;
        gap: 2.5rem;
    }
    
    .feature-item h3 {
        max-width: 100%;
        font-size: 1.5rem;
    }
    
    .feature-item p {
        font-size: 0.85rem;
    }
}

/* ========================================
   AFCI PRODUCT SECTION
======================================== */
.afci-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.afci-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.afci-content {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.afci-title {
    font-size: 3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.afci-description {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.btn-order {
    display: inline-block;
    background: #efcd97;
    color: #000000;
    padding: 0.9rem 2.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    border: 2px solid #efcd97;
    box-shadow: 0 4px 15px rgba(239, 205, 151, 0.3);
}

.btn-order:hover {
    background: #ffffff;
    border-color: #efcd97;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 205, 151, 0.4);
}

.afci-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.afci-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.afci-image img:hover {
    transform: scale(1.03);
}

/* Responsive AFCI Section */
@media (max-width: 1024px) {
    .afci-container {
        gap: 3rem;
    }
    
    .afci-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .afci-section {
        padding: 5rem 1.5rem;
    }
    
    .afci-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .afci-content {
        padding: 2rem;
    }
    
    .afci-title {
        font-size: 2.2rem;
    }
    
    .afci-description {
        font-size: 1rem;
    }
    
    .afci-image {
        order: -1;
        padding: 1rem;
    }
    
    .afci-image img {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .afci-section {
        padding: 4rem 1rem;
    }
    
    .afci-content {
        padding: 1.5rem;
    }
    
    .afci-title {
        font-size: 1.8rem;
    }
    
    .afci-description {
        font-size: 0.95rem;
    }
    
    .btn-order {
        padding: 0.8rem 2.2rem;
        font-size: 0.95rem;
    }
    
    .afci-image img {
        max-width: 280px;
    }
}

/* ========================================
   EXPERT SERVICES SECTION
======================================== */
.services-section {
    background: #1a1a1a;
    padding: 8rem 2rem;
    position: relative;
}

.services-header {
    max-width: 1200px;
    margin: 0 auto 5rem;
    text-align: center;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.services-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.services-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.services-image:hover img {
    transform: scale(1.05);
}

.services-content {
    color: #ffffff;
}

.services-title {
    font-size: 3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.services-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-item {
    border-left: 3px solid #efcd97;
    padding-left: 1.5rem;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #efcd97;
    margin-bottom: 0.8rem;
    letter-spacing: -0.3px;
}

.service-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-weight: 400;
}

/* Responsive Services Section */
@media (max-width: 1024px) {
    .services-header {
        margin-bottom: 4rem;
    }
    
    .services-container {
        gap: 3rem;
    }
    
    .services-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 5rem 1.5rem;
    }
    
    .services-header {
        margin-bottom: 3rem;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-title {
        font-size: 2.2rem;
    }
    
    .services-subtitle {
        font-size: 1rem;
    }
    
    .services-list {
        gap: 2rem;
    }
    
    .service-name {
        font-size: 1.3rem;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 4rem 1rem;
    }
    
    .services-title {
        font-size: 1.8rem;
    }
    
    .services-subtitle {
        font-size: 0.95rem;
    }
    
    .service-item {
        padding-left: 1rem;
        border-left-width: 2px;
    }
    
    .service-name {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
}

/* ========================================
   CUSTOMER REVIEWS SECTION
======================================== */
.reviews-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    padding: 8rem 2rem;
    position: relative;
}

.reviews-header {
    max-width: 900px;
    margin: 0 auto 5rem;
    text-align: center;
}

.reviews-title {
    font-size: 3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.reviews-subtitle {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
    font-weight: 400;
}

.reviews-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.review-card {
    background: rgba(239, 205, 151, 0.25);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(239, 205, 151, 0.4);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    background: rgba(239, 205, 151, 0.35);
}

.review-stars {
    font-size: 1.5rem;
    color: #1a1a1a;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.review-text {
    font-size: 1rem;
    color: #2a2a2a;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
    font-weight: 400;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(239, 205, 151, 0.6);
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex-grow: 1;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
}

.author-location {
    font-size: 0.95rem;
    color: #4a4a4a;
    font-weight: 400;
}

.reviews-cta {
    text-align: center;
    margin-top: 4rem;
}

.btn-review {
    display: inline-block;
    background: #efcd97;
    color: #000000;
    padding: 1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    border: 2px solid #efcd97;
    box-shadow: 0 4px 15px rgba(239, 205, 151, 0.3);
}

.btn-review:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Reviews Section */
@media (max-width: 1024px) {
    .reviews-container {
        gap: 2.5rem;
    }
    
    .reviews-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 5rem 1.5rem;
    }
    
    .reviews-header {
        margin-bottom: 3rem;
    }
    
    .reviews-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .reviews-title {
        font-size: 2.2rem;
    }
    
    .reviews-subtitle {
        font-size: 1rem;
    }
    
    .review-card {
        padding: 2rem;
    }
    
    .review-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 4rem 1rem;
    }
    
    .reviews-title {
        font-size: 1.8rem;
    }
    
    .reviews-subtitle {
        font-size: 0.95rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .review-stars {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }
    
    .review-text {
        font-size: 0.9rem;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .author-location {
        font-size: 0.85rem;
    }
    
    .btn-review {
        padding: 0.9rem 2.5rem;
        font-size: 0.95rem;
    }
}

/* ========================================
   OUR WORK IN ACTION - VIDEOS SECTION
======================================== */
.videos-section {
    background: #1a1a1a;
    padding: 8rem 2rem;
    position: relative;
}

.videos-header {
    max-width: 1000px;
    margin: 0 auto 5rem;
    text-align: center;
}

.videos-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #efcd97;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.videos-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-weight: 400;
}

.videos-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 4px solid #ffffff;
    transition: all 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
    border-color: #efcd97;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive Videos Section */
@media (max-width: 1024px) {
    .videos-container {
        gap: 2rem;
    }
    
    .videos-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .videos-section {
        padding: 5rem 1.5rem;
    }
    
    .videos-header {
        margin-bottom: 3rem;
    }
    
    .videos-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .videos-title {
        font-size: 2.5rem;
    }
    
    .videos-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .videos-section {
        padding: 4rem 1rem;
    }
    
    .videos-title {
        font-size: 2rem;
    }
    
    .videos-subtitle {
        font-size: 0.95rem;
    }
    
    .video-wrapper {
        border-width: 3px;
    }
}

/* ========================================
   ELECTRICAL INSIGHTS - CAROUSEL SECTION
======================================== */
.insights-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 8rem 2rem;
    position: relative;
}

.insights-header {
    max-width: 1000px;
    margin: 0 auto 5rem;
    text-align: center;
}

.insights-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.insights-subtitle {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
    font-weight: 400;
}

.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #ffffff;
}

.carousel-slide img {
    max-width: 100%;
    max-height: 600px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(239, 205, 151, 0.9);
    backdrop-filter: blur(10px);
    color: #000000;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: #efcd97;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d1d1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: #b8b8b8;
    transform: scale(1.2);
}

.dot.active {
    background: #efcd97;
    width: 32px;
    border-radius: 6px;
}

/* Responsive Insights Section */
@media (max-width: 1024px) {
    .insights-title {
        font-size: 3rem;
    }
    
    .carousel-slide img {
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    .insights-section {
        padding: 5rem 1.5rem;
    }
    
    .insights-header {
        margin-bottom: 3rem;
    }
    
    .insights-title {
        font-size: 2.5rem;
    }
    
    .insights-subtitle {
        font-size: 1rem;
    }
    
    .carousel-slide {
        padding: 1.5rem;
    }
    
    .carousel-slide img {
        max-height: 400px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .carousel-btn.prev {
        left: 10px;
    }
    
    .carousel-btn.next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .insights-section {
        padding: 4rem 1rem;
    }
    
    .insights-title {
        font-size: 2rem;
    }
    
    .insights-subtitle {
        font-size: 0.95rem;
    }
    
    .carousel-slide {
        padding: 1rem;
    }
    
    .carousel-slide img {
        max-height: 300px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        width: 24px;
    }
}

/* ========================================
   GALLERY SLIDESHOW SECTION
======================================== */
.gallery-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #000000;
}

.gallery-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.gallery-slide.active {
    opacity: 1;
    z-index: 2;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(239, 205, 151, 0.85);
    backdrop-filter: blur(10px);
    color: #000000;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.gallery-btn:hover {
    background: #efcd97;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
}

.gallery-btn.prev {
    left: 30px;
}

.gallery-btn.next {
    right: 30px;
}

.gallery-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 100;
}

.gallery-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.gallery-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
}

.gallery-dot.active {
    background: #efcd97;
    width: 40px;
    border-radius: 7px;
    border-color: #efcd97;
}

/* Responsive Gallery Section */
@media (max-width: 768px) {
    .gallery-section {
        min-height: 500px;
    }
    
    .gallery-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .gallery-btn.prev {
        left: 15px;
    }
    
    .gallery-btn.next {
        right: 15px;
    }
    
    .gallery-indicators {
        bottom: 30px;
        gap: 12px;
    }
    
    .gallery-dot {
        width: 12px;
        height: 12px;
    }
    
    .gallery-dot.active {
        width: 32px;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        min-height: 400px;
    }
    
    .gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    .gallery-btn.prev {
        left: 10px;
    }
    
    .gallery-btn.next {
        right: 10px;
    }
    
    .gallery-indicators {
        bottom: 20px;
        gap: 10px;
    }
    
    .gallery-dot {
        width: 10px;
        height: 10px;
    }
    
    .gallery-dot.active {
        width: 28px;
    }
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: #1a1a1a;
    padding: 4rem 2rem;
    color: #ffffff;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Left Column */
.footer-left {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.social-icon {
    color: #ffffff;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: #efcd97;
    transform: scale(1.15);
}

.footer-credit {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.credit-link {
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.credit-link:hover {
    color: #efcd97;
}

/* Center Column - Map */
.footer-center {
    height: 100%;
    min-height: 350px;
}

.footer-map {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Right Column */
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-label {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
}

.form-input {
    padding: 0.9rem 1.2rem;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
    outline: none;
    border-color: #efcd97;
    background: rgba(255, 255, 255, 0.15);
}

.form-submit {
    background: #efcd97;
    color: #000000;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 205, 151, 0.3);
}

.form-submit:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 205, 151, 0.4);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: block;
}

.contact-link:hover {
    color: #efcd97;
    padding-left: 5px;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-center {
        min-height: 300px;
    }
    
    .footer-map {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 1.5rem;
    }
    
    .footer-title {
        font-size: 1.5rem;
    }
    
    .footer-social {
        gap: 0.8rem;
        margin-bottom: 2rem;
    }
    
    .social-icon svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2.5rem 1rem;
    }
    
    .footer-container {
        gap: 2.5rem;
    }
    
    .footer-title {
        font-size: 1.3rem;
    }
    
    .footer-text {
        font-size: 0.95rem;
    }
    
    .footer-credit {
        font-size: 0.85rem;
    }
    
    .footer-center {
        min-height: 250px;
    }
    
    .footer-map {
        min-height: 250px;
    }
}

/* ========================================
   SERVICES PAGE
======================================== */
.services-page-header {
    background: linear-gradient(to bottom, 
        #1a1a1a 0%, 
        rgba(26, 26, 26, 0.9) 20%, 
        rgba(26, 26, 26, 0.75) 35%, 
        rgba(26, 26, 26, 0.6) 50%, 
        rgba(26, 26, 26, 0.4) 65%, 
        rgba(26, 26, 26, 0.2) 80%, 
        transparent 100%);
    padding-bottom: 0;
}

.services-page-header .navbar {
    background: transparent;
}

.services-page-content {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 6rem 2rem 8rem;
    min-height: 70vh;
}

.services-page-header-text {
    max-width: 900px;
    margin: 0 auto 5rem;
    text-align: center;
}

.services-page-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.services-page-subtitle {
    font-size: 1.2rem;
    color: #4a4a4a;
    line-height: 1.7;
    font-weight: 400;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(239, 205, 151, 0.6);
}

.service-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-img:hover {
    transform: scale(1.03);
}

.service-info {
    text-align: center;
}

.service-card-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.service-card-description {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.6;
    font-weight: 400;
}

/* Responsive Services Page */
@media (max-width: 1024px) {
    .services-page-title {
        font-size: 3rem;
    }
    
    .services-grid {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .services-page-content {
        padding: 4rem 1.5rem 6rem;
    }
    
    .services-page-header-text {
        margin-bottom: 3rem;
    }
    
    .services-page-title {
        font-size: 2.5rem;
    }
    
    .services-page-subtitle {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .service-img {
        height: 200px;
    }
    
    .service-card-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .services-page-content {
        padding: 3rem 1rem 5rem;
    }
    
    .services-page-title {
        font-size: 2rem;
    }
    
    .services-page-subtitle {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .service-images {
        gap: 1rem;
    }
    
    .service-img {
        height: 150px;
    }
    
    .service-card-title {
        font-size: 1.5rem;
    }
    
    .service-card-description {
        font-size: 0.95rem;
    }
}

/* ========================================
   ABOUT PAGE
======================================== */
.about-page-header {
    background: linear-gradient(to bottom, 
        #1a1a1a 0%, 
        rgba(26, 26, 26, 0.9) 20%, 
        rgba(26, 26, 26, 0.75) 35%, 
        rgba(26, 26, 26, 0.6) 50%, 
        rgba(26, 26, 26, 0.4) 65%, 
        rgba(26, 26, 26, 0.2) 80%, 
        transparent 100%);
    padding-bottom: 0;
}

.about-page-header .navbar {
    background: transparent;
}

.about-page-content {
    background-image: url('images/Home/Iluminacion bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.about-page-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 1;
}

.about-page-content > * {
    position: relative;
    z-index: 2;
}

/* Hero Section */
.about-hero {
    padding: 6rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero-content {
    max-width: 900px;
    text-align: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 4rem 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.about-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.about-description {
    font-size: 1.2rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: #efcd97;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: #4a4a4a;
    font-weight: 500;
}

/* Values Section */
.about-values {
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
}

.value-card {
    max-width: 800px;
    background: rgba(239, 205, 151, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(239, 205, 151, 0.5);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.value-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.value-text {
    font-size: 1.3rem;
    color: #efcd97;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.value-description {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

/* Services Section */
.about-services {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.section-intro {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.services-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-list-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.service-list-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(239, 205, 151, 0.6);
}

.service-list-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #efcd97;
    margin-bottom: 0.8rem;
}

.service-list-desc {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.services-footer {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* What Sets Us Apart */
.about-difference {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.difference-content {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.difference-text {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.difference-text:last-child {
    margin-bottom: 0;
}

.difference-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.difference-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.difference-image:hover img {
    transform: scale(1.05);
}

/* Responsive About Page */
@media (max-width: 1024px) {
    .about-title {
        font-size: 3rem;
    }
    
    .about-stats {
        gap: 3rem;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 4rem 1.5rem;
    }
    
    .about-hero-content {
        padding: 3rem 2rem;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-description {
        font-size: 1.1rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .value-card {
        padding: 2rem;
    }
    
    .value-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .services-list-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-difference {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .difference-image {
        order: -1;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 3rem 1rem;
    }
    
    .about-hero-content {
        padding: 2rem 1.5rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .value-title {
        font-size: 1.5rem;
    }
    
    .value-text {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .difference-content {
        padding: 2rem;
    }
}

/* ========================================
   CONTACT PAGE
======================================== */
.contact-page-header {
    background: linear-gradient(to bottom, 
        #1a1a1a 0%, 
        rgba(26, 26, 26, 0.9) 20%, 
        rgba(26, 26, 26, 0.75) 35%, 
        rgba(26, 26, 26, 0.6) 50%, 
        rgba(26, 26, 26, 0.4) 65%, 
        rgba(26, 26, 26, 0.2) 80%, 
        transparent 100%);
    padding-bottom: 0;
}

.contact-page-header .navbar {
    background: transparent;
}

.contact-page-content {
    background-image: url('images/Contact/flyer-18-dJo5PwVLElhJD22L.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 6rem 2rem 4rem;
    min-height: calc(100vh - 80px);
    position: relative;
}

.contact-page-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Column - Text */
.contact-left {
    padding-right: 2rem;
}

.contact-main-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-subtitle {
    font-size: 1.15rem;
    color: #ffffff;
    line-height: 1.7;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

/* Right Column - Form Card */
.contact-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 550px;
}

.contact-main-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.contact-form-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #efcd97;
    margin-bottom: 0.6rem;
    letter-spacing: 0.3px;
}

.contact-form-input,
.contact-form-textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(224, 224, 224, 0.6);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.contact-form-input:focus,
.contact-form-textarea:focus {
    outline: none;
    border-color: #efcd97;
    background: #ffffff;
    box-shadow: 0 3px 10px rgba(239, 205, 151, 0.2);
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
    color: #c0c0c0;
}

.contact-form-textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form-submit {
    background: #efcd97;
    color: #1a1a1a;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 1.1rem 3rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 205, 151, 0.4);
    margin-top: 0.5rem;
}

.contact-form-submit:hover {
    background: #e5c089;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 205, 151, 0.5);
}

.contact-form-submit:active {
    transform: translateY(0);
}

/* Form Success/Error Messages */
.form-message {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message.show {
    display: block;
}

/* Responsive Contact Page */
@media (max-width: 1024px) {
    .contact-container {
        gap: 3rem;
    }
    
    .contact-main-title {
        font-size: 3.5rem;
    }
    
    .contact-form-card {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-page-content {
        padding: 4rem 1.5rem 3rem;
        background-attachment: scroll;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-left {
        padding-right: 0;
        text-align: center;
    }
    
    .contact-main-title {
        font-size: 3rem;
    }
    
    .contact-subtitle {
        font-size: 1.05rem;
    }
    
    .contact-form-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-page-content {
        padding: 3rem 1rem 2rem;
    }
    
    .contact-main-title {
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .contact-main-form {
        gap: 1.3rem;
    }
    
    .contact-form-submit {
        width: 100%;
        padding: 1rem 2rem;
    }
}

/* ========================================
   REVIEW PAGE
======================================== */
.review-page {
    background-image: url('images/Home/Carrusel 3.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.review-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.review-container {
    max-width: 450px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.review-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.review-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.7rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.review-subtitle {
    font-size: 0.8rem;
    color: #ffffff;
    line-height: 1.5;
    max-width: 400px;
    margin: 0 auto;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.review-form {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(239, 205, 151, 0.5);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(239, 205, 151, 0.2);
}

.review-form-group {
    margin-bottom: 1rem;
}

.review-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #efcd97;
    margin-bottom: 0.4rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.review-input,
.review-textarea {
    width: 100%;
    padding: 0.6rem 0.85rem;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(239, 205, 151, 0.4);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.review-input:focus,
.review-textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.95);
    border-color: #efcd97;
    box-shadow: 0 0 0 2px rgba(239, 205, 151, 0.2);
}

.review-input::placeholder,
.review-textarea::placeholder {
    color: #a0a0a0;
    font-size: 0.75rem;
}

.review-textarea {
    resize: vertical;
    min-height: 80px;
}

/* Star Rating */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.15rem;
    margin-bottom: 0.5rem;
}

.star-rating input[type="radio"] {
    display: none;
}

.star-rating .star {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.star-rating .star:hover,
.star-rating .star:hover ~ .star {
    color: #efcd97;
    transform: scale(1.1);
}

.star-rating input[type="radio"]:checked ~ .star {
    color: #efcd97;
}

.rating-display {
    pointer-events: none;
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(239, 205, 151, 0.3);
    font-size: 0.75rem;
}

.review-submit {
    width: 100%;
    background: #efcd97;
    color: #1a1a1a;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 205, 151, 0.4);
    margin-top: 0.4rem;
}

.review-submit:hover {
    background: #e5c089;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 205, 151, 0.5);
}

.review-submit:active {
    transform: translateY(0);
}

.back-home {
    display: inline-block;
    margin-top: 1.2rem;
    color: #efcd97;
    font-size: 0.8rem;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.back-home:hover {
    opacity: 1;
    transform: translateX(-3px);
}

/* Responsive Review Page */
@media (max-width: 768px) {
    .review-page {
        padding: 2rem 1.2rem;
        background-attachment: scroll;
    }
    
    .review-title {
        font-size: 1.5rem;
    }
    
    .review-subtitle {
        font-size: 0.75rem;
    }
    
    .review-form {
        padding: 1.3rem;
    }
    
    .star-rating .star {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .review-page {
        padding: 1.5rem 0.8rem;
    }
    
    .review-title {
        font-size: 1.3rem;
    }
    
    .review-subtitle {
        font-size: 0.7rem;
    }
    
    .review-form {
        padding: 1.2rem;
    }
    
    .review-form-group {
        margin-bottom: 0.9rem;
    }
    
    .star-rating .star {
        font-size: 1.4rem;
    }
    
    .review-submit {
        padding: 0.7rem 1.3rem;
        font-size: 0.8rem;
    }
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Animation Classes */
.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.animate-fadeIn {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }
.delay-900 { animation-delay: 0.9s; }
.delay-1000 { animation-delay: 1s; }
