/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* CBM Brand Colors */
    --primary-color: #2b2b2b;        /* Dark gray */
    --secondary-color: #ffffff;      /* White background */
    --accent-color: #f1f6f9;         /* Light blue-gray accent */
    --cbm-yellow: #fbc251;           /* CBM yellow */
    --cbm-teal: #1c7391;             /* CBM teal */
    --cbm-cyan: #03b9cc;             /* CBM cyan */
    --text-primary: #2b2b2b;         /* Dark text */
    --text-secondary: #1c7391;       /* Teal text */
    --text-light: #f1f6f9;           /* Light text */
    --border-color: #e2e8f0;         /* Light border */
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(43, 43, 43, 0.2);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Lucida Bright', serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 100px 0;
    --element-spacing: 2rem;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 400;
}

h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* Buttons */
.primary-button, .secondary-button, .cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.primary-button {
    background: var(--cbm-yellow);
    color: var(--primary-color);
}

.primary-button:hover {
    background: var(--cbm-teal);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.secondary-button {
    background: transparent;
    color: var(--cbm-teal);
    border: 2px solid var(--cbm-teal);
}

.secondary-button:hover {
    background: var(--cbm-teal);
    color: var(--text-light);
}

.cta-button {
    background: linear-gradient(45deg, var(--cbm-yellow), #f7d794) !important;
    color: var(--primary-color) !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    border: none !important;
    position: relative !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    min-width: auto !important;
    width: auto !important;
}

.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: left 0.5s ease;
}

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

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 194, 81, 0.4);
}

.primary-button.large {
    padding: 1.5rem 3rem;
    font-size: 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--cbm-yellow), var(--cbm-cyan));
    transition: width 0.3s ease;
}

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

.nav-menu a:hover {
    color: var(--cbm-teal);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(28, 115, 145, 0.9) 0%, rgba(43, 43, 43, 0.8) 100%),
                url('../assets/villa10.jpg') center/cover no-repeat;
    padding: 100px 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(251, 194, 81, 0.1) 0%, transparent 70%);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--cbm-yellow), var(--cbm-teal));
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--cbm-cyan), var(--cbm-yellow));
    bottom: 20%;
    left: 5%;
    animation-delay: -7s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, var(--cbm-teal), var(--cbm-cyan));
    top: 50%;
    left: 80%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(30px) rotate(240deg); }
}

.hero-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    padding: 0.5rem 1.5rem;
    background: rgba(251, 194, 81, 0.1);
    border: 1px solid rgba(251, 194, 81, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.badge-text {
    color: var(--cbm-yellow);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(251, 194, 81, 0.2), transparent);
    border-radius: 50px;
    opacity: 0;
    animation: glow 3s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: var(--text-light);
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 1s ease-out forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }
.title-line:nth-child(3) { animation-delay: 0.6s; }

.title-line.highlight {
    background: linear-gradient(45deg, var(--cbm-yellow), var(--cbm-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 140px;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--cbm-yellow);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.modern-btn {
    position: relative;
    padding: 1.5rem 3rem;
    background: linear-gradient(45deg, var(--cbm-yellow), #f7d794);
    border: none;
    border-radius: 50px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.modern-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(251, 194, 81, 0.4);
}

.btn-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-subtext {
    font-size: 0.9rem;
    opacity: 0.8;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.modern-btn:hover .btn-glow {
    left: 100%;
}

.cta-note {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.7;
    font-style: italic;
}



.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-light);
    opacity: 0.7;
}

.hero-scroll .scroll-link {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-scroll .scroll-link:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.hero-scroll span {
    display: block;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.hero-scroll .scroll-link:hover span {
    color: var(--cbm-yellow);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--cbm-yellow), transparent);
    border-radius: 2px;
}

.scroll-dot {
    width: 8px;
    height: 8px;
    background: var(--cbm-yellow);
    border-radius: 50%;
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.5; transform: translateY(10px); }
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--text-secondary);
    border-bottom: 2px solid var(--text-secondary);
    transform: rotate(45deg);
    margin: 0.5rem auto;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(28, 115, 145, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

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

.section-header {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    color: var(--text-primary);
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, var(--cbm-yellow), var(--cbm-cyan));
    border-radius: 2px;
}

.section-header p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    opacity: 0.8;
}

.section-header p:last-child {
    margin-bottom: 0;
}

/* Modern Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--cbm-yellow), var(--cbm-cyan));
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, var(--cbm-yellow), var(--cbm-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-primary);
    opacity: 0.8;
    line-height: 1.6;
}

/* Experience Preview */
.experience-preview {
    padding: var(--section-padding);
    background: var(--secondary-color);
}

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

.experience-highlights {
    list-style: none;
    margin: 2rem 0;
}

.experience-highlights li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
}

.experience-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Archive Section */
.archive {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.archive::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(251, 194, 81, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

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

.archive h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.archive h2::after {
    background: linear-gradient(45deg, var(--cbm-cyan), var(--cbm-yellow));
}

.archive .section-header p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    opacity: 0.9;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.archive-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.archive-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(251, 194, 81, 0.1), rgba(28, 115, 145, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.archive-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.archive-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.archive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.archive-card:hover .archive-image img {
    transform: scale(1.1);
}

.archive-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.archive-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.archive-content p {
    color: var(--text-light);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.archive-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cbm-yellow);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.archive-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.archive-link:hover {
    color: var(--cbm-cyan);
    transform: translateX(5px);
}

.archive-link:hover::after {
    transform: translateX(5px);
}

/* Final CTA Section */
.final-cta {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a1a 100%);
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.final-cta h2 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .cta-buttons {
    margin-top: 2rem;
}

/* Testimonials */
.testimonials {
    padding: var(--section-padding);
    background: var(--text-light);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cbm-yellow);
    margin-bottom: 1rem;
}

.testimonials-intro {
    text-align: center;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.testimonial-card {
    background: var(--secondary-color);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Page Hero */
/* About Page Hero */
.about-hero {
    position: relative;
    overflow: hidden;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.about-hero .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(43, 43, 43, 0.6) 0%, rgba(28, 115, 145, 0.5) 100%);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
}

.about-hero .hero-content {
    text-align: center;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-hero h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--cbm-yellow), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.02em;
    line-height: 1.2;
    width: 100%;
    display: block;
}

.about-hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
    width: 100%;
    display: block;
}

.page-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
    padding: 8rem 0 4rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/Home-10.jpg') center/cover;
    opacity: 0.2;
    z-index: 0;
}

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

.page-hero h1 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 400;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--cbm-yellow), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* About Page Styles */
.about-page {
    padding-top: 0;
}

/* About Intro Layout */
.intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-image {
    position: relative;
}

.intro-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.intro-text {
    padding: 2rem 0;
}

.about-intro {
    padding: 6rem 0;
    background: var(--text-light);
}

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

.intro-content {
    margin-top: 3rem;
}

.intro-content .lead {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.intro-content .highlight {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    background: linear-gradient(45deg, var(--cbm-yellow), var(--cbm-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
}

/* Philosophy Section */
.philosophy-section {
    padding: 6rem 0;
    background: var(--secondary-color);
}

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

/* Philosophy Cards with Images */
.philosophy-card {
    background: var(--text-light);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(251, 194, 81, 0.1);
    overflow: hidden;
}

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

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.philosophy-card:hover .card-img {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
    position: relative;
}

.card-icon {
    position: absolute;
    top: -30px;
    left: 2rem;
    z-index: 2;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--cbm-yellow), var(--cbm-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--cbm-yellow);
}

.philosophy-card h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.philosophy-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* About CTA with Background */
.about-cta {
    padding: 6rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(43, 43, 43, 0.8) 0%, rgba(30, 64, 175, 0.8) 100%);
    z-index: 1;
}

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

.cta-content h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--cbm-yellow), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Active Navigation State */
.nav-menu a.active {
    color: var(--cbm-yellow);
    font-weight: 600;
}

.nav-menu a.active::after {
    width: 100%;
    background: var(--cbm-yellow);
}

/* Villa Page Styles */
.villa-hero {
    position: relative;
    overflow: hidden;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.villa-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.villa-hero .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.villa-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(43, 43, 43, 0.6) 0%, rgba(28, 115, 145, 0.5) 100%);
    z-index: 1;
}

.villa-hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
}

.villa-hero .hero-content {
    text-align: center;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.villa-hero h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--cbm-yellow), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.02em;
    line-height: 1.2;
    width: 100%;
    display: block;
}

.villa-hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
    width: 100%;
    display: block;
}

/* Villa Introduction */
.villa-intro {
    padding: 6rem 0;
    background: var(--text-light);
}

/* Why Villa Section */
.why-villa {
    padding: 6rem 0;
    background: var(--secondary-color);
}

.villa-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.villa-feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    background: var(--text-light);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 350px;
}

.villa-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.villa-feature-card:nth-child(even) {
    direction: rtl;
}

.villa-feature-card:nth-child(even) .feature-content {
    direction: ltr;
}

.feature-image {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.villa-feature-card:hover .feature-img {
    transform: scale(1.05);
}

.feature-content {
    padding: 3rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.feature-content .feature-icon {
    position: absolute;
    top: 2rem;
    left: 3rem;
    z-index: 2;
}

.feature-content .icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--cbm-yellow), #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.feature-content h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    margin: 1rem 0 1.5rem 0;
    color: var(--primary-color);
}

.feature-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Villa Gallery */
.villa-gallery {
    padding: 6rem 0;
    background: var(--text-light);
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
}

/* Villa CTA */
.villa-cta {
    padding: 6rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.villa-cta .cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.villa-cta .cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.villa-cta .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(43, 43, 43, 0.7) 0%, rgba(28, 115, 145, 0.6) 100%);
    z-index: 1;
}

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

.villa-cta .cta-content h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: white;
}

.villa-cta .cta-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design for Villa Page */
@media (max-width: 768px) {
    .villa-hero {
        min-height: 35vh;
        padding: 2rem 0;
    }
    
    .villa-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .villa-hero p {
        font-size: 1.1rem;
    }
    
    .villa-features-grid {
        gap: 2rem;
    }
    
    .villa-feature-card {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .villa-feature-card:nth-child(even) {
        direction: ltr;
    }
    
    .feature-image {
        height: 250px;
    }
    
    .feature-content {
        padding: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .gallery-overlay {
        transform: translateY(0);
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    }
}
@media (max-width: 768px) {
    .about-hero {
        min-height: 35vh;
        padding: 2rem 0;
    }
    
    .about-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .about-hero p {
        font-size: 1rem;
    }
    
    .intro-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .intro-img {
        height: 300px;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .card-icon {
        left: 1.5rem;
    }
    
    .about-intro,
    .philosophy-section,
    .about-cta {
        padding: 4rem 0;
    }
}
.cta-section {
    padding: var(--section-padding);
    background: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.cta-content h2 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.cta-detail h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.cta-detail p {
    opacity: 0.9;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: auto;
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.6;
}

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

.link-group h4 {
    color: var(--cbm-yellow);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.link-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-group li {
    margin-bottom: 0.5rem;
}

.link-group a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease, color 0.3s ease;
    font-size: 0.9rem;
}

.link-group a:hover {
    opacity: 1;
    color: var(--cbm-yellow);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100vh);
        transition: transform 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .hero-stats {
        justify-content: center;
        gap: 1rem;
    }

    .stat-item {
        min-width: 120px;
        padding: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .archive-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding-top: 80px;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .stat-item {
        min-width: 200px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .archive-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        align-items: center;
    }

    .modern-btn {
        width: 100%;
        max-width: 300px;
    }

    .floating-shape {
        display: none;
    }

    /* Villa Page Mobile Styles */
    .villa-feature-card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .villa-feature-card:nth-child(even) {
        direction: ltr;
    }

    .feature-content {
        padding: 2rem;
        padding-top: 3rem;
    }
    
    .feature-content .feature-icon {
        position: absolute;
        top: 1rem;
        left: 2rem;
    }

    .feature-image {
        height: 200px;
    }

    /* About Hero Mobile Styles */
    .about-hero {
        min-height: 35vh;
        padding: 2rem 0;
    }

    .about-hero h1 {
        font-size: 1.8rem;
    }

    .about-hero p {
        font-size: 1rem;
    }

    /* Villa Hero Mobile Styles */
    .villa-hero {
        min-height: 35vh;
        padding: 2rem 0;
    }

    .villa-hero h1 {
        font-size: 1.8rem;
    }

    /* Yacht Page Mobile Styles */
    .yacht-features-list {
        margin-top: 3rem;
    }
    
    .yacht-feature-item {
        margin-bottom: 2.5rem;
        padding: 2rem;
    }

    .yacht-feature-item h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .yacht-feature-item p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* Yacht Hero Mobile Styles */
    .yacht-hero {
        min-height: 35vh;
        padding: 2rem 0;
    }

    .yacht-hero h1 {
        font-size: 1.8rem;
    }

    .yacht-hero p {
        font-size: 1rem;
    }
}

/* Yacht Page Styles */
.yacht-hero {
    position: relative;
    overflow: hidden;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yacht-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.yacht-hero .hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.yacht-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(43, 43, 43, 0.6) 0%, rgba(28, 115, 145, 0.5) 100%);
    z-index: 1;
}

.yacht-hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
}

.yacht-hero .hero-content {
    text-align: center;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.yacht-hero h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--cbm-yellow), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.02em;
    line-height: 1.2;
    width: 100%;
    display: block;
}

.yacht-hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: white;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
    width: 100%;
    display: block;
}

/* Yacht Introduction */
.yacht-intro {
    padding: 6rem 0;
    background: var(--text-light);
}

/* Why Yacht Section */
.why-yacht {
    padding: 6rem 0;
    background: var(--text-light);
}

.yacht-features-list {
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.yacht-feature-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--cbm-yellow);
}

.yacht-feature-item:last-child {
    margin-bottom: 0;
}

.yacht-feature-item h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 400;
    margin: 0 0 1rem 0;
    color: var(--primary-color);
}

.yacht-feature-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

/* Yacht Gallery */
.yacht-gallery {
    padding: 6rem 0;
    background: var(--text-light);
}

/* Yacht CTA */
.yacht-cta {
    padding: 6rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.yacht-cta .cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.yacht-cta .cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.yacht-cta .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(43, 43, 43, 0.7) 0%, rgba(28, 115, 145, 0.6) 100%);
    z-index: 1;
}

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

.yacht-cta .cta-content h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: white;
}

.yacht-cta .cta-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Modern Timeline Format */
.agenda-features {
    padding: 6rem 0;
    background: var(--text-light);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--accent-color), #f39c12);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) {
    flex-direction: row;
}

.timeline-content {
    flex: 1;
    padding: 0 2rem;
    max-width: 400px;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
}

.timeline-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.timeline-card h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: var(--primary-color);
}

.timeline-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #f39c12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .agenda-features {
        padding: 4rem 0;
    }
    
    .timeline {
        padding: 0 1rem;
    }
    
    .timeline::before {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .timeline-item {
        flex-direction: row !important;
        margin-bottom: 3rem;
        align-items: flex-start;
    }
    
    .timeline-content {
        text-align: left !important;
        padding-left: 2rem;
        flex: 1;
        max-width: none;
    }
    
    .timeline-card {
        padding: 1.5rem;
    }
    
    .timeline-icon {
        width: 60px;
        height: 60px;
        margin-right: 1rem;
        flex-shrink: 0;
        position: relative;
        left: -30px;
    }
}

/* Buy Page Styles */
.buy-cta-section {
    text-align: center;
    margin: 2rem 0;
}

.primary-buy-button {
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, var(--cbm-yellow), #f7d794);
    color: var(--primary-color);
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(251, 194, 81, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    line-height: 1.4;
    max-width: 500px;
    overflow: hidden;
}

.primary-buy-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: left 0.5s ease;
}

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

.primary-buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(251, 194, 81, 0.4);
}

.buy-archive {
    background: var(--accent-color);
    padding: 4rem 0;
}

.archive-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.archive-item {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    text-align: center;
}

.archive-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.archive-item h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.archive-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.archive-button {
    display: inline-block;
    background: var(--cbm-teal);
    color: var(--text-light);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.archive-button:hover {
    background: var(--cbm-cyan);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Mobile Responsive for Buy Page */
@media (max-width: 768px) {
    .primary-buy-button {
        padding: 1.25rem 2rem;
        font-size: 1rem;
        margin: 0 1rem;
    }
    
    .archive-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .archive-item {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .archive-item h3 {
        font-size: 1.5rem;
    }
    
    .buy-archive {
        padding: 3rem 0;
    }
    
    .buy-cta-section {
        margin: 1.5rem 0;
    }
    
    .why-yacht {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .section-header p {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
}