/* ===== VARIABLES - Bisbec Properties Color Scheme ===== */
:root {
    --primary-color: #c19a6b;
    --primary-dark: #a07d52;
    --secondary-color: #2c3e50;
    --text-dark: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-hover: 0 10px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --border-radius: 16px;
    --border-radius-sm: 8px;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    padding-top: 80px;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* ===== Navbar Styles (from index) ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    box-shadow: none;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: var(--bg-white);
    box-shadow: var(--shadow);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.logo img {
    height: 50px;
    width: auto;
    transition: all 0.4s ease;
}

.logo-scrolled {
    display: none;
}

.header.scrolled .logo-default {
    display: none;
}

.header.scrolled .logo-scrolled {
    display: block;
}

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

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 300;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
}

.header.scrolled .nav-menu a {
    color: var(--text-dark);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    border-radius: var(--border-radius-sm);
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    font-size: 14px;
    color: var(--text-dark) !important;
}

.dropdown-menu a::after {
    display: none;
}

.cta-button {
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
}

.cta-button:hover {
    background: transparent;
    color: var(--primary-color);
}

.header.scrolled .cta-button {
    background: var(--primary-color);
    color: white;
}

.header.scrolled .cta-button:hover {
    background: transparent;
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 2px 0;
    transition: var(--transition);
}

.header.scrolled .hamburger span {
    background: var(--text-dark);
}

.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, -7px);
}

/* ===== Animation Classes ===== */
.animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.animate-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.animate-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.animate-bottom {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate-bottom.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-fade-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Delay classes */
[data-delay="0.1s"].animate-in { transition-delay: 0.1s; }
[data-delay="0.2s"].animate-in { transition-delay: 0.2s; }
[data-delay="0.3s"].animate-in { transition-delay: 0.3s; }
[data-delay="0.4s"].animate-in { transition-delay: 0.4s; }
[data-delay="0.5s"].animate-in { transition-delay: 0.5s; }

/* ===== About Hero Section ===== */
.about-hero {
    height: 550px;
    position: relative;
    overflow: hidden;
    margin-top: -80px;
    background-image: url('../Imgs/Gomoa/1.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-wipe-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.1) 75%,
        transparent 100%
    );
    z-index: 3;
    animation: heroWipe 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroWipe {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
    max-width: 100%;
}

.about-hero .hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

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

/* ===== Story Section (with rings) ===== */
.story-section {
    padding: 100px 20px;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.story-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.story-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    color: var(--text-dark);
}

.story-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.story-message {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.story-description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.story-images {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-image {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-color);
    position: relative;
    z-index: 2;
}

.floating-image {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    bottom: 50px;
    right: 50px;
    z-index: 3;
    animation: orbit 10s linear infinite;
}

.ring {
    position: absolute;
    border: 2px solid rgba(193, 154, 107, 0.3);
    border-radius: 50%;
    animation: growShrink 3s ease-in-out infinite;
}

.ring-1 {
    width: 400px;
    height: 400px;
}

.ring-2 {
    width: 450px;
    height: 450px;
    animation-delay: 1s;
}

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

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(50px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(50px) rotate(-360deg); }
}

/* ===== Mission & Vision Section ===== */
.mission-vision-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
    width: 100%;
}

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

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

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.mv-container {
    display: flex;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.mv-item {
    flex: 1;
    background: var(--bg-white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(193, 154, 107, 0.1);
}

.mv-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 20px rgba(193, 154, 107, 0.3);
}

.mv-item h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.mv-item p {
    color: var(--text-light);
    line-height: 1.8;
    text-align: left;
    font-size: 1.1rem;
}

/* ===== Core Values Section ===== */
.values-section {
    padding: 100px 20px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    width: 100%;
}

.values-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.values-section .container {
    position: relative;
    z-index: 2;
}

.section-header.light h2,
.section-header.light p {
    color: white;
}

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

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

.value-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.value-card h4 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 15px;
}

.value-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* ===== Visionary Section ===== */
.visionary-section {
    padding: 100px 20px;
    background: var(--bg-white);
    width: 100%;
}

.visionary-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.visionary-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 700px;
}

.visionary-image {
    width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(193, 154, 107, 0.3);
    background: var(--bg-light);
}

.visionary-ring {
    position: absolute;
    width: 530px;
    height: 630px;
    border: 3px solid rgba(193, 154, 107, 0.3);
    border-radius: 40px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 15s linear infinite;
    z-index: 1;
}

.visionary-ring-2 {
    position: absolute;
    width: 560px;
    height: 660px;
    border: 3px dashed rgba(193, 154, 107, 0.2);
    border-radius: 50px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotateReverse 20s linear infinite;
    z-index: 1;
}

@keyframes rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotateReverse {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(-360deg); }
}

.visionary-tag {
    display: inline-block;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.visionary-text h2 {
    font-size: 2.0rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 800;
}

.visionary-text h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.visionary-education {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.visionary-education i {
    color: var(--primary-color);
}

.visionary-bio p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.visionary-actions {
    display: flex;
    gap: 15px;
}

.visionary-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.visionary-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* ===== Counter Section ===== */
.about-counter-section {
    padding: 100px 20px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    width: 100%;
}

.counter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.about-counter-section .container {
    position: relative;
    z-index: 2;
}

.about-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.about-counter-item {
    text-align: center;
    color: white;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.about-counter-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.counter-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 10px;
}

.about-counter-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== Partners Section - Carousel Slider ===== */
.about-partners-section {
    padding: 100px 20px;
    background: var(--bg-white);
    width: 100%;
    overflow: hidden;
}

.partners-carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

.partners-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.partner-slide {
    flex: 0 0 calc(20% - 24px);
    min-width: 150px;
}

.about-partner-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--bg-white);
    box-shadow: 0 10px 30px rgba(193, 154, 107, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s ease;
    border: 2px solid rgba(193, 154, 107, 0.1);
    margin: 0 auto;
}

.about-partner-logo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(193, 154, 107, 0.3);
    border-color: var(--primary-color);
}

.about-partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.partners-carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.partner-carousel-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.partner-carousel-btn:hover {
    background: var(--primary-color);
    color: white;
}

.partner-carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    border-color: var(--text-lighter);
    color: var(--text-lighter);
}

.partner-carousel-btn:disabled:hover {
    background: var(--bg-white);
    color: var(--text-lighter);
}

.partner-carousel-dots {
    display: flex;
    gap: 10px;
}

.partner-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-lighter);
    cursor: pointer;
    transition: all 0.3s ease;
}

.partner-carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* ===== CTA Section ===== */
.about-cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    text-align: center;
    color: white;
    width: 100%;
}

.about-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-cta-section p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cta-btn-primary {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-btn-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-5px);
}

/* ===== Footer (from index) ===== */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: none;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-col ul li i {
    margin-right: 10px;
    color: var(--primary-color);
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    text-transform: none;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
}

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

/* ===== WhatsApp Floating Icon ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.whatsapp-icon-wrapper i {
    color: white;
    font-size: 35px;
    transition: all 0.3s ease;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.whatsapp-icon-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: whatsapp-glow 2s infinite ease-in-out;
    z-index: -1;
}

@keyframes whatsapp-glow {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 0; }
    100% { transform: scale(1); opacity: 0.5; }
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: white;
    color: #128C7E;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #25D366;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid white;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 85px;
}

.whatsapp-float:hover .whatsapp-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

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

.modal.active {
    display: block;
}

.modal-content {
    position: relative;
    background: var(--bg-white);
    width: 90%;
    max-width: 800px;
    margin: 50px auto;
    border-radius: var(--border-radius);
    padding: 40px;
    animation: modalSlideIn 0.3s ease;
}

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

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
    z-index: 10;
}

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

.modal-body {
    max-height: 60vh;
    overflow-y: auto;
    padding: 20px 0;
}

.modal-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Booking Form */
.booking-form {
    padding: 20px 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    text-transform: none;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(193, 154, 107, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.other-lands-note {
    background: rgba(193, 154, 107, 0.1);
    padding: 15px;
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    color: var(--text-dark);
    border-left: 3px solid var(--primary-color);
    margin-top: 5px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    position: relative;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--primary-dark);
}

.btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-loader i {
    font-size: 18px;
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .partner-slide {
        flex: 0 0 calc(33.333% - 20px);
    }
    
    .about-counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .story-container,
    .visionary-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-images {
        order: -1;
    }
    
    .visionary-image-wrapper {
        height: 600px;
        max-width: 550px;
    }
    
    .visionary-image {
        width: 450px;
        height: 450px;
    }
    
    .visionary-ring {
        width: 480px;
        height: 580px;
    }
    
    .visionary-ring-2 {
        width: 510px;
        height: 610px;
    }
    
    .cta-buttons {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }
    
    .about-hero {
        height: 500px;
    }
    
    .about-hero .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .mv-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .mv-item {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px;
        transition: var(--transition);
        box-shadow: var(--shadow);
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .nav-menu a {
        font-size: 18px;
        color: var(--text-dark);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .cta-button {
        display: none;
    }
    
    .about-hero {
        height: 400px;
    }
    
    .about-hero .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .section-header h2,
    .story-title,
    .visionary-text h2 {
        font-size: 1.8rem;
    }
    
    .main-image {
        width: 280px;
        height: 280px;
    }
    
    .floating-image {
        width: 100px;
        height: 100px;
        bottom: 30px;
        right: 30px;
    }
    
    .ring-1 {
        width: 330px;
        height: 330px;
    }
    
    .ring-2 {
        width: 380px;
        height: 380px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .about-counter-item {
        padding: 25px 15px;
    }
    
    .about-counter-number {
        font-size: 2rem;
    }
    
    .about-counter-label {
        font-size: 0.9rem;
    }
    
    .partner-slide {
        flex: 0 0 calc(50% - 15px);
    }
    
    .visionary-image-wrapper {
        height: 500px;
        max-width: 450px;
    }
    
    .visionary-image {
        width: 380px;
        height: 380px;
    }
    
    .visionary-ring {
        width: 410px;
        height: 510px;
    }
    
    .visionary-ring-2 {
        width: 440px;
        height: 540px;
    }
    
    .mv-item {
        padding: 40px 30px;
    }
    
    .mv-item h3 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: row;
        gap: 10px;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        height: 350px;
    }
    
    .about-hero .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2,
    .story-title,
    .visionary-text h2 {
        font-size: 1.5rem;
    }
    
    .main-image {
        width: 240px;
        height: 240px;
    }
    
    .floating-image {
        width: 80px;
        height: 80px;
        bottom: 20px;
        right: 20px;
    }
    
    .ring-1 {
        width: 280px;
        height: 280px;
    }
    
    .ring-2 {
        width: 320px;
        height: 320px;
    }
    
    .about-counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .about-counter-item {
        padding: 20px 10px;
    }
    
    .about-counter-number {
        font-size: 1.8rem;
    }
    
    .about-counter-label {
        font-size: 0.8rem;
    }
    
    .counter-icon {
        font-size: 2.5rem;
    }
    
    .visionary-image-wrapper {
        height: 450px;
        max-width: 350px;
    }
    
    .visionary-image {
        width: 320px;
        height: 320px;
    }
    
    .visionary-ring {
        width: 350px;
        height: 450px;
    }
    
    .visionary-ring-2 {
        width: 380px;
        height: 480px;
    }
    
    .visionary-actions {
        flex-direction: column;
    }
    
    .visionary-whatsapp {
        width: 100%;
        justify-content: center;
    }
    
    .mv-item {
        padding: 30px 20px;
    }
    
    .mv-item h3 {
        font-size: 1.5rem;
    }
    
    .mv-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: row;
        gap: 8px;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .partner-slide {
        flex: 0 0 calc(50% - 10px);
    }
    
    .about-partner-logo {
        width: 120px;
        height: 120px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .whatsapp-icon-wrapper i {
        font-size: 30px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}