/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
   :root {
    --primary-color: #036b6f; /* Teal */
    --accent-color: #ff5200; /* Orange */
    --bg-light: #f6f7f9;
    --text-main: #111827;
    --text-muted: #6b7280;
    --card-bg: #ffffff;
    --card-dark: #000000;
    --border-color: #e5e7eb;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
    --radius-full: 9999px;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.section-label .dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.section-label.white {
    color: #a1a1aa;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    transition: opacity 0.2s;
}

.main-nav a:hover {
    opacity: 0.7;
}

.badge-new {
    background-color: var(--accent-color);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
    vertical-align: middle;
}

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

.icon-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    transition: background 0.2s;
}

.icon-btn:hover {
    background: var(--bg-light);
}

.btn-quote {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-quote:hover {
    background: var(--bg-light);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    padding-top: 20px; /* Offset for floating header */
    padding-bottom: 80px;
}

.hero-card {
    position: relative;
    background-color: var(--primary-color);
    border-radius: 32px;
    min-height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 60px 60px;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--primary-color) 0%, transparent 100%);
    z-index: 1;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 500px;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 24px;
}

.hero-subtitle {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.6;
}

.icon-star {
    color: var(--accent-color);
    font-size: 18px;
}

.hero-big-text {
    position: absolute;
    bottom: -20px;
    left: 40px;
    font-family: var(--font-heading);
    font-size: 180px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
    z-index: 2;
    letter-spacing: -0.04em;
    pointer-events: none;
}

.hero-big-text span {
    font-weight: 400;
}

/* ==========================================================================
   Benefits Section
   ========================================================================== */
.benefits-section {
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.benefits-left {
    padding-right: 40px;
}

.benefits-left h2 {
    font-size: 48px;
    margin-bottom: 32px;
}

.benefits-features {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--border-color);
}

.category-list {
    display: flex;
    flex-direction: column;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
    font-size: 16px;
    transition: color 0.2s;
}

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

.category-item:hover {
    color: var(--accent-color);
}

.category-item .arrow {
    color: var(--text-muted);
    font-size: 20px;
    font-weight: 400;
}

.benefits-right {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.est-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-light);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-main);
    align-self: flex-start;
    margin-bottom: 24px;
}

.est-badge .icon-asterisk {
    color: var(--accent-color);
}

.benefits-right-content {
    display: flex;
    gap: 32px;
    align-items: center;
    margin-top: auto;
}

.benefits-right-content .text-content p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 16px;
}

.benefits-right-content .text-content h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--card-dark);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-dark:hover {
    background: #333;
}

.benefits-right-content .image-card {
    position: relative;
    width: 240px;
    height: 320px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.benefits-right-content .image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    background: white;
    border-radius: var(--radius-full);
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 6px;
}

.floating-badge.top-rated {
    top: 16px;
    right: 16px;
}

.floating-badge.top-rated .star {
    color: #3b82f6; /* Blue star */
}

.floating-badge.rating {
    bottom: 16px;
    left: 16px;
    border-radius: 12px;
    padding: 12px;
}

.floating-badge.rating .num {
    font-size: 20px;
}

.floating-badge.rating .text {
    font-size: 9px;
    color: var(--text-muted);
    line-height: 1.2;
}

/* ==========================================================================
   Experience Section
   ========================================================================== */
.experience-section {
    padding: 80px 0;
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.experience-header .left-col .perks-badges {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.experience-header .left-col .perks-badges .badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid var(--border-color);
}

.experience-header .left-col h2 {
    font-size: 48px;
}

.experience-header .right-col {
    text-align: right;
}

.experience-header .right-col p {
    color: var(--text-muted);
    font-size: 16px;
}

.experience-grid {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    gap: 24px;
}

.carousel-indicator {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 24px;
}

.carousel-indicator .number {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
}

.carousel-indicator .number .total {
    font-size: 24px;
    color: var(--text-muted);
}

.carousel-indicator .text {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 16px;
}

.carousel-nav {
    display: flex;
    gap: 12px;
    margin-top: 40px;
}

.carousel-nav .nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: white;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.2s;
}

.carousel-nav .nav-btn.next {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.dark-card {
    background: var(--card-dark);
    color: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dark-card h3 {
    font-size: 32px;
    line-height: 1.3;
}

.dark-card .card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.live-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #a1a1aa;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #10b981; /* Green */
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

.btn-browse {
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-browse:hover {
    background: rgba(255,255,255,0.2);
}

.experience-grid .image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-badge .dot {
    width: 6px;
    height: 6px;
    background: #eab308; /* Yellow */
    border-radius: 50%;
}

.card-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 32px 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

.card-title h3 {
    font-size: 24px;
}

/* ==========================================================================
   How It Works Section
   ========================================================================== */
.how-it-works-section {
    padding: 80px 0;
}

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

.hiw-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hiw-image > img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.package-card {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: white;
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: calc(100% - 80px);
}

.package-card h4 {
    font-size: 14px;
    color: var(--text-muted);
}

.package-card p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.steps-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.step-item span:last-child {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
}

.step-item.current span:last-child {
    color: var(--accent-color);
}

.step-line {
    flex-grow: 1;
    height: 2px;
    background: var(--border-color);
    margin: 0 12px;
    position: relative;
    top: -10px;
}

.hiw-content {
    padding-left: 20px;
}

.hiw-content h2 {
    font-size: 48px;
    margin-bottom: 40px;
}

.steps-icons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.icon-circle.orange {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.hiw-desc p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 300px;
}

.hiw-action {
    display: flex;
    align-items: center;
    gap: 40px;
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-text {
    font-size: 14px;
    font-weight: 600;
}

.btn-orange-arrow {
    width: 48px;
    height: 48px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: transform 0.2s;
}

.btn-orange-arrow:hover {
    transform: scale(1.05);
}

.help-card {
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.help-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.help-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.help-card h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.help-card p {
    font-size: 12px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.help-card .badge {
    background: white;
    color: var(--text-main);
    font-size: 9px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: var(--radius-full);
}

/* ==========================================================================
   Packages Section
   ========================================================================== */
.packages-section {
    padding: 80px 0;
}

.packages-card {
    background: var(--card-dark);
    border-radius: var(--radius-lg);
    padding: 80px 60px;
    color: white;
}

.packages-header h2 {
    font-size: 40px;
    margin-bottom: 40px;
}

.package-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-item:last-child {
    border-bottom: none;
}

.package-item .package-info {
    flex: 1;
}

.package-item h3 {
    font-size: 20px;
    font-weight: 500;
}

.package-item .price {
    display: none;
}

.package-item .package-details {
    flex: 1;
    font-size: 14px;
    color: #a1a1aa;
}

.package-item .package-arrow .arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.package-item .hover-image {
    position: absolute;
    right: 15%;
    top: -20px;
    width: 280px;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.package-item .hover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.package-item.active {
    background: var(--accent-color);
    margin: 10px -40px;
    padding: 32px 40px;
    border-radius: var(--radius-md);
    border-bottom: none;
}

.package-item.active h3 {
    font-weight: 600;
    font-size: 24px;
}

.package-item.active .price {
    display: block;
    font-size: 14px;
    margin-top: 8px;
}

.package-item.active .package-details {
    display: none; /* In active state, details are shown differently or hidden based on design. Let's match design closely */
}

.package-item.active .package-arrow .arrow-btn {
    background: white;
    color: var(--accent-color);
    border-color: white;
}

.package-item.active .hover-image {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
    padding: 80px 0;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.testimonials-header h2 {
    font-size: 40px;
}

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

.testimonials-header .badge {
    background: white;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--border-color);
}

.testimonials-header .link {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.review-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.quote-icon {
    font-size: 24px;
    color: var(--accent-color);
    margin-bottom: 24px;
}

.review-card blockquote {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 40px;
}

.review-card .rating {
    margin-bottom: 32px;
}

.review-card .stars {
    color: var(--accent-color);
    font-size: 18px;
}

.review-card .score {
    font-weight: 600;
    margin-left: 8px;
}

.reviewer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.reviewer h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.reviewer p {
    font-size: 13px;
    color: var(--text-muted);
}

.arrow-circle {
    width: 48px;
    height: 48px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.stats-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.stats-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-top {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    gap: 12px;
}

.overlay-top .badge {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(4px);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.overlay-top .badge.date {
    margin-left: auto;
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.overlay-bottom {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.stat h3 {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 8px;
}

.stat p {
    font-size: 13px;
    opacity: 0.9;
}

.arrow-btn.white {
    width: 48px;
    height: 48px;
    background: white;
    color: var(--text-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    padding: 40px 0 20px;
}

.footer-top-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.footer-cta-img {
    position: relative;
    width: 300px;
    height: 240px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.footer-cta-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    padding: 24px;
    display: flex;
    justify-content: space-between;
    color: white;
}

.cta-overlay h3 {
    font-size: 24px;
}

.cta-arrow {
    width: 32px;
    height: 32px;
    background: white;
    color: var(--text-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-cta-img .loc-tag {
    position: absolute;
    bottom: 24px;
    left: 24px;
    color: white;
    font-size: 11px;
    line-height: 1.4;
}

.footer-cta-content {
    flex: 1;
    position: relative;
}

.footer-cta-content h2 {
    font-size: 40px;
    margin-bottom: 32px;
    max-width: 400px;
}

.features-list {
    display: flex;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
}

.feature-item .icon-check {
    color: #10b981;
}

.orange-star {
    position: absolute;
    right: 0;
    bottom: 0;
    color: var(--accent-color);
}

.footer-contact-row {
    display: flex;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    font-size: 13px;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 24px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
    .benefits-grid, .experience-grid, .hiw-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .experience-grid {
        grid-template-columns: 1fr;
    }
    .footer-top-card {
        flex-direction: column;
    }
    .hero-content h1 {
        font-size: 40px;
    }
    .hero-big-text {
        font-size: 100px;
    }
}

/* ==========================================================================
   Preloader
   ========================================================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--card-bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}
.preloader-content {
    text-align: center;
}
.preloader-text {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
}
.preloader-text span {
    font-weight: 400;
}
.preloader-bar {
    width: 200px;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}
.preloader-progress {
    width: 0%;
    height: 100%;
    background: var(--accent-color);
    animation: loading 1.5s ease-out forwards;
}
.arrow-btn.white {
    width: 48px;
    height: 48px;
    background: white;
    color: var(--text-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    padding: 40px 0 20px;
}

.footer-top-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.footer-cta-img {
    position: relative;
    width: 300px;
    height: 240px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

.footer-cta-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    padding: 24px;
    display: flex;
    justify-content: space-between;
    color: white;
}

.cta-overlay h3 {
    font-size: 24px;
}

.cta-arrow {
    width: 32px;
    height: 32px;
    background: white;
    color: var(--text-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-cta-img .loc-tag {
    position: absolute;
    bottom: 24px;
    left: 24px;
    color: white;
    font-size: 11px;
    line-height: 1.4;
}

.footer-cta-content {
    flex: 1;
    position: relative;
}

.footer-cta-content h2 {
    font-size: 40px;
    margin-bottom: 32px;
    max-width: 400px;
}

.features-list {
    display: flex;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
}

.feature-item .icon-check {
    color: #10b981;
}

.orange-star {
    position: absolute;
    right: 0;
    bottom: 0;
    color: var(--accent-color);
}

.footer-contact-row {
    display: flex;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    font-size: 13px;
    color: var(--text-muted);
}

.footer-big-text {
    font-family: var(--font-heading);
    font-size: 14vw;
    font-weight: 700;
    text-align: center;
    line-height: 1;
    letter-spacing: -0.04em;
    margin: 40px 0;
    color: var(--text-main);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    font-size: 13px;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 24px;
}

/* ==========================================================================
   Editorial Split Section
   ========================================================================== */
.editorial-split-section {
    padding: 100px 0 80px;
    background: var(--bg-light);
}

.editorial-split-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
}

/* Text column */
.editorial-text-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.editorial-heading {
    font-size: 52px;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
    color: var(--text-main);
}

.editorial-heading-accent {
    color: var(--primary-color);
}

.editorial-divider {
    width: 56px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
    margin-bottom: 28px;
}

.editorial-body {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 440px;
}

.editorial-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--text-main);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    margin-top: 36px;
    width: fit-content;
    transition: background 0.2s, transform 0.2s;
}

.editorial-cta-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Photos column */
.editorial-photos-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.editorial-photos-top,
.editorial-photos-bottom {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.editorial-photo {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
}

.editorial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.editorial-photo:hover img {
    transform: scale(1.04);
}

/* Different photo sizes for asymmetry */
.editorial-photo--tall {
    width: 55%;
    height: 280px;
}

.editorial-photo--short {
    width: 45%;
    height: 220px;
    margin-top: 40px;
}

.editorial-photo--wide {
    width: 65%;
    height: 200px;
}

.editorial-photo-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 28px 20px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: white;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Stat card floated at bottom of photos col */
.editorial-stat-card {
    width: 35%;
    background: var(--primary-color);
    color: white;
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: flex-end;
    height: 200px;
}

.editorial-stat-number {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.editorial-stat-number span {
    font-size: 28px;
    color: rgba(255,255,255,0.7);
}

.editorial-stat-label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.editorial-stat-sub {
    font-size: 12px;
    opacity: 0.7;
}

/* ==========================================================================
   Furnish Moments Section
   ========================================================================== */
.furnish-section {
    padding: 100px 0;
    background: var(--card-bg);
}

/* Top: intro text + 4 photo category cards */
.furnish-top {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 90px;
}

.furnish-intro {
    display: flex;
    flex-direction: column;
}

.furnish-heading {
    font-size: 42px;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-main);
    margin-bottom: 20px;
}

.furnish-intro-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 28px;
}

.furnish-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--text-main);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
    transition: background 0.2s, transform 0.2s;
}

.furnish-explore-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.furnish-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: end;
}

.furnish-cat-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.furnish-cat-card:nth-child(odd) {
    height: 280px;
}

.furnish-cat-card:nth-child(even) {
    height: 240px;
}

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

.furnish-cat-card:hover img {
    transform: scale(1.06);
}

.furnish-cat-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 32px 16px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

.furnish-cat-name {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section divider */
.furnish-section-divider {
    width: 100%;
    height: 1px;
    background: var(--border-color);
    margin-bottom: 90px;
}

/* Bottom: Why Choose Us */
.furnish-bottom {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: center;
}

.furnish-why-heading {
    font-size: 46px;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-main);
    margin-bottom: 52px;
}

.furnish-features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.furnish-feature {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.furnish-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.furnish-feature-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    font-family: var(--font-heading);
}

.furnish-feature-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.furnish-why-right {
    /* right image col */
}

.furnish-why-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 420px;
}

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

.furnish-stat-overlay {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: white;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.furnish-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.furnish-stat-num {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1;
}

.furnish-stat-lbl {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ==========================================================================
   Products Showcase Section (Image 3)
   ========================================================================== */
.products-showcase-section {
    padding: 100px 0 0;
    background: var(--bg-light);
}

.products-showcase-header {
    margin-bottom: 48px;
}

.products-showcase-heading {
    font-size: 52px;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-main);
    line-height: 1.1;
}

.products-showcase-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 60px;
}

.psc-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    background: var(--card-bg);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s, transform 0.3s;
    height: 260px;
}

.psc-card:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}

.psc-card--featured {
    /* slightly taller */
    grid-row: span 1;
}

.psc-card-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

.psc-card:hover .psc-card-img img {
    transform: scale(1.06);
}

.psc-card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 14px 14px;
    background: linear-gradient(transparent, rgba(0,0,0,0.82));
    color: white;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* CTA Banner at bottom of products showcase */
.psc-cta-banner {
    background: var(--primary-color);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 52px 60px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.psc-cta-left {
    flex: 1.2;
}

.psc-cta-heading {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.psc-cta-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.25);
    flex-shrink: 0;
}

.psc-cta-center {
    flex: 1;
}

.psc-cta-text {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    max-width: 300px;
}

.psc-cta-right {
    flex-shrink: 0;
}

.psc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary-color);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}

.psc-cta-btn:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

.psc-cta-decor {
    position: absolute;
    right: 220px;
    bottom: -10px;
    pointer-events: none;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 992px) {
    .benefits-grid, .experience-grid, .hiw-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .experience-grid {
        grid-template-columns: 1fr;
    }
    .footer-top-card {
        flex-direction: column;
    }
    .hero-content h1 {
        font-size: 40px;
    }
    .hero-big-text {
        font-size: 100px;
    }
}

/* ==========================================================================
   Page Top Spacing (push content below fixed floating navbar on inner pages)
   ========================================================================== */
.ap-hero,
.pp-hero,
.ep-hero,
.gp-hero {
    padding-top: 110px;
}

/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */

/* ---- Hero ---- */
.ap-hero {
    background: white;
    overflow: hidden;
}

.ap-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 70px;
}

.ap-hero-heading {
    font-size: 52px;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-main);
    margin-bottom: 20px;
}

.ap-hero-divider {
    width: 48px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
    margin-bottom: 20px;
}

.ap-hero-sub {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 420px;
}

.ap-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--text-main);
    color: white;
    padding: 13px 28px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
}

.ap-hero-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.ap-hero-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 460px;
    position: relative;
}

.ap-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---- Sub-label (orange uppercase) ---- */
.ap-sub-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    margin-bottom: 16px;
}

/* ---- Journey Section ---- */
.ap-journey {
    padding: 90px 0;
    background: var(--bg-light);
}

.ap-journey-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.ap-journey-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 500px;
}

.ap-journey-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ap-journey-img-wrap:hover img {
    transform: scale(1.04);
}

.ap-journey-heading {
    font-size: 42px;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-main);
    margin-bottom: 24px;
}

.ap-journey-p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 18px;
}

.ap-stats-row {
    display: flex;
    gap: 32px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid var(--border-color);
}

.ap-stat {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ap-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
    border: 1px solid var(--border-color);
}

.ap-stat-num {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1;
}

.ap-stat-lbl {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ---- Strength & Vision Section ---- */
.ap-sv-section {
    background: white;
    overflow: hidden;
}

.ap-sv-inner {
    display: grid;
    grid-template-columns: 240px 1fr 240px;
    min-height: 580px;
}

.ap-sv-img {
    overflow: hidden;
    position: relative;
}

.ap-sv-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ap-sv-img:hover img {
    transform: scale(1.04);
}

.ap-sv-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg-light);
}

.ap-sv-card {
    padding: 60px 50px;
    border-right: 1px solid var(--border-color);
}

.ap-sv-card:last-child {
    border-right: none;
}

.ap-sv-heading {
    font-size: 32px;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-main);
    margin-bottom: 18px;
}

.ap-sv-p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.ap-sv-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.ap-sv-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-main);
}

.ap-sv-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(3,107,111,0.12);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0;
}

.ap-sv-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--text-main);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.ap-sv-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* ---- How It Works Section (About Page) ---- */
.ap-hiw-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.ap-hiw-header {
    text-align: center;
    margin-bottom: 64px;
}

.ap-hiw-main-heading {
    font-size: 46px;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-main);
    margin-bottom: 16px;
}

.ap-hiw-sub {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
}

.ap-hiw-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
    margin-bottom: 60px;
}

.ap-hiw-step {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    transition: box-shadow 0.3s, transform 0.3s;
}

.ap-hiw-step:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

.ap-hiw-step--accent {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.ap-hiw-step--accent .ap-hiw-step-num,
.ap-hiw-step--accent .ap-hiw-step-title,
.ap-hiw-step--accent .ap-hiw-step-desc {
    color: white;
}

.ap-hiw-step--accent .ap-hiw-step-icon {
    background: rgba(255,255,255,0.15);
    color: white;
    border-color: rgba(255,255,255,0.2);
}

.ap-hiw-step-num {
    font-size: 42px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--border-color);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
}

.ap-hiw-step-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.ap-hiw-step-title {
    font-size: 18px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 12px;
    line-height: 1.2;
}

.ap-hiw-step-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
}

.ap-hiw-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    font-size: 22px;
    color: var(--text-muted);
    font-weight: 300;
}

.ap-hiw-cta {
    background: var(--primary-color);
    border-radius: var(--radius-lg);
    padding: 28px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.ap-hiw-cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
}

.ap-hiw-cta-left svg {
    flex-shrink: 0;
    opacity: 0.8;
}

.ap-hiw-cta-title {
    font-size: 17px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: white;
    margin-bottom: 4px;
}

.ap-hiw-cta-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    line-height: 1.4;
}

.ap-hiw-cta-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--primary-color);
    padding: 13px 28px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}

.ap-hiw-cta-btn:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

/* ==========================================================================
   PRODUCTS PAGE STYLES
   ========================================================================== */

.pp-hero {
    background: white;
}

.pp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 70px;
}

.pp-hero-heading {
    font-size: 52px;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-main);
    margin-bottom: 20px;
}

.pp-hero-p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 440px;
}

.pp-hero-badges {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pp-badge {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px 18px;
}

.pp-badge svg {
    flex-shrink: 0;
    color: var(--accent-color);
    margin-top: 2px;
}

.pp-badge-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 3px;
}

.pp-badge-sub {
    font-size: 12px;
    color: var(--text-muted);
}

.pp-hero-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 460px;
}

.pp-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Alternating product sections */
.pp-product {
    padding: 80px 0;
    background: white;
}

.pp-product:nth-child(even) {
    background: var(--bg-light);
}

.pp-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.pp-product-grid--reverse {
    direction: rtl;
}

.pp-product-grid--reverse > * {
    direction: ltr;
}

.pp-product-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 460px;
}

.pp-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.pp-product-img:hover img {
    transform: scale(1.04);
}

.pp-product-content {
    display: flex;
    flex-direction: column;
}

.pp-product-num {
    font-size: 64px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--border-color);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.05em;
}

.pp-product-name {
    font-size: 38px;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-main);
    margin-bottom: 18px;
}

.pp-product-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 460px;
}

.pp-product-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.pp-pf {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.pp-pf:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(3,107,111,0.1);
}

.pp-pf svg {
    flex-shrink: 0;
    color: var(--accent-color);
}

/* ==========================================================================
   EVENTS PAGE STYLES
   ========================================================================== */

.ep-hero {
    background: white;
    overflow: hidden;
}

.ep-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 70px;
}

.ep-hero-heading {
    font-size: 52px;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-main);
    margin-bottom: 18px;
}

.ep-hero-sub {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 440px;
}

.ep-hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ep-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
}

.ep-hero-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 440px;
}

.ep-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ep-events-section {
    padding: 40px 0 80px;
    background: white;
}

/* ==========================================================================
   Responsive — new pages
   ========================================================================== */
@media (max-width: 992px) {
    .ap-hero-inner,
    .ap-journey-grid,
    .pp-hero-grid,
    .pp-product-grid,
    .pp-product-grid--reverse,
    .ep-hero-inner {
        grid-template-columns: 1fr !important;
        direction: ltr !important;
    }

    .ap-sv-inner {
        grid-template-columns: 1fr !important;
    }

    .ap-sv-cards {
        grid-template-columns: 1fr !important;
    }

    .ap-hiw-steps {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .ap-hiw-step-arrow { display: none !important; }

    .ap-hiw-cta {
        flex-direction: column;
        text-align: center;
    }

    .ap-hiw-cta-left {
        flex-direction: column;
    }

    .ap-hero-heading,
    .pp-hero-heading,
    .ep-hero-heading,
    .gp-hero-heading,
    .ap-hiw-main-heading {
        font-size: 36px;
    }

    .ap-hero-img,
    .pp-hero-img,
    .ep-hero-img,
    .pp-product-img,
    .ap-journey-img-wrap {
        height: 280px;
    }

    .ap-sv-img { height: 240px; }

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

    .ap-stats-row {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .ap-hero,
    .pp-hero,
    .ep-hero,
    .gp-hero {
        padding-top: 90px;
    }
}

/* Contact page standalone — push below fixed navbar */
main > .contact-section:first-child {
    padding-top: 130px;
}

/* Active nav link highlight */
.main-nav a.active {
    color: var(--accent-color);
    font-weight: 600;
}
