/* --- Base Styles & Variables --- */
:root {
    --primary-color: #cc9659; /* Red */
    --dark-bg: #1e1e1e;
    --alt-bg: #2a2a2a; /* Slightly lighter dark for alternating sections */
    --text-color: #fff9f3;
    --text-muted: #cccccc;
    --card-bg: #ffffff;
    --card-text: #1e1e1e;
    --border-color: #444444;
    --font-family: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth; /* Smooth scrolling for anchor links */
    scroll-padding-top: 80px; /* Offset for sticky header - adjust if header height changes */
}

body {
    font-family: var(--font-family);
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden; /* Prevent horizontal scrollbars caused by animations */
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

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

h1, h2, h3 {
    line-height: 1.3;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: 900;
    text-transform: uppercase;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 40px;
    text-align: center; /* Default alignment for section titles */
}

h3 {
     font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

/* --- Buttons --- */
.button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-align: center;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

.button-primary {
    background-color: var(--primary-color);
    color: var(--text-color);
    border-color: var(--primary-color);
}

.button-primary:hover {
    background-color: #dba366;
    border-color: #4d3a2a;
    transform: translateY(-3px); /* Increased hover lift */
     box-shadow: 0 6px 15px #a67539; /* Reddish glow */
}

.button-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.button:active {
    transform: scale(0.97) translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Reduced shadow on click */
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}


/* --- Header --- */
.header {
    padding: 15px 0;
    background-color: var(--dark-bg);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: none;
}

.header.scrolled {
    background-color: rgba(30, 30, 30, 0.9); /* Adjusted transparency */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4); /* Slightly stronger shadow */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom-color: transparent; /* Hide border when scrolled */
}


.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease; /* Add transition for potential hover effects */
}
/* .logo:hover { transform: scale(1.03); } Optional: scale logo on hover */

.logo-o {
    color: var(--primary-color);
    display: inline-block;
    font-weight: bold;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.logo:hover .logo-o {
    filter: brightness(1.2);
    transform: scale(1.1);
}

.nav ul {
    display: flex;
    gap: 35px;
}

/* === CORRECTED Nav Link Styles === */
.nav a {
    color: var(--text-muted);
    font-weight: 700;
    padding: 5px 0; /* Adjust vertical padding if needed, zero horizontal */
    position: relative; /* Needed for the ::after pseudo-element */
    text-decoration: none; /* Ensure no default underline */
    overflow: visible; /* Allow underline to be slightly outside */
    transition: color 0.3s ease; /* Transition for text color */
}

.nav a::after {
    content: '';
    position: absolute;
    left: 50%; /* Start positioning from the center */
    bottom: -2px; /* Position slightly below the baseline */
    width: 70%; /* Make the line slightly shorter than text (adjust as needed) */
    height: 2.5px; /* Slightly thicker line */
    background-color: var(--primary-color);
    transform: translateX(-50%) scaleX(0); /* Center horizontally, scale to 0 width */
    transform-origin: center; /* Scale from the center */
    transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1); /* Smooth transition for transform */
}

.nav a:hover,
.nav a.active { /* Style for hover AND active states */
    color: var(--text-color); /* Make text white */
}

.nav a:hover::after,
.nav a.active::after { /* Style for underline on hover/active */
     transform: translateX(-50%) scaleX(1); /* Center and scale to full width */
}
/* === End CORRECTED Nav Link Styles === */

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    display: none;
    width: 30px;
    height: 22px;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1001; /* Ensure it's above nav */
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}


/* --- Hero Section --- */
.hero {
    padding: 100px 0 80px 0; /* Increased top padding */
    min-height: calc(90vh - 80px); /* Slightly less than full viewport */
    display: flex;
    align-items: center;
    position: relative; /* For potential pseudo-elements */
    /* background: linear-gradient(rgba(30, 30, 30, 0.8), rgba(30, 30, 30, 1)), url('images/hero-bg.jpg') no-repeat center center/cover; */ /* Optional background */
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1 1 50%;
}

.hero-content h1 {
    margin-bottom: 25px;
}

.hero-content .highlight {
    color: var(--primary-color);
    font-weight: 900;
}
.hero-content .currency {
     font-weight: 700;
     /* font-size: 0.9em; */ /* Slightly smaller */
}

.hero-content p {
    font-size: 1.15rem; /* Slightly larger */
    color: var(--text-muted);
    margin-bottom: 45px;
    max-width: 520px;
    line-height: 1.7;
}

.hero-images {
    flex: 1 1 45%;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, minmax(140px, auto)); /* Increased min height */
    gap: 15px;
     grid-template-areas:
        "img2 img1"
        "img2 img3"
        "img4 logo";
}

.image-grid > * {
    border-radius: 8px;
    overflow: hidden;
    background-color: #333;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.3s ease;
}

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

.image-grid img:nth-of-type(1) { grid-area: img1; }
.image-grid img:nth-of-type(2) { grid-area: img2; }
.image-grid img:nth-of-type(3) { grid-area: img3; }
.image-grid img:nth-of-type(4) { grid-area: img4; }
.image-grid .logo-block { grid-area: logo; }

.logo-block {
    background-color: var(--card-bg);
    color: var(--card-text);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 900;
    text-align: center;
    line-height: 1.2;
    padding: 20px;
}
.logo-block .logo-o {
    color: var(--primary-color);
}

/* Hero Grid Hover */
.image-grid > img:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    z-index: 2; /* Bring hovered image slightly forward */
}
.image-grid > .logo-block:hover {
    transform: scale(1.03); /* Subtle scale for logo block */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* --- About Section --- */
.about-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
    color: var(--text-color);
}

.about-title {
    text-align: left;
    margin-bottom: 50px; /* Increased spacing */
    line-height: 1.2;
}

.about-content {
    display: flex;
    gap: 50px; /* Increased gap */
    align-items: flex-start;
}

.about-column {
    flex: 1;
}

.about-column-right {
   display: flex;
   flex-direction: column;
   gap: 30px; /* Space between image and text blocks */
}

.about-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 480px;
    line-height: 1.7;
}

.about-image {
    position: relative;
    bottom: 280px;
    width: 100%;
    
}


.about-image-two {
    position: relative;
    bottom: 150px;
    width: 100%;
}

.about-text-block p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}





/* Image Hover Effect Wrapper */
.image-hover-wrapper{
    position: relative;
    bottom: -70px;
}


/* --- Generic Content Section Styling --- */
.content-section {
    padding: 80px 0;
    text-align: center;
}
.content-section h2 {
    margin-bottom: 20px; /* Less margin for simple sections */
}
.content-section p {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 30px auto; /* Add some bottom margin */
    font-size: 1.1rem;
}

.alt-bg {
    background-color: var(--alt-bg);
}

/* --- Footer --- */
.footer {
    padding: 40px 0; /* Increased padding */
    margin-top: 80px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-top: 1px solid var(--border-color);
    background-color: var(--alt-bg); /* Match alt background */
}

/* --- Responsive Design --- */

/* Tablet */
@media (max-width: 992px) {
    html { scroll-padding-top: 70px; } /* Adjust offset */

    .header { padding: 12px 0; }
    .logo { font-size: 26px; }
    .nav ul { gap: 25px; }

    .hero { padding: 80px 0 60px 0; min-height: auto;}
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-images {
        margin-top: 40px;
        width: 100%;
        max-width: 600px;
    }
     .image-grid {
        grid-template-rows: repeat(3, minmax(120px, auto));
    }

     .about-title {
        text-align: center;
     }
     .about-content {
        gap: 30px;
     }
     .about-intro {
         max-width: none;
     }
}

/* Mobile (Smartphones) */
@media (max-width: 768px) {
    html { scroll-padding-top: 65px; } /* Adjust offset based on final mobile header height */
    h1 { font-size: clamp(2rem, 7vw, 2.8rem); }
    h2 { font-size: clamp(1.6rem, 6vw, 2rem); }

    .header { padding: 10px 0; } /* Adjust mobile header padding */
    .logo { font-size: 24px; }

    .nav {
        display: none;
        position: absolute;
        top: 100%; /* Position below header */
        left: 0;
        right: 0; /* Ensure full width */
        width: 100%;
        background-color: rgba(42, 42, 42, 0.98); /* Use alt bg color, slightly transparent */
        flex-direction: column;
        padding: 0; /* Remove padding here, apply to links */
        border-top: 1px solid var(--border-color);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        max-height: calc(100vh - 65px); /* Limit height (adjust 65px if header height changes) */
        overflow-y: auto; /* Allow scrolling if menu is long */
    }

    .nav.active {
        display: flex; /* Show when active */
    }

    .nav ul {
        flex-direction: column;
        align-items: center;
        gap: 0; /* Remove gap, use padding on links */
        width: 100%;
    }
    .nav li {
        width: 100%;
        text-align: center;
    }

    /* --- CORRECTED Mobile Nav Link Styles --- */
     .nav a {
         display: block; /* Make links take full width */
         padding: 15px 20px; /* More padding for touch */
         border-bottom: 1px solid var(--border-color); /* Separator lines */
         width: 100%;
         font-size: 1.1rem;
         overflow: hidden; /* Reset overflow for mobile */
         color: var(--text-muted); /* Reset color */
         font-weight: 700; /* Ensure font weight is set */
         text-decoration: none; /* Ensure no default underline */
         transition: background-color 0.3s ease, color 0.3s ease; /* Add transitions */
     }
      .nav li:last-child a {
         border-bottom: none; /* Remove last border */
     }
      .nav a::after { /* Remove underline effect on mobile */
         display: none;
     }
      .nav a:hover { /* Mobile hover style */
         background-color: rgba(204, 150, 89, 0.2); /* Primary color highlight on hover/tap */
         color: var(--primary-color);
     }
     /* --- End CORRECTED Mobile Nav Link Styles --- */

    .menu-toggle {
        display: flex;
    }

    /* Animate Hamburger Icon */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }
     .menu-toggle.active span { /* Change color when active */
         background-color: var(--primary-color);
     }

    .hero { padding: 60px 0; }
    .hero-container { gap: 30px; }
    .hero-content p { font-size: 1.05rem; margin-bottom: 35px;}
    .button-large { padding: 13px 35px; font-size: 1rem;}

    .image-grid {
        grid-template-columns: 1fr; /* Stack images */
        grid-template-rows: auto;
        grid-template-areas:
            "img1"
            "img2"
            "img3"
            "img4"
            "logo";
        max-width: 400px;
        margin: 0 auto;
        gap: 12px;
    }

    .image-grid > * {
        height: 250px;
    }
     .image-grid .logo-block {
         height: 150px;
         font-size: 1.8rem;
     }

    /* About Section Mobile */
    .about-section, .content-section { padding: 60px 0; } /* Corrected padding */
    .about-title { margin-bottom: 30px; text-align: center; } /* Center title on mobile */
    .about-content {
        position: static; /* Reset position */
        bottom: auto; /* Reset bottom */
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .about-column {
        width: 100%;
        max-width: 500px;
    }
     .about-column-left {
        order: 1; /* Text content first or as desired */
        text-align: center;
     }
      .about-intro {
         margin-left: auto;
         margin-right: auto;
         max-width: none; /* Remove max-width restriction */
      }
     .about-column-right {
        order: 2; /* Images and other text blocks */
        gap: 30px;
        align-items: center; /* Center items in right column */
     }
      .about-text-block {
         text-align: center;
      }

    /* Resetting problematic image positioning for mobile */
    .image-hover-wrapper,
    .about-image,
    .about-image-two {
        position: static; /* Remove relative positioning */
        bottom: auto;    /* Remove bottom offset */
        transform: none; /* Remove rotation */
        width: 100%;     /* Ensure full width within column */
        margin-bottom: 20px; /* Add some space between stacked images/blocks */
    }
    .about-image:last-child,
    .about-image-two:last-child,
    .image-hover-wrapper:last-child {
        margin-bottom: 0;
    }
}


/* --- AOS Animation Fallback (Optional) --- */
/*
[data-aos] {
  opacity: 0;
  transition-property: transform, opacity;
}
*/

/* --- Steps Section (Timeline) --- */
.steps-section {
    padding: 100px 0;
    background-color: #ec7b3a;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.steps-background-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(192, 160, 98, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(192, 160, 98, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 90%, rgba(192, 160, 98, 0.06) 0%, transparent 30%),
        radial-gradient(circle at 10% 80%, rgba(192, 160, 98, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 10%, rgba(192, 160, 98, 0.05) 0%, transparent 50%);
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
}


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

.steps-section h2 {
    color: #ffffff;
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.steps-subtitle {
    color: #e0e0e0;
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 70px;
    font-weight: 400;
}

.timeline {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    right: 10px;
    width: calc(100% - 20px);
    height: 3px;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 2px;
}

.timeline-line-progress {
    position: absolute;
    top: 50%;
    left: 10px;
    width: calc(100% - 20px);
    height: 3px;
    background-color: #c0a062;
    transform: translateY(-50%) scaleX(0);
    transform-origin: left center;
    transition: transform 1.2s cubic-bezier(0.645, 0.045, 0.355, 1) 0.3s;
    z-index: 2;
    border-radius: 2px;
}

.timeline.aos-animate .timeline-line-progress {
    transform: translateY(-50%) scaleX(1);
}

.timeline-step {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    padding: 0 15px;
    z-index: 3;
}

.timeline-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 150px;
}

.timeline-circle {
    width: 80px;
    height: 80px;
    background-color: #3a2c1f;
    border: 5px solid #c0a062;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 1.8rem; /* Approx 28.8px */
    font-weight: 700;
    position: relative;
    z-index: 4;
    box-shadow: 0 0 15px rgba(192, 160, 98, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.timeline-content:hover .timeline-circle {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(192, 160, 98, 0.5);
}

.timeline-description {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: 25px;
    font-weight: 400;
}

.timeline-step.step-even .timeline-content {
    flex-direction: column-reverse;
}

.timeline-step.step-even .timeline-description {
    margin-top: 0;
    margin-bottom: 25px;
}


/* Responsive Timeline */
@media (max-width: 992px) {
    .timeline {
        padding: 20px 0;
    }
     .timeline-circle {
        width: 70px;
        height: 70px;
        font-size: 1.6rem; /* Approx 25.6px */
        border-width: 4px;
    }
     .timeline-content {
         width: 130px;
     }
     .timeline-description {
         font-size: 0.9rem;
     }
}

@media (max-width: 768px) {
    .steps-section { padding: 60px 0; } /* Adjusted main section padding */
    .steps-subtitle { margin-bottom: 50px; }

    .timeline {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
        max-width: 500px; /* Limit width on mobile for vertical timeline */
        margin: 0 auto;
    }

    .timeline::before {
        top: 10px;
        bottom: 10px;
        left: 50%;
        width: 3px;
        height: calc(100% - 20px);
        transform: translateX(-50%);
    }

    .timeline-line-progress {
        top: 10px;
        left: 50%;
        width: 3px;
        height: calc(100% - 20px);
        transform: translateX(-50%) scaleY(0);
        transform-origin: center top;
        transition: transform 1.2s cubic-bezier(0.645, 0.045, 0.355, 1) 0.3s;
    }

    .timeline.aos-animate .timeline-line-progress {
        transform: translateX(-50%) scaleY(1);
    }

    .timeline-step {
        flex: none;
        width: 100%;
        max-width: 350px; /* Max width of individual step items */
        padding: 30px 0; /* Vertical spacing between steps */
        justify-content: flex-start;
        text-align: left;
    }
     .timeline-step:nth-child(odd) {
        padding-left: calc(50% + 45px); /* Circle radius (30px) + gap (15px) */
     }
      .timeline-step:nth-child(even) {
        justify-content: flex-end;
        text-align: right;
         padding-right: calc(50% + 45px); /* Circle radius (30px) + gap (15px) */
         padding-left: 0;
     }

    .timeline-content {
        align-items: flex-start;
        width: auto; /* Let content define width */
        position: relative;
        text-align: inherit;
    }
     .timeline-step:nth-child(even) .timeline-content {
        align-items: flex-end;
     }

    .timeline-circle {
        width: 60px; /* Explicit size for mobile */
        height: 60px;
        font-size: 1.4rem; /* Approx 22.4px */
        border-width: 4px;
        position: absolute;
        top: 0; /* Align with top of description or step content */
        /* transform: translateY(-50%); Vertically center to the first line of text if preferred */
    }
    .timeline-step:nth-child(odd) .timeline-circle {
        left: -45px; /* (width 60 / 2) + padding 15 from content to center line */
        transform: translateX(-50%); /* Center circle on the line */
    }
    .timeline-step:nth-child(even) .timeline-circle {
        right: -45px;
        left: auto;
        transform: translateX(50%); /* Center circle on the line */
    }
    .timeline-content:hover .timeline-circle { /* Disable hover on mobile, or simplify */
        transform: scale(1) translateX(-50%); /* For odd */
        box-shadow: 0 0 15px rgba(192, 160, 98, 0.3);
    }
    .timeline-step:nth-child(even) .timeline-content:hover .timeline-circle {
        transform: scale(1) translateX(50%); /* For even */
    }


    .timeline-step.step-even .timeline-content {
        flex-direction: column; /* Ensure standard flow */
    }
    .timeline-step.step-even .timeline-description {
        margin-bottom: 0;
        margin-top: 15px; /* Consistent margin */
    }
     .timeline-description {
        margin-top: 15px;
        max-width: 200px; /* Limit description width */
     }
}

/* ======================= Steps Section Styles ======================= */

.steps-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background-color: #3a2c1f;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(192, 160, 98, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 35%, rgba(210, 180, 110, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 40% 90%, rgba(180, 150, 90, 0.1) 0%, transparent 55%),
        linear-gradient(135deg, rgba(192, 160, 98, 0.05) 0%, transparent 70%),
        linear-gradient(315deg, rgba(210, 180, 110, 0.07) 0%, transparent 60%);
    background-size: 250% 250%;
    background-repeat: no-repeat;
    animation: animatedBackgroundFlow 55s ease-in-out infinite alternate;
}

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

@keyframes animatedBackgroundFlow {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

.steps-section h2 {
    color: #ffffff;
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
}

.steps-subtitle {
    color: #e0e0e0;
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 70px;
    font-weight: 400;
    position: relative;
}

/* --- Стили Таймлайна (уже определены выше, дублирование здесь для контекста, если этот блок отдельный) --- */
/* .timeline, .timeline::before, .timeline-line-progress, .timeline-step, etc. */
/* Стили для .timeline и его дочерних элементов уже предоставлены и адаптированы выше */


/* ======================= Management Section Styles (Refined) ======================= */

.management-section.refined {
    padding: 120px 0 60px 0;
    position: relative;
    background-image: url('images/city-background.jpg'); /* Placeholder, ensure path is correct */
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    color: var(--text-color);
    overflow: hidden;
}

.management-overlay-refined {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.97) 0%, rgba(25, 25, 25, 0.85) 60%, rgba(30, 30, 30, 0.75) 100%);
    z-index: 1;
}

.management-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    min-height: 85vh;
}

.management-main-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 80px;
    flex-grow: 1;
    align-items: flex-start;
}

.management-text-services {
    flex: 1 1 80%;
    max-width: 60%;
}

.management-content {
    margin-bottom: 60px;
}

.management-content h1 {
    font-size: clamp(2.8rem, 5.5vw, 3.8rem);
    font-weight: 800;
    margin-bottom: 25px;
    color: #ffffff;
    text-align: left;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}
.management-content h1 sup {
    font-size: 0.35em;
    top: -1.2em;
    position: relative;
    font-weight: 500;
    opacity: 0.8;
}

.management-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 20px;
    max-width: 650px;
}

.management-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.service-button-refined {
    display: block;
    padding: 14px 18px;
    background-color: rgba(50, 50, 50, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    text-decoration: none;
    backdrop-filter: blur(2px);
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-button-refined:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(192, 160, 98, 0.9);
    color: #ffffff;
    transform: scale(1.03);
}

.management-benefits-refined {
    flex: 1 1 35%;
    max-width: 32%;
    background-color: rgba(35, 35, 35, 0.5);
    border-left: 4px solid #c0a062;
    padding: 35px 30px;
    border-radius: 0 8px 8px 0;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.management-benefits-refined ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.management-benefits-refined li {
    color: #f0f0f0;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.3s ease, transform 0.3s ease;
}

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

.management-benefits-refined li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #c0a062;
    border-radius: 50%;
    margin-right: 12px;
    vertical-align: middle;
    transition: background-color 0.3s ease;
}

.management-benefits-refined li:hover {
    color: #ffffff;
    transform: translateX(5px);
}
.management-benefits-refined li:hover::before {
    background-color: #ffffff;
}

.management-footer-elements {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0 0 0;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.raf-logo {
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 5px 25px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: right;
    opacity: 0.8;
}

/* Адаптивность (Refined) */
@media (max-width: 1100px) {
    .management-main-content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .management-text-services,
    .management-benefits-refined {
        max-width: 85%;
        width: 100%;
    }
    .management-text-services { order: 1; text-align: center;} /* Center text content */
    .management-content h1 { text-align: center; }
    .management-content p { margin-left: auto; margin-right: auto; }


    .management-benefits-refined {
        order: 2;
        margin-top: 20px;
        max-width: 700px;
        border-left-width: 5px;
         padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .management-section.refined {
        padding: 80px 0 50px 0;
        background-position: 70% bottom; /* Adjust background for better visibility on mobile */
    }
    .management-text-services,
    .management-benefits-refined {
        max-width: 100%;
    }
    .management-content h1 { font-size: clamp(2.2rem, 7vw, 3rem); }
    .management-content p { font-size: 1.05rem; }

    .management-services {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Smaller min size for services */
        gap: 12px;
    }
    .service-button-refined { padding: 12px 15px; font-size: 0.85rem; }

    .management-benefits-refined {
        padding: 25px 20px;
        border-left-width: 3px; /* Thinner border on mobile */
        border-radius: 8px; /* Consistent border radius */
    }
    .management-benefits-refined li { font-size: 1rem; padding: 8px 0; }
    .management-benefits-refined li::before { margin-right: 10px; width: 5px; height: 5px; }

    .management-footer-elements {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding-top: 40px;
        border-top: none;
    }
    .copyright { text-align: center; }
}

@media (max-width: 480px) {
    .management-section.refined {
        padding: 60px 0 40px 0;
    }
    .management-services {
        grid-template-columns: 1fr; /* Single column for services */
    }
    .management-benefits-refined li { font-size: 0.95rem; }
    .service-button-refined { font-size: 0.9rem; padding: 12px 20px; } /* Slightly larger for single column */
}

/* ======================= Award Section Styles ======================= */

.award-section {
    padding: 100px 0;
    position: relative;
    background-color: #212121;
    color: var(--text-color);
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.award-bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
    filter: blur(20px);
}

.award-bg-shape-1 {
    width: 50vw;
    height: 50vw;
    background-color: #b48f4d;
    top: -20%;
    left: 40%;
    transform: translateX(-50%);
    animation: awardSlowFloat 25s ease-in-out infinite alternate;
}

.award-bg-shape-2 {
    width: 40vw;
    height: 40vw;
    background-color: #a37f40;
    bottom: -15%;
    right: -10%;
    animation: awardSlowFloatReverse 30s ease-in-out infinite alternate;
}

@keyframes awardSlowFloat { /* Renamed to avoid conflict if slowFloat is used elsewhere */
    0% { transform: translate(-50%, 0) scale(1); }
    100% { transform: translate(-55%, 5%) scale(1.05); }
}
@keyframes awardSlowFloatReverse { /* Renamed */
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-5%, -5%) scale(1.03); }
}


.award-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.award-text {
    flex: 1 1 55%;
    max-width: 55%;
    padding-right: 30px;
}

.award-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.award-source {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    opacity: 0.9;
}
.award-source p {
    margin-bottom: 5px;
}

.award-logo-container {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 30px;
}

.award-logo-circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #d4af6a, #a37f40 90%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #3a2c1f;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 25px rgba(212, 175, 106, 0.2);
    padding: 20px;
}

.since-year {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 5px;
    color: #4d3a2a;
}

.logo-name-raf {
    font-family: serif;
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 15px;
    display: flex;
    align-items: baseline;
}

.logo-a-with-cup {
    position: relative;
}

.logo-a-with-cup::before {
    content: '☕';
    font-size: 0.35em;
    position: absolute;
    bottom: 0.15em;
    left: 50%;
    transform: translateX(-50%);
    color: #3a2c1f;
    opacity: 0.8;
}


.logo-subtext-coffee {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    width: 80%;
    justify-content: center;
    color: #4d3a2a;
}

.logo-subtext-coffee::before,
.logo-subtext-coffee::after {
    content: '';
    flex-grow: 1;
    height: 1.5px;
    background-color: #4d3a2a;
    opacity: 0.7;
    margin: 0 15px;
}

.award-copyright {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    z-index: 3;
    text-align: right;
}

@media (max-width: 992px) {
    .award-section { padding: 80px 0; min-height: auto; }
    .award-container {
        flex-direction: column;
        text-align: center;
    }
    .award-text {
        max-width: 80%;
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
        order: 2;
    }
    .award-title { font-size: clamp(2rem, 6vw, 3rem); }
    .award-source { font-size: 0.9rem; }

    .award-logo-container {
        padding-left: 0;
        margin-bottom: 40px;
         order: 1;
    }
    .award-logo-circle {
        width: 240px;
        height: 240px;
    }
    .logo-name-raf { font-size: 3.8rem; margin-bottom: 10px; }
    .logo-a-with-cup::before { font-size: 0.3em; bottom: 0.1em; }
    .logo-subtext-coffee { font-size: 0.9rem; letter-spacing: 3px; }
    .logo-subtext-coffee::before, .logo-subtext-coffee::after { margin: 0 10px; }

     .award-copyright {
        position: relative;
        bottom: auto; right: auto;
        text-align: center;
        margin-top: 30px;
     }
}

@media (max-width: 480px) {
     .award-section { padding: 60px 0; }
     .award-text { max-width: 100%; }
     .award-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
     .award-source { font-size: 0.85rem; }

     .award-logo-circle {
        width: 200px;
        height: 200px;
    }
    .logo-name-raf { font-size: 3rem; }
    .logo-subtext-coffee { font-size: 0.8rem; letter-spacing: 2px; }
}

/* ======================= Startup Package Section Styles ======================= */

.startup-package-section {
    padding: 100px 0;
    position: relative;
    background-color: #262626;
    color: var(--text-color);
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.startup-bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    z-index: 1;
    pointer-events: none;
    filter: blur(30px);
}
.startup-bg-shape-1 {
    width: 45vw; height: 45vw; background-color: #b48f4d;
    top: -10%; left: -15%;
    animation: startupSlowFloat 28s ease-in-out infinite alternate; /* Renamed */
}
.startup-bg-shape-2 {
    width: 55vw; height: 55vw; background-color: #a37f40;
    bottom: -25%; right: -20%;
    animation: startupSlowFloatReverse 35s ease-in-out infinite alternate; /* Renamed */
}
@keyframes startupSlowFloat { /* Renamed animation */
    0% { transform: translate(-50%, 0) scale(1); }
    100% { transform: translate(-55%, 5%) scale(1.05); }
}
@keyframes startupSlowFloatReverse { /* Renamed animation */
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-5%, -5%) scale(1.03); }
}

.startup-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center; /* Center items on desktop */
    gap: 50px;
    max-width: 1100px; /* Control max width */
    margin: 0 auto;
    padding: 0 20px;
}

.startup-title-container {
    flex: 0 0 auto; /* Don't grow or shrink title container */
    text-align: right; /* Align title to the right for desktop */
    padding-right: 35px; /* Space for lines if any, or just visual separation */
}

.startup-title-container h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    white-space: nowrap;
}

.startup-list-container {
    flex: 1 1 auto;
    max-width: 550px;
    padding-left: 15px;
}

.startup-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.startup-list-item {
    position: relative;
    padding-left: 25px;
    margin-bottom: 20px;
    color: #e0e0e0;
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 400;
}
.startup-list-item:last-child { margin-bottom: 0; }

.startup-list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #c0a062;
    border-radius: 50%;
    z-index: 5;
}

@media (max-width: 768px) {
    .startup-package-section { padding: 80px 0; }
    .startup-container {
        flex-direction: column;
        text-align: center;
        gap: 30px; /* Reduced gap for stacked layout */
    }
    .startup-title-container {
        padding-right: 0;
        text-align: center;
        width: 100%;
        margin-bottom: 10px;
    }
    .startup-title-container h2 { text-align: center; white-space: normal; }

    .startup-list-container {
        max-width: 100%; /* Allow list to use full width */
        width: 100%;
        text-align: left;
        padding-left: 20px; /* Add padding for list items when centered */
    }
     .startup-list-item {
        font-size: 1rem;
        padding-left: 20px; /* Adjust for smaller dot */
        margin-bottom: 15px;
     }
     .startup-list-item::before {
         width: 7px; height: 7px; top: 0.6em; /* Slightly adjust dot */
     }
}

@media (max-width: 480px) {
    .startup-package-section { padding: 60px 0; }
    .startup-title-container h2 { font-size: clamp(1.8rem, 7vw, 2.5rem); }
    .startup-list-item { font-size: 0.95rem; }
    .startup-list-container { padding-left: 15px; }
}

/* ======================= Support Section Styles ======================= */

.support-section {
    padding: 100px 0;
    position: relative;
    background-color: #2f2f2f;
    color: var(--text-color);
    overflow: hidden;
}

.support-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px; /* Add padding for container */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.support-title-container {
    width: 100%;
    margin-bottom: 50px;
}

.support-title-container h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    text-align: left;
}

.support-list-container {
    width: 100%;
}

.support-list {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 40px;
}

.support-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 20px;
    color: #e0e0e0;
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 400;
    break-inside: avoid;
    page-break-inside: avoid;
}

.support-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 6px;
    color: #c0a062;
    font-size: 1.1em;
    line-height: 1;
}

.support-section::after {
    content: 'RAF';
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    font-family: serif;
    font-size: 18vw;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.04);
    z-index: 1;
    pointer-events: none;
    line-height: 1;
}

@media (max-width: 992px) {
    .support-section { padding: 80px 0; }
    .support-container { max-width: 700px; }
    .support-section::after { font-size: 22vw; }
}

@media (max-width: 768px) {
    .support-section { padding: 60px 0; }
    /* .support-container padding already set to 0 20px */
    .support-title-container { margin-bottom: 40px; text-align: center; } /* Center title */
    .support-title-container h2 { font-size: clamp(1.8rem, 6vw, 2.5rem); text-align: center; }

    .support-list {
        columns: 1; /* Single column */
        padding: 0 10px; /* Add some padding if list items seem too close to edge */
    }
    .support-list li {
        font-size: 1rem;
        padding-left: 25px;
        margin-bottom: 18px;
        text-align: left; /* Ensure text aligns left within the item */
    }
    .support-list li::before { top: 5px; }

    .support-section::after {
        font-size: 30vw;
        right: -5%;
        opacity: 0.03; /* Make it more subtle if too distracting */
    }
}

@media (max-width: 480px) {
     .support-section { padding: 50px 0; }
     .support-list li { font-size: 0.95rem; }
     .support-section::after { font-size: 35vw; opacity: 0.02; }
}

/* ======================= Formats Section Styles (Single Slide View) ======================= */
.formats-section { /* Assuming this class exists for the section wrapper */
    padding: 100px 0;
    background-color: #1e1e1e; /* Example background */
    position: relative;
    overflow: hidden;
}
.formats-bg-lines { /* Assuming this class exists for background lines */
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    /* Add your background line styles here if any */
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}
.formats-title-container { /* Assuming this class exists for the title */
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}
.formats-title-container h2 { /* Example title styling */
    color: #ffffff;
}


.formats-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 50px;
}

.formats-slider {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    overflow: visible;
    padding: 10px 0 50px 0;
    position: relative;
}

.swiper-wrapper { align-items: stretch; }
.swiper-slide { height: auto; display: flex; justify-content: center; align-items: stretch; }

.format-card {
    width: 100%;
    height: 100%;
    display: flex;
    background-color: rgba(40, 30, 20, 0.6);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(192, 160, 98, 0.3);
    backdrop-filter: blur(3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.format-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.3); }
.format-image-container { flex: 0 0 45%; max-width: 45%; overflow: hidden; }
.format-image-container img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.format-card:hover .format-image-container img { transform: scale(1.08); }
.format-details { flex: 1 1 auto; padding: 25px 30px; display: flex; flex-direction: column; color: var(--text-color); }
.format-details h3 { font-size: 1.5rem; margin-bottom: 10px; color: #ffffff; }
.luxe-badge { /* Add styles if you have a luxe badge */ display: inline-block; background-color: var(--primary-color); color: var(--text-color); padding: 3px 8px; border-radius: 4px; font-size: 0.8rem; font-weight: 700; margin-bottom:15px; }
.format-investment, .format-metrics { margin-bottom: 15px; font-size: 0.95rem; }
.format-investment strong, .format-metrics strong { color: #ffffff; font-weight: 600; }
.investment-row, .metric-row { display: flex; justify-content: space-between; padding: 4px 0; }
.metric-row span:first-child { opacity: 0.8; }

.formats-pagination.swiper-pagination-bullets {
    bottom: 10px;
    position: absolute;
    width: 100%;
    left: 0; /* Ensure it's centered */
}
.formats-pagination .swiper-pagination-bullet { width: 10px; height: 10px; background-color: rgba(255, 255, 255, 0.4); opacity: 1; transition: background-color 0.3s ease, transform 0.3s ease; margin: 0 5px; }
.formats-pagination .swiper-pagination-bullet-active { background-color: #c0a062; transform: scale(1.2); }

.formats-button-prev,
.formats-button-next {
    color: #c0a062;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -20px; /* Adjust based on card height, this is an estimate */
}
.formats-button-prev:hover,
.formats-button-next:hover {
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    transform: translateY(-50%) scale(1.05);
}
.formats-button-prev::after,
.formats-button-next::after {
    font-size: 18px;
    font-weight: 900;
}

.formats-button-prev { left: -60px; }
.formats-button-next { right: -60px; }


@media (max-width: 992px) {
     .formats-container { padding: 0 30px; }
     .formats-slider { max-width: 600px; }
     .formats-button-prev { left: -50px; } /* Closer arrows */
     .formats-button-next { right: -50px; }
}

@media (max-width: 768px) {
     .formats-section { padding: 60px 0; } /* Adjusted section padding */
     .formats-container { padding: 0 15px; }
     .formats-slider {
         overflow: hidden; /* Hide arrows that would overflow */
         padding: 10px 0 40px 0;
         max-width: none; /* Slider takes full width of container */
      }
     .format-card {
         flex-direction: column; /* Stack image and details */
     }
     .format-image-container {
         max-width: 100%;
         height: 220px; /* Fixed height for image on mobile */
     }
     .format-details { padding: 20px; } /* Adjust padding for mobile card */
     .format-details h3 { font-size: 1.3rem; }

     .formats-button-prev,
     .formats-button-next {
         display: none; /* Hide arrows on mobile, rely on swipe and pagination */
     }
     .formats-pagination.swiper-pagination-bullets { bottom: 5px; }
}
@media (max-width: 480px) {
    .format-image-container { height: 180px; } /* Smaller image for very small screens */
    .format-details { padding: 15px; }
    .format-details h3 { font-size: 1.2rem; }
    .luxe-badge { font-size: 0.75rem; padding: 2px 6px; }
    .format-investment, .format-metrics { font-size: 0.9rem; }
}

/* ======================= Success Factors Section Styles ======================= */

.success-factors-section {
    padding: 120px 0;
    position: relative;
    background-color: #2a2a2a;
    color: var(--text-color);
    overflow: hidden;
    min-height: 60vh;
}
.success-two-section {
    padding: 120px 0;
    position: relative;
    background-color: #000000;
    color: var(--text-color);
    overflow: hidden;
    min-height: 60vh;
}
.success-two-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.success-factors-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.success-title-container {
    flex: 0 1 40%;
    text-align: right;
}

.success-title-container h2 {
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
}

.success-title-container .title-highlight {
    display: block;
    font-size: clamp(4.5rem, 10vw, 7rem);
    color: transparent;
    background: linear-gradient(135deg, #d4af6a, #a37f40);
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 5px;
}

.success-title-container .title-normal {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ffffff;
    font-weight: 700;
}

.factors-list-container {
    flex: 1 1 55%;
    max-width: 500px;
}

.factor-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    position: relative;
}
.factor-item:last-child {
    margin-bottom: 0;
}

.factor-number {
    font-size: clamp(3.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1;
    color: transparent;
    background: linear-gradient(135deg, #d4af6a, #b48f4d);
    -webkit-background-clip: text;
    background-clip: text;
    margin-right: 25px;
    flex-shrink: 0;
    position: relative;
    top: -5px;
}

.factor-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #e0e0e0;
    font-weight: 400;
}


.success-factors-bg-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: serif;
    font-size: 25vw;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.035);
    z-index: 1;
    pointer-events: none;
    user-select: none;
    text-align: center;
    line-height: 1;
}

@media (max-width: 992px) {
    .success-factors-container {
        gap: 40px;
    }
    .success-title-container .title-highlight { font-size: clamp(4rem, 9vw, 6rem); }
    .success-title-container .title-normal { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
    .factor-number { font-size: clamp(3rem, 5vw, 4rem); margin-right: 20px; }
    .factor-text { font-size: 1rem; }
    .success-factors-bg-logo { font-size: 30vw; }
}

@media (max-width: 768px) {
    .success-factors-section { padding: 80px 0; }
    .success-factors-container {
        flex-direction: column;
        text-align: center;
        gap: 40px; /* Adjusted gap */
    }
    .success-title-container {
        text-align: center;
        flex-basis: auto;
        margin-bottom: 20px; /* Space below title block */
    }
    .success-title-container h2 { text-align: center; }
    .factors-list-container {
        max-width: 100%; /* Allow list to use more width */
        width: 100%;
    }
    .factor-item {
        text-align: left; /* Text inside item aligns left */
        margin-bottom: 30px;
        flex-direction: row; /* Ensure number and text are row on mobile too */
        align-items: center; /* Better vertical alignment for number and text */
    }
    .factor-number { top: 0; font-size: clamp(2.5rem, 8vw, 3.5rem); } /* Adjusted size and reset top */
    .factor-text { font-size: 0.95rem; }
    .success-factors-bg-logo { font-size: 40vw; opacity: 0.025; }
}

@media (max-width: 480px) {
    .success-two-section { padding: 60px 0; }
    .success-title-container .title-highlight { font-size: clamp(3rem, 15vw, 4.5rem); }
    .success-title-container .title-normal { font-size: clamp(1.5rem, 5vw, 2rem); }
    .factor-number { font-size: clamp(2.2rem, 10vw, 3rem); margin-right: 15px; }
    .factor-text { font-size: 0.9rem; }
    .success-two-bg-logo { font-size: 50vw; opacity: 0.02;}
}





@media (max-width: 992px) {
    .success-two-container {
        gap: 40px;
    }
    .success-title-container .title-highlight { font-size: clamp(4rem, 9vw, 6rem); }
    .success-title-container .title-normal { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
    .factor-number { font-size: clamp(3rem, 5vw, 4rem); margin-right: 20px; }
    .factor-text { font-size: 1rem; }
    .success-two-bg-logo { font-size: 30vw; }
}

@media (max-width: 768px) {
    .success-two-section { padding: 80px 0; }
    .success-two-container {
        flex-direction: column;
        text-align: center;
        gap: 40px; /* Adjusted gap */
    }
    .success-title-container {
        text-align: center;
        flex-basis: auto;
        margin-bottom: 20px; /* Space below title block */
    }
    .success-title-container h2 { text-align: center; }
    .factors-list-container {
        max-width: 100%; /* Allow list to use more width */
        width: 100%;
    }
    .factor-item {
        text-align: left; /* Text inside item aligns left */
        margin-bottom: 30px;
        flex-direction: row; /* Ensure number and text are row on mobile too */
        align-items: center; /* Better vertical alignment for number and text */
    }
    .factor-number { top: 0; font-size: clamp(2.5rem, 8vw, 3.5rem); } /* Adjusted size and reset top */
    .factor-text { font-size: 0.95rem; }
    .success-factors-bg-logo { font-size: 40vw; opacity: 0.025; }
}

@media (max-width: 480px) {
    .success-two-section { padding: 60px 0; }
    .success-title-container .title-highlight { font-size: clamp(3rem, 15vw, 4.5rem); }
    .success-title-container .title-normal { font-size: clamp(1.5rem, 5vw, 2rem); }
    .factor-number { font-size: clamp(2.2rem, 10vw, 3rem); margin-right: 15px; }
    .factor-text { font-size: 0.9rem; }
    .success-factors-bg-logo { font-size: 50vw; opacity: 0.02;}
}

/* ======================= Assortment Section Styles ======================= */

.assortment-section {
    padding: 100px 0;
    background-color: #251f1a;
    background-image: url('images/backgrounds/dark-texture.jpg'); /* Placeholder, ensure path */
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--text-color);
}
/* Optional overlay
.assortment-section::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(30, 25, 20, 0.6); z-index: 1;
} */

.assortment-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.assortment-content {
    flex: 1 1 45%;
}

.assortment-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 40px;
}

.assortment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.assortment-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
}
.assortment-list li:last-child {
    margin-bottom: 0;
}

.assortment-list li::before {
    content: '★';
    position: absolute;
    left: 0;
    top: 5px;
    color: #c0a062;
    font-size: 1.2em;
    line-height: 1;
}

.assortment-image {
    flex: 1 1 55%;
    max-width: 55%;
    border-radius: 10px;
    overflow: hidden;
}

.assortment-image img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .assortment-section { padding: 60px 0; } /* Adjusted padding */
    .assortment-container {
        flex-direction: column;
        text-align: center;
        gap: 30px; /* Adjusted gap */
    }
    .assortment-content,
    .assortment-image {
        flex-basis: auto;
        max-width: 100%; /* Full width on mobile */
        width: 100%;
    }
    .assortment-image {
        order: -1; /* Image first on mobile */
        margin-bottom: 20px;
    }
    .assortment-list {
        display: inline-block; /* To respect text-align:left if parent is center */
        text-align: left;
        padding: 0 10px; /* Prevent list items touching edge */
    }
     .assortment-title { margin-bottom: 25px; font-size: clamp(2rem, 6vw, 2.8rem); }
     .assortment-list li { font-size: 1rem; }
}
@media (max-width: 480px) {
    .assortment-section { padding: 50px 0; }
    .assortment-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
    .assortment-list li { font-size: 0.95rem; padding-left: 25px; }
    .assortment-list li::before { font-size: 1.1em; top: 4px; }
}

/* ======================= Academy Section Styles ======================= */

.academy-section {
    padding: 0;
    position: relative;
    background-color: #212121;
    color: var(--text-color);
    overflow: hidden;
}

.academy-container {
    display: flex;
    align-items: stretch;
    max-width: none;
    padding: 0;
    position: relative;
    z-index: 2;
}

.academy-image {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    /* margin-left: auto; */ /* These might not be needed with flex */
    /* margin-right: auto; */
}

.academy-image::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 100px;
    background: linear-gradient(to left, rgba(33, 33, 33, 0.7), transparent);
    pointer-events: none;
}

.academy-image img {
    display: block;
    width: 100%; /* Ensure image takes full width of its container */
    height: 100%;
    object-fit: cover;
    /* left: 100px; */ /* This 'left' seems problematic, removed for normal flow */
}

.academy-content {
    flex: 0 0 50%;
    max-width: 50%;
    display: flex;
    align-items: center;
    padding: 80px 5% 80px 80px;
    position: relative;
}

.academy-title-vertical {
    position: absolute;
    left: 15px;
    top: 50%; /* Changed to 50% for transform centering */
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    white-space: nowrap;
}

.academy-title-vertical h2 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.academy-title-vertical h2 sup {
    font-size: 0.5em;
    font-weight: 400;
    display: inline-block;
    vertical-align: super;
}

.academy-list-container {
    width: 100%;
    max-width: 450px;
    margin-left: 40px;
}

.academy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.academy-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #e0e0e0;
}
.academy-list li:last-child {
    margin-bottom: 0;
}

.academy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    transform: translateY(-50%);
    width: 9px;
    height: 9px;
    background-color: #c0a062;
    border-radius: 50%;
}

.academy-bg-logo {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    font-family: serif;
    font-size: 16vw;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.04);
    z-index: 1;
    pointer-events: none;
    user-select: none;
    text-align: center;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.academy-bg-logo .bg-logo-coffee {
    font-size: 0.18em;
    letter-spacing: 3px;
    font-weight: 500;
    margin-top: -0.1em;
}
.academy-bg-logo .bg-logo-since {
    font-size: 0.1em;
    font-weight: 400;
    margin-top: 0.5em;
}

@media (max-width: 992px) {
    .academy-content { padding: 60px 4% 60px 60px; }
    .academy-list-container { margin-left: 25px; }
    .academy-title-vertical h2 { font-size: clamp(1.6rem, 2.5vw, 2rem); }
    .academy-bg-logo { font-size: 20vw; right: 3%; }
}

@media (max-width: 768px) {
    .academy-container { flex-direction: column; }
    .academy-image,
    .academy-content {
        flex-basis: auto;
        max-width: 100%;
    }
    .academy-image {
        height: 350px; /* Set a fixed height for the image */
        order: -1; /* Image first on mobile */
    }
    .academy-image::after { display: none; }
    .academy-image img { /* left: 0; Ensure it's not offset */ }

    .academy-content {
        padding: 50px 20px; /* Consistent padding */
        text-align: center; /* Center content within text block */
    }
    .academy-title-vertical {
        position: static; /* No longer absolute */
        transform: none;
        writing-mode: horizontal-tb; /* Horizontal text */
        text-orientation: mixed;
        white-space: normal;
        margin-bottom: 30px;
        text-align: center;
    }
     .academy-title-vertical h2 sup { display: inline; }
     .academy-list-container {
         margin-left: 0;
         max-width: 100%;
         padding: 0 10px; /* Padding for list items */
         text-align: left; /* Align list text to left */
      }
     .academy-list li { font-size: 1rem; margin-bottom: 20px; }
     .academy-bg-logo { font-size: 28vw; top: auto; bottom: 5%; transform: none; right: 50%; transform: translateX(50%); opacity: 0.03;}
}
@media (max-width: 480px) {
    .academy-image { height: 280px; }
    .academy-content { padding: 40px 15px; }
    .academy-title-vertical h2 { font-size: clamp(1.5rem, 5vw, 1.8rem); }
    .academy-list li { font-size: 0.95rem; }
    .academy-bg-logo { font-size: 35vw; bottom: 3%; opacity: 0.02; }
}


/* ======================= Franchise Info Section Styles (Revised Grid) ======================= */

.franchise-info-section {
    padding: 100px 0;
    position: relative;
    background-color: #1f1f1f;
    color: var(--text-color);
    overflow: hidden;
}

.franchise-info-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background-image: url('images/sections/franchise-cups-bg.jpg'); /* Placeholder */
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}
.franchise-info-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(31, 31, 31, 0) 0%, rgba(31, 31, 31, 0.8) 70%, #1f1f1f 100%);
}


.franchise-info-container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.franchise-info-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 70px;
    padding-bottom: 20px;
}

.franchise-info-titles h2 {
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--text-muted);
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.franchise-info-titles h3 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    font-family: serif;
}
.franchise-info-titles h3 sup {
    font-size: 0.35em;
    font-weight: 500;
    opacity: 0.8;
    vertical-align: super;
    margin-left: 2px;
}

.franchise-logo-small {
    font-family: serif;
    color: #c0a062;
    text-align: right;
    line-height: 1.1;
    padding-top: 5px;
}
.franchise-logo-small span { display: block; }
.franchise-logo-small span:first-child {
    font-size: 1.8rem;
    font-weight: 700;
}
.franchise-logo-small .f-logo-sub {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 3px;
    opacity: 0.8;
    margin-top: 2px;
    position: relative;
    display: inline-block;
    padding: 0 5px;
}
.franchise-logo-small .f-logo-sub::before,
.franchise-logo-small .f-logo-sub::after {
    content: '';
    position: absolute;
    top: 50%;
    height: 1px;
    width: 20px;
    background-color: #c0a062;
    opacity: 0.7;
}
.franchise-logo-small .f-logo-sub::before { left: -15px; }
.franchise-logo-small .f-logo-sub::after { right: -15px; }

.franchise-logo-small .f-logo-since {
    font-size: 0.65rem;
    font-weight: 400;
    opacity: 0.7;
    margin-top: 5px;
}

.franchise-features-grid.revised {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 50px;
    max-width: 900px;
    margin: 0 auto;
}

.features-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item-revised {
    display: flex;
    align-items: center;
    gap: 20px;
}

.feature-icon-revised {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background-color: rgba(60, 60, 60, 0.4);
    border: 1px solid rgba(192, 160, 98, 0.5);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.feature-icon-revised img {
    display: block;
    max-width: 60%;
    max-height: 60%;
    object-fit: contain;
    filter: brightness(0.9) contrast(1.1);
    transition: filter 0.3s ease;
}

.feature-text-revised {
    font-size: 1.05rem;
    line-height: 1.5;
    color: #e0e0e0;
    font-weight: 500;
}

.feature-item-revised:hover .feature-icon-revised {
    background-color: rgba(192, 160, 98, 0.15);
    border-color: rgba(192, 160, 98, 0.9);
}
.feature-item-revised:hover .feature-icon-revised img {
    filter: brightness(1.5);
}


@media (max-width: 992px) {
    /* Styles from previous .franchise-features-grid for tablet can be merged if structure is similar */
}

@media (max-width: 768px) {
     .franchise-info-section { padding: 60px 0; } /* Adjusted padding */
     .franchise-info-header {
         flex-direction: column;
         align-items: center;
         text-align: center;
         margin-bottom: 40px; /* Adjusted margin */
     }
     .franchise-info-titles { margin-bottom: 25px; }
     .franchise-logo-small { text-align: center; }

     .franchise-features-grid.revised {
        grid-template-columns: 1fr; /* Single column */
        gap: 20px; /* Reduced gap */
        max-width: 450px;
    }
    .features-column {
        gap: 20px; /* Match grid gap */
    }
     .feature-item-revised {
         gap: 15px;
         padding: 10px 0; /* Add some vertical padding if items look cramped */
     }
     .feature-icon-revised {
         width: 50px;
         height: 50px;
     }
     .feature-text-revised {
         font-size: 1rem;
         text-align: left; /* Ensure text in item is left aligned */
     }

     .franchise-info-bg { height: 40%; opacity: 0.2; }
}

@media (max-width: 480px) {
     .franchise-info-section { padding: 50px 0; }
     .franchise-features-grid.revised {
         max-width: 100%; /* Full width for very small screens */
         gap: 15px;
     }
     .feature-item-revised {
         gap: 12px;
     }
      .feature-icon-revised {
         width: 45px;
         height: 45px;
     }
     .feature-text-revised {
         font-size: 0.9rem;
     }
     .franchise-info-bg { height: 30%; opacity: 0.15; }
}

/* ======================= Investment Proposals Section Styles ======================= */

.investment-proposals-section {
    padding: 100px 0;
    background-color: #212121;
    color: #e0e0e0;
    position: relative;
    overflow: hidden;
}

.investment-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.investment-title-container {
    margin-bottom: 60px;
    text-align: left;
}

.investment-title-container h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.proposals-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}

.proposal-column {
    flex: 1;
    position: relative;
    padding-bottom: 80px;
    min-width: 0;
}

.proposal-content {
    height: 100%;
}

.proposal-column.proposal-aplus .proposal-content {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 40px;
}

.proposal-column h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.proposal-subtitle {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
}
.royalty-note {
    font-size: 0.6em;
    font-weight: 400;
    color: var(--text-muted);
    vertical-align: super;
    margin-left: 5px;
    white-space: nowrap;
}

.services-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.proposal-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.proposal-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}
.proposal-list li:last-child { margin-bottom: 0; }

.proposal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: #c0a062;
    border-radius: 50%;
}

.royalty-text {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 25px 0;
    text-align: left;
}

.profit-distribution {
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}
.distribution-header {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: right;
}
.distribution-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 5px 0;
}
.distribution-row span:first-child { opacity: 0.8; }
.distribution-row span:last-child { font-weight: 600; color: #ffffff; }

.proposal-number {
    position: absolute;
    bottom: -10px;
    font-size: clamp(6rem, 12vw, 9rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.07);
    line-height: 1;
    z-index: -1;
    user-select: none;
    pointer-events: none;
}
.proposal-raf .proposal-number { left: 0; }
.proposal-aplus .proposal-number { right: 0; }


@media (max-width: 768px) {
    .investment-proposals-section { padding: 60px 0; } /* Adjusted padding */
    .investment-title-container { text-align: center; margin-bottom: 40px; }
    .investment-title-container h2 { font-size: clamp(2rem, 6vw, 2.8rem); } /* Adjusted title size */

    .proposals-wrapper {
        flex-direction: column;
        gap: 40px; /* Spacing between stacked columns */
    }
    .proposal-column {
        padding-bottom: 70px; /* Adjusted padding for number */
    }
    .proposal-column.proposal-aplus .proposal-content {
        border-left: none;
        padding-left: 0;
    }
    .royalty-text { text-align: center; margin: 20px 0; }
    .proposal-subtitle { font-size: 1.3rem; }
    .proposal-number {
        font-size: clamp(4.5rem, 15vw, 6.5rem); /* Smaller numbers */
        bottom: 0;
        opacity: 0.05; /* More subtle */
    }
    .proposal-raf .proposal-number,
    .proposal-aplus .proposal-number {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
     }
}

@media (max-width: 480px) {
    .investment-proposals-section { padding: 50px 0; }
    .investment-container { padding: 0 15px; }
    .investment-title-container h2 { font-size: clamp(1.8rem, 7vw, 2.5rem); }
    .proposal-subtitle { font-size: 1.2rem; margin-bottom: 20px; }
    .services-title { font-size: 1.1rem; margin-bottom: 15px; }
    .proposal-list li { font-size: 0.9rem; margin-bottom: 10px; }
    .royalty-text { font-size: 0.95rem; }
    .distribution-header { font-size: 0.85rem; }
    .distribution-row { font-size: 0.85rem; }
    .proposal-number { font-size: clamp(4rem, 18vw, 6rem); bottom: 5px; }
}

/* ======================= Concept Section Styles ======================= */

.concept-section {
    padding: 100px 0;
    background: linear-gradient(105deg, #282828 55%, #4d3a2a 55%);
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.concept-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.concept-text-content {
    flex: 1 1 50%;
    max-width: 50%;
    padding-right: 30px;
}

.concept-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 40px;
    font-family: serif;
}
.concept-title sup {
    font-size: 0.4em;
    font-weight: 500;
    vertical-align: super;
    margin-left: 3px;
    opacity: 0.9;
}

.concept-text-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 25px;
    font-weight: 400;
}
.concept-text-content p:last-child {
    margin-bottom: 0;
}

.concept-image-container {
    flex: 1 1 45%;
    max-width: 45%;
}

.concept-image-container img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 992px) { /* Tablet and smaller */
    .concept-section {
        background: #282828; /* Single background color */
        padding: 60px 0; /* Adjusted padding */
    }
    .concept-container {
        flex-direction: column;
        gap: 30px; /* Adjusted gap */
        text-align: center;
    }
    .concept-text-content,
    .concept-image-container {
        max-width: 100%; /* Full width for stacked items */
        width: 100%;
        padding-right: 0;
    }
    .concept-image-container {
        order: -1; /* Image first */
        margin-bottom: 20px;
        max-width: 500px; /* Limit image width on tablet/mobile */
        margin-left: auto;
        margin-right: auto;
    }
     .concept-title { margin-bottom: 25px; font-size: clamp(2rem, 6vw, 2.8rem); }
     .concept-text-content p {
         text-align: left; /* Keep paragraphs left-aligned for readability */
         max-width: 600px;
         margin-left: auto;
         margin-right: auto;
         font-size: 1rem;
      }
}

@media (max-width: 480px) {
    .concept-section { padding: 50px 0; }
    .concept-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
    .concept-text-content p { font-size: 0.95rem; line-height: 1.7; }
    .concept-image-container { max-width: 100%; } /* Image can take full width on small mobile */
}


/* General mobile adjustments for .gis and .coontact */
.coontact{ /* Assuming this is a class for a contact section/text */
    text-align: center;
    /* Add more specific styles if needed, e.g., padding, font size for mobile */
}

.gis{
    font-size: 80px;
    color: #2ab34b;
}
.gistwo{
    color: rgb(255, 255, 255);
}

@media (max-width: 768px) {
    .gis {
        font-size: 50px; /* Reduced font size for .gis on mobile */
    }
    .coontact {
        padding: 40px 0; /* Example padding */
    }
}

@media (max-width: 480px) {
    .gis {
        font-size: 40px; /* Further reduce for very small screens */
    }
}

/* The stray .timeline-circle rule is likely an error or for a different context.
   The main timeline styles inside .steps-section are more specific and have been adapted.
.timeline-circle{
    font-size: 30px;
    border-radius: 20px;
    margin: 10px;
}
*/
/* --- Base Styles & Variables --- */
:root {
    --primary-color: #cc9659;
    --dark-bg: #1e1e1e;
    --alt-bg: #2a2a2a;
    --text-color: #fff9f3;
    --text-muted: #cccccc;
    --card-bg: #ffffff;
    --card-text: #1e1e1e;
    --border-color: #444444;
    --font-family: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Default, adjusted in media queries */
}

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

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    color: inherit;
}

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

h1, h2, h3 {
    line-height: 1.3;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    text-transform: uppercase;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 40px;
    text-align: center;
}

h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color); /* Ensuring h3 color consistency */
}

/* --- Buttons --- */
.button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-align: center;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.button-primary {
    background-color: var(--primary-color);
    color: var(--text-color);
    border-color: var(--primary-color);
}

.button-primary:hover {
    background-color: #dba366;
    border-color: #4d3a2a;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px #a67539;
}

.button-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.button:active {
    transform: scale(0.97) translateY(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}


/* --- Header --- */
.header {
    padding: 15px 0;
    background-color: var(--dark-bg);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: none;
}

.header.scrolled {
    background-color: rgba(30, 30, 30, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom-color: transparent;
}


.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px; /* Adjusted in mobile */
    font-weight: 900;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo-o {
    color: var(--primary-color);
    display: inline-block;
    font-weight: bold; /* Already bold by default for logo-o */
    transition: filter 0.3s ease, transform 0.3s ease;
}

.logo:hover .logo-o { /* Desktop hover effect */
    filter: brightness(1.2);
    transform: scale(1.1);
}

/* Desktop Nav Styles */
.nav ul {
    display: flex;
    gap: 35px; /* Adjusted in mobile */
}

.nav a {
    color: var(--text-muted);
    font-weight: 700;
    padding: 5px 0;
    position: relative;
    text-decoration: none;
    overflow: visible;
    transition: color 0.3s ease;
}

.nav a::after { /* Underline effect for desktop nav */
    content: '';
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 70%;
    height: 2.5px;
    background-color: var(--primary-color);
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1);
}

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

.nav a:hover::after,
.nav a.active::after {
    transform: translateX(-50%) scaleX(1);
}
/* End Desktop Nav Styles */

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle { /* Mobile only */
    display: none;
    width: 30px;
    height: 22px;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1001;
}

.menu-toggle span { /* Mobile only */
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}


/* --- Hero Section --- */
.hero {
    padding: 100px 0 80px 0;
    min-height: calc(90vh - 80px); /* Adjusted in mobile */
    display: flex;
    align-items: center;
    position: relative;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 60px; /* Adjusted in mobile */
}

.hero-content {
    flex: 1 1 50%; /* Layout for desktop */
}

.hero-content h1 {
    margin-bottom: 25px;
}

.hero-content .highlight {
    color: var(--primary-color);
    font-weight: 900; /* Keep for emphasis */
}
.hero-content .currency {
     font-weight: 700;
}

.hero-content p {
    font-size: 1.15rem; /* Adjusted in mobile */
    color: var(--text-muted);
    margin-bottom: 45px; /* Adjusted in mobile */
    max-width: 520px;
    line-height: 1.7;
}

.hero-images { /* Layout for desktop */
    flex: 1 1 45%;
}

.image-grid { /* Desktop Grid */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, minmax(140px, auto));
    gap: 15px;
    grid-template-areas:
        "img2 img1"
        "img2 img3"
        "img4 logo";
}

.image-grid > * {
    border-radius: 8px;
    overflow: hidden;
    background-color: #333; /* Fallback for images */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.3s ease; /* Hover effects */
}

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

.image-grid img:nth-of-type(1) { grid-area: img1; }
.image-grid img:nth-of-type(2) { grid-area: img2; }
.image-grid img:nth-of-type(3) { grid-area: img3; }
.image-grid img:nth-of-type(4) { grid-area: img4; }
.image-grid .logo-block { grid-area: logo; }

.logo-block {
    background-color: var(--card-bg);
    color: var(--card-text);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: clamp(1.8rem, 4vw, 2.4rem); /* Adjusted in mobile */
    font-weight: 900;
    text-align: center;
    line-height: 1.2;
    padding: 20px;
}
.logo-block .logo-o {
    color: var(--primary-color);
}

/* Hero Grid Hover - Desktop specific, subtle enough for mobile tap */
.image-grid > img:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    z-index: 2;
}
.image-grid > .logo-block:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* --- About Section --- */
.about-section {
    padding: 80px 0; /* Adjusted in mobile */
    background-color: var(--dark-bg);
    color: var(--text-color);
}

.about-title { /* Desktop alignment */
    text-align: left;
    margin-bottom: 50px;
    line-height: 1.2;
}

.about-content { /* Desktop layout */
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.about-column { /* Desktop layout */
    flex: 1;
}

.about-column-right { /* Desktop layout */
   display: flex;
   flex-direction: column;
   gap: 30px;
}

.about-intro {
    font-size: 1.1rem; /* Adjusted in mobile */
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 480px; /* Adjusted in mobile */
    line-height: 1.7;
}

/* Desktop specific positioning for images, reset on mobile */
.about-image {
    position: relative;
    bottom: 280px;
    width: 100%;
    transform: rotate(90deg);
}
.about-image-two {
    position: relative;
    bottom: 150px;
    width: 100%;
}
.image-hover-wrapper{ /* Also desktop specific positioning */
    position: relative;
    bottom: -70px;
}
/* End desktop specific positioning */


.about-text-block p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Generic Content Section Styling --- */
.content-section {
    padding: 80px 0; /* Adjusted in mobile */
    text-align: center;
}
.content-section h2 {
    margin-bottom: 20px;
}
.content-section p {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 30px auto;
    font-size: 1.1rem; /* Adjusted in mobile */
}

.alt-bg {
    background-color: var(--alt-bg);
}

/* --- Footer --- */
.footer {
    padding: 40px 0;
    margin-top: 80px; /* Consider reducing for mobile if space is tight */
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-top: 1px solid var(--border-color);
    background-color: var(--alt-bg);
}


/* --- Responsive Design --- */

/* Tablet */
@media (max-width: 992px) {
    html { scroll-padding-top: 70px; }

    .header { padding: 12px 0; }
    .logo { font-size: 26px; }
    .nav ul { gap: 25px; }

    .hero { padding: 80px 0 60px 0; min-height: auto;}
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-images {
        margin-top: 40px;
        width: 100%;
        max-width: 600px;
    }
     .image-grid {
        grid-template-rows: repeat(3, minmax(120px, auto));
    }

     .about-title {
        text-align: center;
     }
     .about-content { /* Stacked in 768px, here just reducing gap slightly */
        gap: 30px;
     }
     .about-intro {
         max-width: none;
     }
     /* Timeline Tablet Adjustments */
    .timeline { padding: 20px 0; }
    .timeline-circle { width: 70px; height: 70px; font-size: 1.6rem; border-width: 4px; }
    .timeline-content { width: 130px; }
    .timeline-description { font-size: 0.9rem; }

    /* Management Section Tablet */
    .management-main-content { flex-direction: column; align-items: center; gap: 40px; }
    .management-text-services, .management-benefits-refined { max-width: 85%; width: 100%; }
    .management-text-services { order: 1; text-align: center; }
    .management-content h1 { text-align: center; }
    .management-content p { margin-left: auto; margin-right: auto; }
    .management-benefits-refined { order: 2; margin-top: 20px; max-width: 700px; border-left-width: 5px; padding: 30px 25px; }

    /* Award Section Tablet */
    .award-section { padding: 80px 0; min-height: auto; }
    .award-container { flex-direction: column; text-align: center; }
    .award-text { max-width: 80%; padding-right: 0; text-align: center; margin-bottom: 40px; order: 2; }
    .award-title { font-size: clamp(2rem, 6vw, 3rem); }
    .award-source { font-size: 0.9rem; }
    .award-logo-container { padding-left: 0; margin-bottom: 40px; order: 1; }
    .award-logo-circle { width: 240px; height: 240px; }
    .logo-name-raf { font-size: 3.8rem; margin-bottom: 10px; }
    .logo-a-with-cup::before { font-size: 0.3em; bottom: 0.1em; }
    .logo-subtext-coffee { font-size: 0.9rem; letter-spacing: 3px; }
    .logo-subtext-coffee::before, .logo-subtext-coffee::after { margin: 0 10px; }
    .award-copyright { position: relative; bottom: auto; right: auto; text-align: center; margin-top: 30px; }

    /* Support Section Tablet */
    .support-section { padding: 80px 0; }
    .support-container { max-width: 700px; }
    .support-section::after { font-size: 22vw; }

    /* Formats Section Tablet */
    .formats-container { padding: 0 30px; }
    .formats-slider { max-width: 600px; }
    .formats-button-prev { left: -50px; }
    .formats-button-next { right: -50px; }

    /* Success Factors Tablet */
    .success-factors-container { gap: 40px; }
    .success-title-container .title-highlight { font-size: clamp(4rem, 9vw, 6rem); }
    .success-title-container .title-normal { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
    .factor-number { font-size: clamp(3rem, 5vw, 4rem); margin-right: 20px; }
    .factor-text { font-size: 1rem; }
    .success-factors-bg-logo { font-size: 30vw; }


    /* Success Factors Tablet */
    .success-two-container { gap: 40px; }
    .success-title-container .title-highlight { font-size: clamp(4rem, 9vw, 6rem); }
    .success-title-container .title-normal { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
    .factor-number { font-size: clamp(3rem, 5vw, 4rem); margin-right: 20px; }
    .factor-text { font-size: 1rem; }
    .success-two-bg-logo { font-size: 30vw; }

    /* Academy Section Tablet */
    .academy-content { padding: 60px 4% 60px 60px; }
    .academy-list-container { margin-left: 25px; }
    .academy-title-vertical h2 { font-size: clamp(1.6rem, 2.5vw, 2rem); }
    .academy-bg-logo { font-size: 20vw; right: 3%; }

    /* Franchise Info Tablet */
    .franchise-features-grid.revised { grid-template-columns: repeat(2, 1fr); /* Still 2 columns, maybe adjust gap or item width if needed */ }

    /* Concept Section Tablet */
    .concept-section { background: #282828; padding: 60px 0; }
    .concept-container { flex-direction: column; gap: 30px; text-align: center; }
    .concept-text-content, .concept-image-container { max-width: 100%; width: 100%; padding-right: 0; }
    .concept-image-container { order: -1; margin-bottom: 20px; max-width: 500px; margin-left: auto; margin-right: auto; }
    .concept-title { margin-bottom: 25px; font-size: clamp(2rem, 6vw, 2.8rem); }
    .concept-text-content p { text-align: left; max-width: 600px; margin-left: auto; margin-right: auto; font-size: 1rem; }

}

/* Mobile (Smartphones) */
@media (max-width: 768px) {
    html { scroll-padding-top: 65px; }
    h1 { font-size: clamp(2rem, 7vw, 2.8rem); }
    h2 { font-size: clamp(1.6rem, 6vw, 2rem); }

    .header { padding: 10px 0; }
    .logo { font-size: 24px; }

    /* Mobile Navigation */
    .nav {
        display: none; /* Hidden by default, shown by JS */
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background-color: rgba(42, 42, 42, 0.98);
        flex-direction: column;
        padding: 0;
        border-top: 1px solid var(--border-color);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        max-height: calc(100vh - 65px); /* Adjust 65px if header height changes */
        overflow-y: auto;
    }
    .nav.active { display: flex; }
    .nav ul { flex-direction: column; align-items: center; gap: 0; width: 100%; }
    .nav li { width: 100%; text-align: center; }
    .nav a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
        font-size: 1.1rem;
        overflow: hidden;
        color: var(--text-muted);
        font-weight: 700;
        text-decoration: none;
        transition: background-color 0.3s ease, color 0.3s ease;
    }
    .nav li:last-child a { border-bottom: none; }
    .nav a::after { display: none; } /* Remove desktop underline effect */
    .nav a:hover, .nav a:active { /* Combined for tap feedback */
        background-color: rgba(204, 150, 89, 0.2); /* var(--primary-color) with alpha */
        color: var(--primary-color);
    }
    /* End Mobile Navigation */

    .menu-toggle { display: flex; }
    .menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: translateY(-11px) rotate(-45deg); }
    .menu-toggle.active span { background-color: var(--primary-color); }

    .hero { padding: 60px 0; min-height: auto; } /* Adjusted hero padding */
    .hero-container { flex-direction: column; gap: 30px; text-align: center; }
    .hero-content p { font-size: 1.05rem; margin-bottom: 35px; max-width: 100%; }
    .button-large { padding: 13px 35px; font-size: 1rem;}

    .image-grid { /* Hero image grid mobile */
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas: "img1" "img2" "img3" "img4" "logo";
        max-width: 400px; /* Or 100% if preferred */
        margin: 0 auto;
        gap: 12px;
    }
    .image-grid > * { height: 250px; } /* Adjust height as needed */
    .image-grid .logo-block { height: 150px; font-size: 1.8rem; }

    /* About Section Mobile */
    .about-section, .content-section { padding: 60px 0; }
    .about-title { margin-bottom: 30px; text-align: center; }
    .about-content {
        position: static; /* Reset desktop positioning */
        bottom: auto;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .about-column { width: 100%; max-width: 500px; }
    .about-column-left { order: 1; text-align: center; }
    .about-intro { margin-left: auto; margin-right: auto; max-width: none; font-size: 1rem; }
    .about-column-right { order: 2; gap: 30px; align-items: center; }
    .about-text-block { text-align: center; }
    /* Reset problematic image positioning from desktop for About Section */
    .image-hover-wrapper, .about-image, .about-image-two {
        position: static;
        bottom: auto;
        transform: none;
        width: 100%;
        margin-bottom: 20px;
    }
    .about-image:last-child, .about-image-two:last-child, .image-hover-wrapper:last-child {
        margin-bottom: 0;
    }

    /* Steps Section (Timeline) Mobile */
    .steps-section { padding: 60px 0; }
    .steps-subtitle { margin-bottom: 50px; }
    .timeline {
        flex-direction: column; align-items: center; padding: 0 20px;
        max-width: 500px; margin: 0 auto;
    }
    .timeline::before { top: 10px; bottom: 10px; left: 50%; width: 3px; height: calc(100% - 20px); transform: translateX(-50%); }
    .timeline-line-progress { top: 10px; left: 50%; width: 3px; height: calc(100% - 20px); transform: translateX(-50%) scaleY(0); transform-origin: center top; }
    .timeline.aos-animate .timeline-line-progress { transform: translateX(-50%) scaleY(1); }
    .timeline-step { flex: none; width: 100%; max-width: 350px; padding: 30px 0; justify-content: flex-start; text-align: left; }
    .timeline-step:nth-child(odd) { padding-left: calc(50% + 45px); /* Circle radius (30px for 60px dia) + gap */ }
    .timeline-step:nth-child(even) { justify-content: flex-end; text-align: right; padding-right: calc(50% + 45px); padding-left: 0; }
    .timeline-content { align-items: flex-start; width: auto; position: relative; text-align: inherit; }
    .timeline-step:nth-child(even) .timeline-content { align-items: flex-end; }
    .timeline-circle { width: 60px; height: 60px; font-size: 1.4rem; border-width: 4px; position: absolute; top: 0; }
    .timeline-step:nth-child(odd) .timeline-circle { left: -45px; transform: translateX(-50%); }
    .timeline-step:nth-child(even) .timeline-circle { right: -45px; left: auto; transform: translateX(50%); }
    .timeline-content:hover .timeline-circle { /* Simplify or remove hover for mobile */ transform: scale(1) translateX(-50%); box-shadow: 0 0 15px rgba(192, 160, 98, 0.3); }
    .timeline-step:nth-child(even) .timeline-content:hover .timeline-circle { transform: scale(1) translateX(50%); }
    .timeline-step.step-even .timeline-content { flex-direction: column; }
    .timeline-step.step-even .timeline-description { margin-bottom: 0; margin-top: 15px; }
    .timeline-description { margin-top: 15px; max-width: 200px; font-size: 0.9rem; }

    /* Management Section Mobile */
    .management-section.refined { padding: 80px 0 50px 0; background-position: 70% bottom; }
    .management-text-services, .management-benefits-refined { max-width: 100%; }
    .management-content h1 { font-size: clamp(2.2rem, 7vw, 3rem); text-align: center; }
    .management-content p { font-size: 1.05rem; margin-left:auto; margin-right:auto; }
    .management-services { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
    .service-button-refined { padding: 12px 15px; font-size: 0.85rem; }
    .management-benefits-refined { padding: 25px 20px; border-left-width: 3px; border-radius: 8px; }
    .management-benefits-refined li { font-size: 1rem; padding: 8px 0; }
    .management-benefits-refined li::before { margin-right: 10px; width: 5px; height: 5px; }
    .management-footer-elements { flex-direction: column; align-items: center; gap: 15px; padding-top: 40px; border-top: none; }
    .copyright { text-align: center; }

    /* Startup Package Mobile */
    .startup-package-section { padding: 60px 0; }
    .startup-container { flex-direction: column; text-align: center; gap: 30px; }
    .startup-title-container { padding-right: 0; text-align: center; width: 100%; margin-bottom: 10px; }
    .startup-title-container h2 { text-align: center; white-space: normal; font-size: clamp(2rem, 6vw, 2.8rem); }
    .startup-list-container { max-width: 100%; width: 100%; text-align: left; padding-left: 20px; }
    .startup-list-item { font-size: 1rem; padding-left: 20px; margin-bottom: 15px; }
    .startup-list-item::before { width: 7px; height: 7px; top: 0.6em; }

    /* Support Section Mobile */
    .support-section { padding: 60px 0; }
    .support-title-container { margin-bottom: 40px; text-align: center; }
    .support-title-container h2 { font-size: clamp(1.8rem, 6vw, 2.5rem); text-align: center; }
    .support-list { columns: 1; padding: 0 10px; }
    .support-list li { font-size: 1rem; padding-left: 25px; margin-bottom: 18px; text-align: left; }
    .support-list li::before { top: 5px; }
    .support-section::after { font-size: 30vw; right: -5%; opacity: 0.03; }

    /* Formats Section Mobile */
    .formats-section { padding: 60px 0; }
    .formats-container { padding: 0 15px; }
    .formats-slider { overflow: hidden; padding: 10px 0 40px 0; max-width: none; }
    .format-card { flex-direction: column; }
    .format-image-container { max-width: 100%; height: 220px; }
    .format-details { padding: 20px; }
    .format-details h3 { font-size: 1.3rem; }
    .formats-button-prev, .formats-button-next { display: none; }
    .formats-pagination.swiper-pagination-bullets { bottom: 5px; }

    /* Success Factors Mobile */
    .success-factors-section { padding: 80px 0; }
    .success-factors-container { flex-direction: column; text-align: center; gap: 40px; }
    .success-title-container { text-align: center; flex-basis: auto; margin-bottom: 20px; }
    .success-title-container h2 { text-align: center; }
    .factors-list-container { max-width: 100%; width: 100%; }
    .factor-item { text-align: left; margin-bottom: 30px; flex-direction: row; align-items: center; }
    .factor-number { top: 0; font-size: clamp(2.5rem, 8vw, 3.5rem); }
    .factor-text { font-size: 0.95rem; }
    .success-factors-bg-logo { font-size: 40vw; opacity: 0.025; }

    /* Assortment Section Mobile */
    .assortment-section { padding: 60px 0; }
    .assortment-container { flex-direction: column; text-align: center; gap: 30px; }
    .assortment-content, .assortment-image { flex-basis: auto; max-width: 100%; width: 100%; }
    .assortment-image { order: -1; margin-bottom: 20px; }
    .assortment-list { display: inline-block; text-align: left; padding: 0 10px; }
    .assortment-title { margin-bottom: 25px; font-size: clamp(2rem, 6vw, 2.8rem); }
    .assortment-list li { font-size: 1rem; }

    /* Academy Section Mobile */
    .academy-container { flex-direction: column; }
    .academy-image, .academy-content { flex-basis: auto; max-width: 100%; }
    .academy-image { height: 350px; order: -1; }
    .academy-image::after { display: none; }
    .academy-content { padding: 50px 20px; text-align: center; }
    .academy-title-vertical { position: static; transform: none; writing-mode: horizontal-tb; text-orientation: mixed; white-space: normal; margin-bottom: 30px; text-align: center; }
    .academy-title-vertical h2 sup { display: inline; }
    .academy-list-container { margin-left: 0; max-width: 100%; padding: 0 10px; text-align: left; }
    .academy-list li { font-size: 1rem; margin-bottom: 20px; }
    .academy-bg-logo { font-size: 28vw; top: auto; bottom: 5%; transform: translateX(50%); right:50%; opacity: 0.03;}


    /* Franchise Info Mobile */
    .franchise-info-section { padding: 60px 0; }
    .franchise-info-header { flex-direction: column; align-items: center; text-align: center; margin-bottom: 40px; }
    .franchise-info-titles { margin-bottom: 25px; }
    .franchise-logo-small { text-align: center; }
    .franchise-features-grid.revised { grid-template-columns: 1fr; gap: 20px; max-width: 450px; }
    .features-column { gap: 20px; }
    .feature-item-revised { gap: 15px; padding: 10px 0; }
    .feature-icon-revised { width: 50px; height: 50px; }
    .feature-text-revised { font-size: 1rem; text-align: left; }
    .franchise-info-bg { height: 40%; opacity: 0.2; }

    /* Investment Proposals Mobile */
    .investment-proposals-section { padding: 60px 0; }
    .investment-title-container { text-align: center; margin-bottom: 40px; }
    .investment-title-container h2 { font-size: clamp(2rem, 6vw, 2.8rem); }
    .proposals-wrapper { flex-direction: column; gap: 40px; }
    .proposal-column { padding-bottom: 70px; }
    .proposal-column.proposal-aplus .proposal-content { border-left: none; padding-left: 0; }
    .royalty-text { text-align: center; margin: 20px 0; }
    .proposal-subtitle { font-size: 1.3rem; }
    .proposal-number { font-size: clamp(4.5rem, 15vw, 6.5rem); bottom: 0; opacity: 0.05; }
    .proposal-raf .proposal-number, .proposal-aplus .proposal-number { left: 50%; transform: translateX(-50%); right: auto; }

    /* Concept Section Mobile handled in 992px block, further refined if needed below */

    /* GIS and Contact Mobile */
    .gis { font-size: 50px; }
    .coontact { padding: 40px 0; }
}


@media (max-width: 480px) { /* Specific fine-tuning for very small screens */
    html { scroll-padding-top: 60px; } /* Further adjust if header is smaller */

    .hero-content p { font-size: 1rem; }
    .button-large { padding: 12px 30px; font-size: 0.95rem; }
    .image-grid > * { height: 200px; }
    .image-grid .logo-block { height: 120px; font-size: 1.6rem; }

    .about-intro { font-size: 0.95rem; }

    /* Management Section Small Mobile */
    .management-section.refined { padding: 60px 0 40px 0; }
    .management-services { grid-template-columns: 1fr; }
    .management-benefits-refined li { font-size: 0.95rem; }
    .service-button-refined { font-size: 0.9rem; padding: 12px 20px; }

    /* Award Section Small Mobile */
    .award-section { padding: 60px 0; }
    .award-text { max-width: 100%; }
    .award-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
    .award-source { font-size: 0.85rem; }
    .award-logo-circle { width: 200px; height: 200px; }
    .logo-name-raf { font-size: 3rem; }
    .logo-subtext-coffee { font-size: 0.8rem; letter-spacing: 2px; }

    /* Startup Package Small Mobile */
    .startup-package-section { padding: 50px 0; }
    .startup-title-container h2 { font-size: clamp(1.8rem, 7vw, 2.2rem); }
    .startup-list-item { font-size: 0.9rem; }
    .startup-list-container { padding-left: 15px; }

    /* Support Section Small Mobile */
    .support-section { padding: 50px 0; }
    .support-list li { font-size: 0.9rem; }
    .support-section::after { font-size: 35vw; opacity: 0.02; }

    /* Formats Section Small Mobile */
    .format-image-container { height: 180px; }
    .format-details { padding: 15px; }
    .format-details h3 { font-size: 1.2rem; }
    .luxe-badge { font-size: 0.75rem; padding: 2px 6px; }
    .format-investment, .format-metrics { font-size: 0.9rem; }

    /* Success Factors Small Mobile */
    .success-factors-section { padding: 60px 0; }
    .success-title-container .title-highlight { font-size: clamp(3rem, 15vw, 4.5rem); }
    .success-title-container .title-normal { font-size: clamp(1.5rem, 5vw, 2rem); }
    .factor-number { font-size: clamp(2.2rem, 10vw, 3rem); margin-right: 15px; }
    .factor-text { font-size: 0.9rem; }
    .success-factors-bg-logo { font-size: 50vw; opacity: 0.02;}

    /* Assortment Small Mobile */
    .assortment-section { padding: 50px 0; }
    .assortment-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
    .assortment-list li { font-size: 0.95rem; padding-left: 25px; }
    .assortment-list li::before { font-size: 1.1em; top: 4px; }

    /* Academy Section Small Mobile */
    .academy-image { height: 280px; }
    .academy-content { padding: 40px 15px; }
    .academy-title-vertical h2 { font-size: clamp(1.5rem, 5vw, 1.8rem); }
    .academy-list li { font-size: 0.95rem; }
    .academy-bg-logo { font-size: 35vw; bottom: 3%; opacity: 0.02; }

    /* Franchise Info Small Mobile */
    .franchise-info-section { padding: 50px 0; }
    .franchise-features-grid.revised { max-width: 100%; gap: 15px; }
    .feature-item-revised { gap: 12px; }
    .feature-icon-revised { width: 45px; height: 45px; }
    .feature-text-revised { font-size: 0.9rem; }
    .franchise-info-bg { height: 30%; opacity: 0.15; }

    /* Investment Propsals Small Mobile */
    .investment-proposals-section { padding: 50px 0; }
    .investment-container { padding: 0 15px; }
    .investment-title-container h2 { font-size: clamp(1.8rem, 7vw, 2.5rem); }
    .proposal-subtitle { font-size: 1.2rem; margin-bottom: 20px; }
    .services-title { font-size: 1.1rem; margin-bottom: 15px; }
    .proposal-list li { font-size: 0.9rem; margin-bottom: 10px; }
    .royalty-text { font-size: 0.95rem; }
    .distribution-header { font-size: 0.85rem; }
    .distribution-row { font-size: 0.85rem; }
    .proposal-number { font-size: clamp(4rem, 18vw, 6rem); bottom: 5px; }

    /* Concept Section Small Mobile */
    .concept-section { padding: 50px 0; }
    .concept-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
    .concept-text-content p { font-size: 0.95rem; line-height: 1.7; }
    .concept-image-container { max-width: 100%; }

    /* GIS and Contact Small Mobile */
    .gis { font-size: 40px; }
}

/* General classes - ensure they don't conflict or are specifically styled for context */
.gis{
    font-size: 80px; /* Base size, overridden in media queries */
    color: #2ab34b;
}
.gistwo{
    color: rgb(255, 255, 255);
}
.coontact{ /* This class name seems like it might be a typo for "contact" */
    text-align: center;
}