/* css/consultation.css */

/* ===== CSS Variables & Reset ===== */
:root {
    --primary-dark: #0a0e2a;
    --primary-blue: #1a237e;
    --secondary-gold: #d4af37;
    --accent-purple: #6a1b9a;
    --accent-teal: #00695c;
    --accent-ruby: #e0115f;
    --accent-emerald: #046307;
    --light-bg: #f8f5f0;
    --white: #ffffff;
    --text-light: #e0e0e0;
    --text-dark: #333333;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.2);
    --shadow-heavy: rgba(0, 0, 0, 0.3);
    --gradient-dark: linear-gradient(135deg, #0a0e2a 0%, #1a237e 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    --gradient-purple: linear-gradient(135deg, #6a1b9a 0%, #9c27b0 100%);
    --gradient-cosmic: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header & Navigation ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 14, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-medium);
}

header.scrolled {
    padding: 10px 0;
    background: rgba(10, 14, 42, 0.98);
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo1 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary-gold);
    transition: var(--transition-fast);
    animation: gentleFloat 6s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(2deg); }
}

.logo1:hover {
    animation-play-state: paused;
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 20px var(--secondary-gold);
}

.brand-info h1 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 1px;
}

.tagline {
    font-size: 0.75rem;
    color: var(--secondary-gold);
    letter-spacing: 2px;
    font-weight: 500;
}

/* Desktop Navigation */
.nav {
    display: flex;
    list-style: none;
    gap: 30px;
}

@media (max-width: 992px) {
    .nav {
        display: none;
    }
}

.nav li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
    transition: var(--transition-fast);
}

.nav li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-gold);
    transition: var(--transition-fast);
}

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

.nav li a:hover:after {
    width: 100%;
}

/* Hamburger Menu Button */
.hamburger, .open-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    font-size: 1.8rem;
    z-index: 1001;
    transition: var(--transition-fast);
}

@media (max-width: 992px) {
    .hamburger, .open-menu-btn {
        display: block;
    }
    
    .hamburger {
        width: 30px;
        height: 25px;
        position: relative;
    }
    
    .hamburger span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: var(--white);
        border-radius: 3px;
        transition: var(--transition-fast);
    }
    
    .hamburger span:nth-child(1) {
        top: 0;
    }
    
    .hamburger span:nth-child(2) {
        top: 11px;
    }
    
    .hamburger span:nth-child(3) {
        top: 22px;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 11px;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg);
        top: 11px;
    }
}

.open-menu-btn:hover {
    color: var(--secondary-gold);
    transform: rotate(90deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: var(--gradient-dark);
    z-index: 1000;
    padding: 100px 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition-medium);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition-fast);
    transform: translateX(50px);
    opacity: 0;
    animation: slideInRight 0.5s forwards;
}

.mobile-menu a:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile-menu a:nth-child(2) {
    animation-delay: 0.2s;
}

.mobile-menu a:nth-child(3) {
    animation-delay: 0.3s;
}

.mobile-menu a:nth-child(4) {
    animation-delay: 0.4s;
}

.mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.mobile-menu a i {
    font-size: 1.5rem;
    color: var(--secondary-gold);
}

/* Menu Card */
.menu-card {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 90%;
    max-width: 500px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-medium);
    padding: 30px;
}

.menu-card.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.close-menu-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary-dark);
    cursor: pointer;
    transition: var(--transition-fast);
}

.close-menu-btn:hover {
    color: var(--accent-purple);
    transform: rotate(90deg);
}

.menu-card-header h3 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.menu-card-header h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
}

.menu-card-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.menu-card-links a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 500;
    transition: var(--transition-fast);
}

.menu-card-links a:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateX(10px);
}

.menu-card-links a i {
    font-size: 1.5rem;
    color: var(--secondary-gold);
    margin-right: 15px;
    width: 30px;
}

.menu-card-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.menu-card-footer p {
    color: var(--text-dark);
    font-size: 0.9rem;
}

.menu-card-footer a {
    color: var(--accent-purple);
    text-decoration: none;
    font-weight: 600;
}

/* ===== Page Hero ===== */
.page-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: var(--gradient-cosmic);
    overflow: hidden;
    padding: 150px 0 60px;
    margin-top: 80px;
}

.page-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    animation: fadeInUp 1s ease-out;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
    background: linear-gradient(to right, #fff 30%, var(--secondary-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
    line-height: 1.8;
}

.page-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(118, 75, 162, 0.15) 0%, transparent 50%);
    animation: cosmicPulse 8s infinite alternate;
}

@keyframes cosmicPulse {
    0% { 
        opacity: 0.3;
        transform: scale(1);
    }
    100% { 
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* Add constellation effect */
.page-hero:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.3) 50%, transparent 100%),
        radial-gradient(2px 2px at 40% 70%, rgba(255,255,255,0.3) 50%, transparent 100%),
        radial-gradient(3px 3px at 60% 20%, rgba(212,175,55,0.5) 50%, transparent 100%),
        radial-gradient(2px 2px at 80% 50%, rgba(255,255,255,0.3) 50%, transparent 100%),
        radial-gradient(3px 3px at 30% 80%, rgba(212,175,55,0.5) 50%, transparent 100%);
    background-size: 300px 300px;
    animation: twinkle 4s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-hero p {
        font-size: 1.1rem;
    }
}
.page-hero {
    padding: 80px 20px;
}

.page-hero .container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
}

.hero-text h1 {
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1f2933;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #d6dadf;
}

.hero-image img {
    width: 100%;
    max-width: 460px;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image img {
        margin: 0 auto;
    }

    .hero-text h1 {
        font-size: 36px;
    }
}

/* ===== Guide Navigation ===== */
.guide-nav {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 80px;
    z-index: 100;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.guide-nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.guide-nav-link {
    padding: 14px 28px;
    background: transparent;
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.guide-nav-link:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--gradient-gold);
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.guide-nav-link:hover {
    color: var(--primary-dark);
    border-color: var(--secondary-gold);
}

.guide-nav-link:hover:before {
    width: 300px;
    height: 300px;
}

.guide-nav-link.active {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .guide-nav {
        top: 70px;
    }
    
    .guide-nav-links {
        gap: 10px;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 10px 0;
        -webkit-overflow-scrolling: touch;
    }
    
    .guide-nav-link {
        padding: 12px 20px;
        font-size: 0.9rem;
        white-space: nowrap;
    }
}

/* ===== Consultation Types ===== */
.section {
    margin-bottom: 100px;
    animation: fadeIn 0.8s ease-out;
}

.section h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

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

.consultation-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid transparent;
}

.consultation-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-gold);
}

.consultation-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.consultation-card:hover:before {
    transform: scaleX(1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(102, 126, 234, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--secondary-gold);
    transition: all 0.5s ease;
}

.consultation-card:hover .card-icon {
    background: var(--gradient-gold);
    color: var(--white);
    transform: rotateY(180deg) scale(1.1);
}

.card-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: all 0.5s ease;
}

.consultation-card:hover .card-icon img {
    filter: brightness(0) invert(1);
    transform: rotate(-180deg);
}

.consultation-card h3 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-size: 1.6rem;
    margin-bottom: 20px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.consultation-card p {
    color: var(--text-dark);
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.card-features span {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.consultation-card:hover .card-features span {
    background: var(--gradient-gold);
    color: var(--white);
    transform: translateY(-3px);
}

/* Special image styling */
.card-icons-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    align-items: center;
    justify-items: center;
    padding: 20px 0;
}

.card-icon1 {
    width: 100%;
    width: 560px;
    background: #131663;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
   padding: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-icon1:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
}

.card-icon1 img {
    width: 100%;
    height: 680px;
    object-fit: contain;
    border-radius: 35px;
    display: block;
}


@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }
    
    .section h2 {
        font-size: 2.2rem;
    }
    
    .consultation-card {
       
    }
}

/* ===== Expert Section ===== */
.expert-section {
    padding: 100px 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.expert-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.05"/></svg>') repeat;
    background-size: 50px;
    animation: twinkleStars 20s infinite linear;
}

@keyframes twinkleStars {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.expert-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .expert-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

.expert-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-10deg);
    transition: all 0.8s ease;
}

.expert-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.03);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.expert-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.8s ease;
}

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

.expert-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: pulseBadge 2s infinite;
}

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

.expert-badge i {
    font-size: 1.2rem;
}

.expert-info h2 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.expert-info h3 {
    color: var(--secondary-gold);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.expert-credentials {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.expert-description {
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.expert-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 576px) {
    .expert-stats {
        grid-template-columns: 1fr;
    }
}

.stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: var(--secondary-gold);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-gold);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===== Process Section ===== */
.process-section {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
}

.process-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,20 L60,40 L80,45 L65,60 L70,80 L50,70 L30,80 L35,60 L20,45 L40,40 Z" fill="%23d4af37" opacity="0.03"/></svg>') repeat;
    background-size: 150px;
    animation: floatPattern 30s infinite linear;
}

.process-section h2 {
    color: var(--primary-dark);
    text-align: center;
    font-size: 3rem;
    margin-bottom: 80px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

.process-step {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.5s ease;
    border: 2px solid transparent;
}

.process-step:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary-gold);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: all 0.5s ease;
}

.process-step:hover .step-number {
    transform: translateX(-50%) scale(1.2) rotate(15deg);
}

.process-step h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 20px;
    margin-top: 20px;
}

.process-step p {
    color: var(--text-dark);
    opacity: 0.8;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===== Testimonials ===== */
.testimonials-section {
    padding: 100px 0;
    background: var(--gradient-purple);
    position: relative;
    overflow: hidden;
}

.testimonials-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,50 Q50,20 80,50 T140,50" stroke="white" stroke-width="2" fill="none" opacity="0.05"/></svg>') repeat;
    background-size: 200px;
    animation: waveMove 20s infinite linear;
}

@keyframes waveMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-200px); }
}

.testimonials-section h2 {
    color: var(--white);
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    padding: 40px 35px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 120px;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    border-color: var(--secondary-gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.testimonial-rating {
    color: var(--secondary-gold);
    font-size: 1.2rem;
    margin-bottom: 25px;
    display: flex;
    gap: 5px;
}

.testimonial-card p {
    color: var(--white);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.testimonial-author strong {
    color: var(--white);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-light);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* ===== Products Gallery ===== */
.products-gallery-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.gallery-title {
    color: var(--primary-dark);
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
}

.gallery-subtitle {
    text-align: center;
    color: var(--text-dark);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
    opacity: 0.8;
}

.products-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-item {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.product-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-gold);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s ease;
}

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

.product-info {
    padding: 25px;
}

.product-title {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-category {
    color: var(--text-dark);
    opacity: 0.7;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.product-price {
    color: var(--secondary-gold);
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

/* ===== Booking CTA ===== */
.booking-cta {
    padding: 100px 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.booking-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
    animation: cosmicOrbit 20s infinite linear;
}

@keyframes cosmicOrbit {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    margin-bottom: 25px;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
    background: linear-gradient(to right, var(--secondary-gold), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.cta-button:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
    border-color: var(--white);
}

.cta-button:hover:before {
    left: 100%;
}

.cta-button.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.3);
}

.cta-button.whatsapp:hover {
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.4);
}

.cta-button i {
    font-size: 1.3rem;
}

.consultation-hours {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 40px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.consultation-hours i {
    color: var(--secondary-gold);
}

/* ===== Footer ===== */
footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 70px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-about p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.8;
}

.footer-links h3, .footer-contact h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3:after, .footer-contact h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-gold);
}

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

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

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    opacity: 0.8;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary-gold);
    opacity: 1;
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-contact-item i {
    color: var(--secondary-gold);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

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

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

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

/* ===== Scroll Animations ===== */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Loading Animation ===== */
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.spinner {
    width: 70px;
    height: 70px;
    border: 5px solid rgba(212, 175, 55, 0.2);
    border-top: 5px solid var(--secondary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    color: var(--secondary-gold);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .guide-nav-links {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
}