/* ========================================
   RINGLAB MEDIA - MAIN STYLESHEET
   ======================================== */

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
    /* Brand Colors */
    --color-orange: rgb(255, 102, 0);
    --color-green: rgb(7, 153, 100);
    --color-teal: #4a7c59;
    --color-accent: #325C3C;

    /* Supporting Colors */
    --color-white: #FFFFFF;
    --color-dark: #1a1a1a;
    --color-gray: #6C757D;
    --color-light-gray: #F8F9FA;
    --color-border: #e5e5e5;
    --color-bg: #fafafa;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, var(--color-orange) 0%, var(--color-green) 100%);
    --gradient-stats: linear-gradient(135deg, rgba(255, 102, 0, 0.9) 0%, rgba(7, 153, 100, 0.9) 100%);
    --gradient-card: linear-gradient(to right, rgba(255, 102, 0, 0.05) 0%, rgba(7, 153, 100, 0.05) 100%);
    --gradient-featured: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(7, 153, 100, 0.1) 100%);

    /* Typography */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Modern Design System */
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --border-radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 16px 32px rgba(0, 0, 0, 0.15);
}

/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgb(255, 255, 255);
    box-shadow: var(--shadow);
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgb(255, 255, 255);
    box-shadow: var(--shadow);
    padding: 0.75rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
    transition: var(--transition);
}

.navbar.scrolled .logo img {
    height: 55px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 600;
    color: var(--color-dark);
    transition: var(--transition);
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--color-dark);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    gap: 1rem;
    margin-left: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--color-dark);
    border-radius: 3px;
    transition: var(--transition);
}

.navbar.scrolled .hamburger span {
    background: var(--color-dark);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    font-size: 0.95rem;
}

.btn-large {
    padding: 1.125rem 2.25rem;
    font-size: 1.05rem;
    border-radius: var(--border-radius-lg);
}

.btn-orange {
    background: var(--color-orange);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(255, 102, 0, 0.3);
}

.btn-orange:hover {
    background: #ff8533;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 102, 0, 0.4);
}

.btn-green {
    background: var(--color-green);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(7, 153, 100, 0.3);
}

.btn-green:hover {
    background: #09a76f;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(7, 153, 100, 0.4);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    color: var(--color-white);
    padding-top: 180px;
    padding-bottom: 60px;
}

/* Desktop responsive padding */
@media (min-width: 2400px) {
    .hero {
        padding-top: 200px;
    }
}

@media (min-width: 1920px) and (max-width: 2399px) {
    .hero {
        padding-top: 190px;
    }
}

@media (min-width: 1440px) and (max-width: 1919px) {
    .hero {
        padding-top: 180px;
    }
}

@media (min-width: 1280px) and (max-width: 1439px) {
    .hero {
        padding-top: 180px;
    }
}

@media (min-width: 1025px) and (max-width: 1279px) {
    .hero {
        padding-top: 180px;
    }
}

/* Background Layers */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        var(--color-orange) 0%,
        #ff8533 25%,
        var(--color-green) 50%,
        #09a76f 75%,
        var(--color-orange) 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-image.jpg') center/cover;
    opacity: 0.15;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 3;
}

/* Floating Geometric Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(2px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation: float 25s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation: float 20s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    left: 15%;
    animation: float 18s ease-in-out infinite;
    animation-delay: 2s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    top: 40%;
    right: 5%;
    animation: float 22s ease-in-out infinite;
    animation-delay: 1s;
}

.shape-5 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 30%;
    animation: float 15s ease-in-out infinite reverse;
    animation-delay: 3s;
}

.shape-6 {
    width: 180px;
    height: 180px;
    bottom: 25%;
    right: 25%;
    animation: float 19s ease-in-out infinite;
    animation-delay: 4s;
}

/* Floating Travel Icons */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    font-size: 3rem;
    opacity: 0.3;
    animation: floatIcon 20s ease-in-out infinite;
}

.icon-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 25%;
    right: 15%;
    animation-delay: 2s;
}

.icon-3 {
    bottom: 20%;
    left: 8%;
    animation-delay: 4s;
}

.icon-4 {
    top: 50%;
    right: 8%;
    animation-delay: 6s;
}

.icon-5 {
    bottom: 35%;
    right: 20%;
    animation-delay: 8s;
}

/* Hero Content */
.hero .container {
    position: relative;
    z-index: 4;
    text-align: center;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Hero Title */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.title-line-1 {
    display: block;
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line-2 {
    display: block;
    background: linear-gradient(90deg, var(--color-orange) 0%, var(--color-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(2.2rem, 5.5vw, 4.2rem);
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.8;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle .highlight-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
}

.hero-subtitle .highlight-item {
    display: block;
    font-weight: 900;
    font-size: 3.125rem;
    color: var(--color-white);
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    min-width: 120px;
    transition: var(--transition);
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-glow {
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    overflow: visible;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-radius: var(--border-radius);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.btn-glow:hover::after {
    opacity: 1;
}

.btn-icon {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.btn-text {
    font-weight: 600;
}

.btn-arrow {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.btn:hover .btn-arrow {
    transform: translateX(5px);
}

.scroll-indicator {
    display: none;
}

.scroll-indicator span {
    display: none;
}

.scroll-arrow {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--color-dark);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-gray);
    line-height: 1.7;
    font-weight: 400;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    position: relative;
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: left;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-card);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-orange);
}

.service-icon {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(7, 153, 100, 0.1));
    border-radius: var(--border-radius);
    color: var(--color-orange);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.service-description {
    position: relative;
    z-index: 1;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.feature-bullet {
    font-size: 0.9rem;
    color: var(--color-gray);
    display: flex;
    align-items: center;
}

/* Industries Subsection */
.industries {
    text-align: center;
    padding: 2rem 0;
}

.industries-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.industries-list {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.industry-tag {
    padding: 0.5rem 1.5rem;
    background: var(--color-light-gray);
    color: var(--color-gray);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.industry-tag.primary {
    background: var(--color-orange);
    color: var(--color-white);
    font-size: 1rem;
}

.industry-tag.secondary {
    background: var(--color-green);
    color: var(--color-white);
    font-size: 1rem;
}

.industry-tag:hover {
    background: var(--color-orange);
    color: var(--color-white);
}

/* ========================================
   STATISTICS SECTION
   ======================================== */
.statistics {
    position: relative;
    padding: var(--spacing-xl) 0;
    background: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1600&auto=format&fit=crop') center/cover;
    color: var(--color-white);
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-stats);
    z-index: 1;
}

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

.statistics .section-title {
    color: var(--color-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-number::after {
    content: '+';
}

.stat-item:nth-child(3) .stat-number::after {
    content: '/7';
    font-size: 2rem;
}

.stat-label {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 300;
}

/* ========================================
   OFFERS SECTION
   ======================================== */
.offers {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.offer-card {
    background: var(--color-white);
    border: 2px solid #e5e5e5;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-orange), var(--color-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.offer-card:hover {
    border-color: var(--color-orange);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

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

.offer-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e5e5;
}

.offer-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0 0 0.75rem 0;
}

.offer-region {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1), rgba(7, 153, 100, 0.1));
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-green);
}

.offer-description {
    margin-bottom: 1.5rem;
    color: var(--color-text);
    line-height: 1.6;
}

.offer-description p {
    margin: 0 0 0.75rem 0;
}

.offer-description p:last-child {
    margin-bottom: 0;
}

.offer-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.offer-detail-item {
    text-align: center;
    padding: 1rem;
    background: var(--color-light-gray);
    border-radius: 12px;
}

.offer-detail-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-gray);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.offer-detail-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
}

.offer-payout {
    color: var(--color-green);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    padding: var(--spacing-xl) 0;
    background: var(--color-light-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.1rem;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    margin-top: 2rem;
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 30px;
    height: 30px;
    background: var(--color-green);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-text h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--color-dark);
}

.feature-text p {
    color: var(--color-gray);
    font-size: 0.95rem;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   DUAL CTA SECTION
   ======================================== */
.dual-cta {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.cta-card {
    background: var(--color-white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.cta-advertiser {
    border-top: 5px solid var(--color-orange);
}

.cta-publisher {
    border-top: 5px solid var(--color-green);
}

.cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    color: var(--color-orange);
}

.cta-publisher .cta-icon {
    color: var(--color-green);
}

.cta-icon svg {
    width: 100%;
    height: 100%;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.cta-description {
    font-size: 1.2rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.cta-benefits {
    text-align: left;
    margin-bottom: 2rem;
}

.cta-benefits li {
    padding: 0.75rem 0;
    color: var(--color-gray);
    font-size: 1.05rem;
    border-bottom: 1px solid var(--color-border);
}

.cta-benefits li:last-child {
    border-bottom: none;
}

/* ========================================
   CORE VALUES SECTION
   ======================================== */
.core-values {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--color-white);
    border-radius: 24px;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.value-description {
    color: var(--color-gray);
    line-height: 1.7;
}

/* ========================================
   TEAM SECTION
   ======================================== */
.team {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.team-member {
    background: var(--color-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.member-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1.5rem 0 0.5rem;
    color: var(--color-dark);
    padding: 0 1.5rem;
}

.member-role {
    color: var(--color-orange);
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0 1.5rem;
}

.member-bio {
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding: 0 1.5rem;
}

.member-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    background: var(--color-bg);
}

.contact-link {
    padding: 0.75rem 1rem;
    background: transparent;
    border: 2px solid var(--color-dark);
    border-radius: var(--border-radius);
    color: var(--color-dark);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.contact-link:hover {
    background: var(--color-orange);
    color: var(--color-white);
    border-color: var(--color-orange);
}

.btn-book {
    background: var(--color-green);
    color: var(--color-white);
    border-color: var(--color-green);
    font-weight: 600;
}

.btn-book:hover {
    background: #09a76f;
}

/* ========================================
   EVENTS SECTION
   ======================================== */
.events {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg);
}

/* Next Event Header */
.next-event-header {
    text-align: center;
    margin-bottom: 3rem;
}

.next-event-header .section-title {
    margin-bottom: 0;
}

/* Next Event Card (Hero Style) */
.next-event-card {
    position: relative;
    min-height: 400px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 4rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: row;
    background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-green) 100%);
}

.next-event-background {
    display: none;
}

.next-event-image-container {
    flex: 0 0 40%;
    max-width: 40%;
    overflow: hidden;
    position: relative;
    order: 2;
}

.next-event-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.next-event-content {
    position: relative;
    flex: 1;
    padding: 3rem;
    color: var(--color-white);
    order: 1;
}

.next-event-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.next-event-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.next-event-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    flex-wrap: wrap;
}

.next-event-date,
.next-event-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.next-event-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Upcoming Events Header */
.upcoming-events-header {
    text-align: center;
    margin-bottom: 3rem;
}

.upcoming-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.upcoming-subtitle {
    color: var(--color-gray);
    font-size: 1.1rem;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.event-card {
    background: var(--color-white);
    border-radius: 24px;
    border: none;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.event-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

.event-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, var(--color-orange), var(--color-green));
    color: var(--color-white);
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.event-month {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-day {
    font-size: 1.5rem;
    font-weight: 700;
}

.event-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-dark);
}

.event-location {
    color: var(--color-gray);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.event-description {
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.event-link {
    color: var(--color-orange);
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.event-link:hover {
    color: var(--color-green);
    transform: translateX(5px);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    padding: 2rem;
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-orange);
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.faq-answer {
    color: var(--color-gray);
    line-height: 1.7;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: var(--spacing-xl) 0;
    background: var(--color-dark);
    color: var(--color-white);
}

.contact .section-title,
.contact .section-subtitle {
    color: var(--color-white);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    gap: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--color-orange);
}

.contact-item a:hover {
    color: var(--color-green);
}

.contact-item p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.contact-buttons .btn {
    color: var(--color-white);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #1a1a1a;
    color: var(--color-white);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ========================================
   SOCIAL LINKS
   ======================================== */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

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

.social-link:hover {
    background: var(--color-orange);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   CHAT WIDGET
   ======================================== */
.chat-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-orange), var(--color-green));
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.chat-toggle .chat-icon {
    width: 28px;
    height: 28px;
    color: var(--color-white);
}

.chat-toggle .close-icon {
    display: none;
    width: 28px;
    height: 28px;
    color: var(--color-white);
}

.chat-toggle.active .chat-icon {
    display: none;
}

.chat-toggle.active .close-icon {
    display: block;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    max-height: 500px;
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-window.active {
    display: flex;
}

.chat-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--color-orange), var(--color-green));
    color: var(--color-white);
}

.chat-header h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.chat-header p {
    font-size: 0.85rem;
    opacity: 0.9;
}

.chat-body {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    max-height: 350px;
}

.chat-message {
    padding: 1rem;
    background: var(--color-bg);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.chat-message.bot {
    background: var(--color-bg);
}

.chat-message p {
    margin: 0;
    line-height: 1.5;
}

.chat-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.chat-option {
    padding: 1rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.chat-option:hover {
    background: var(--color-orange);
    color: var(--color-white);
    border-color: var(--color-orange);
}

.chat-footer {
    padding: 1rem 1.5rem;
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.chat-footer p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--color-gray);
}

/* Chat Contact Form */
.chat-form {
    padding: 0.5rem 0;
}

.chat-form input,
.chat-form textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    margin-bottom: 0.5rem;
    transition: border-color 0.3s;
}

.chat-form input:focus,
.chat-form textarea:focus {
    outline: none;
    border-color: var(--color-orange);
}

.chat-form textarea {
    resize: vertical;
    min-height: 60px;
}

.chat-submit-btn {
    width: 100%;
    padding: 0.7rem;
    background: linear-gradient(135deg, var(--color-orange), var(--color-green));
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.chat-submit-btn:hover {
    opacity: 0.9;
}

.chat-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
