/* ===================================
   JASSISTAYS - HOME PAGE STYLES
   =================================== */

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-out infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(44, 44, 44, 0.2) 0%,
        rgba(44, 44, 44, 0.5) 50%,
        rgba(44, 44, 44, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 1000px;
    padding: 0 2rem;
    animation: fadeInUp 1.2s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--white);
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.75rem);
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.02em;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.btn-hero-primary {
    box-shadow: 0 8px 24px rgba(193, 121, 86, 0.35);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(193, 121, 86, 0.45);
}

.btn-hero-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: var(--white);
}

.btn-hero-secondary:hover {
    background-color: var(--white);
    color: var(--dark-color);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    cursor: pointer;
    opacity: 0.9;
    transition: opacity var(--transition-normal);
}

.hero-scroll:hover {
    opacity: 1;
}

.scroll-line {
    width: 1.5px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--white));
    animation: scrollIndicator 2s ease-in-out infinite;
}

@keyframes scrollIndicator {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    50% {
        transform: translateY(10px);
        opacity: 1;
    }
}

/* ===================================
   WELCOME SECTION
   =================================== */
.welcome-section {
    background-image: url('/assests/images/home/moroccan-pattern-bg.jpeg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(1px);
    pointer-events: none;
}

.welcome-section .container {
    position: relative;
    z-index: 2;
}

.moroccan-pattern-bg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l15 15-15 15-15-15L30 0zm15 15l15 15-15 15-15-15 15-15zm0 30l15 15-15 15-15-15 15-15zM15 45L0 60l15 15 15-15-15-15z' fill='%23C17956' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.welcome-section .section-header {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.stats-showcase {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.stat-card {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    min-width: 180px;
}

.stat-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 48px rgba(193, 121, 86, 0.2);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-visual {
    flex-shrink: 0;
}

.stat-circle {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(193, 121, 86, 0.1) 0%, rgba(212, 165, 116, 0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.4rem;
    transition: all var(--transition-normal);
    position: relative;
}

.stat-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0;
    transform: scale(1.2);
    transition: all var(--transition-normal);
}

.stat-card:hover .stat-circle {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.15);
}

.stat-card:hover .stat-circle::before {
    opacity: 0.3;
    transform: scale(1.4);
}

.stat-info {
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    color: var(--dark-color);
    margin: 0 0 0.25rem;
    font-weight: 700;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

/* ===================================
   ACCOMMODATIONS SECTION
   =================================== */
.accommodations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.accommodation-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.accommodation-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.accommodation-card .card-image {
    height: 280px;
}

.card-content {
    padding: 1.5rem;
}

.card-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.card-location i {
    color: var(--primary-color);
}

.card-title {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}

.card-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.25rem;
}

.card-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.card-features i {
    color: var(--primary-color);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-from {
    font-size: 0.75rem;
    color: var(--text-light);
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ===================================
   EXPERIENCES SECTION
   =================================== */
.experiences-section {
    background: linear-gradient(180deg, #f8f6f2 0%, #f4f1eb 100%);
    position: relative;
    overflow: hidden;
}

.experiences-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 12% 18%, rgba(193, 121, 86, 0.1) 0%, transparent 48%),
                      radial-gradient(circle at 86% 76%, rgba(139, 115, 85, 0.08) 0%, transparent 44%);
    pointer-events: none;
}

.experiences-section .container {
    position: relative;
    z-index: 1;
}

.experiences-section .section-header {
    max-width: 780px;
    margin: 0 auto 3.5rem;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.75rem;
    align-items: stretch;
}

.experience-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    background: #ffffff;
    box-shadow: 0 14px 36px rgba(19, 20, 22, 0.08);
    border: 1px solid rgba(193, 121, 86, 0.16);
    display: grid;
    grid-template-rows: 250px 1fr;
    min-height: 430px;
    grid-column: span 2;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

/* Center incomplete last rows (ex: 5 items = 3 on row 1, 2 centered on row 2). */
.experiences-grid > .experience-card:nth-last-child(2):nth-child(3n + 1) {
    grid-column: 2 / span 2;
}

.experiences-grid > .experience-card:last-child:nth-child(3n + 2) {
    grid-column: 4 / span 2;
}

.experiences-grid > .experience-card:last-child:nth-child(3n + 1) {
    grid-column: 3 / span 2;
}

.experience-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 46px rgba(19, 20, 22, 0.12);
    border-color: rgba(193, 121, 86, 0.35);
}

.experience-card:hover img {
    transform: scale(1.06);
}

.experience-content {
    position: relative;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 1.5rem 1.4rem 1.4rem;
    color: var(--dark-color);
}

.experience-category {
    display: inline-block;
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    z-index: 3;
    background: rgba(193, 121, 86, 0.12);
    color: #8d5f47;
    border: 1px solid rgba(193, 121, 86, 0.35);
    backdrop-filter: blur(6px);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0;
    width: fit-content;
}

.experience-content h3 {
    color: #1f1f1f;
    font-size: 1.3rem;
    line-height: 1.3;
    margin-bottom: 0.65rem;
}

.experience-content p {
    color: #5f6368;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.experience-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: color 0.25s ease, gap 0.25s ease;
}

.experience-link:hover {
    color: #8d5f47;
    gap: 0.75rem;
}

.experiences-grid .no-data,
.blog-grid .no-data {
    grid-column: 1 / -1;
    text-align: center;
    justify-self: center;
    color: var(--text-light);
    font-size: 1.05rem;
    padding: 1rem 0;
}

/* ===================================
   GIFT CARD SECTION
   =================================== */
.gift-card-section {
    background: var(--gradient-primary);
    color: var(--white);
}

.gift-card-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.gift-card-visual {
    position: relative;
}

.gift-card-mockup {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform var(--transition-slow);
}

.gift-card-mockup:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.gift-card-mockup img {
    width: 100%;
    height: auto;
}

.card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

.gift-card-info .section-tag {
    color: rgba(255, 255, 255, 0.9);
}

.gift-card-info h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.gift-card-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.gift-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.gift-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.gift-features i {
    color: var(--white);
    font-size: 1.25rem;
}

.gift-card-info .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
}

.gift-card-info .btn-primary:hover {
    background-color: var(--dark-color);
    color: var(--white);
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials-slider {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    animation: scroll 30s linear infinite;
}

.testimonial-card {
    min-width: 400px;
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    align-items: center;
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.verified-badge {
    margin-left: 0.5rem;
    color: #10b981;
    font-size: 1rem;
}

.testimonial-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
    
    /* Limit text to 4 lines with ellipsis */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 7.2rem; /* 4 lines × 1.8 line-height */
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.25rem;
    color: white;
}

.author-info h4 {
    font-size: 1.125rem;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.review-item {
    display: inline-block;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 500;
}

.loading-reviews {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

.loading-reviews i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.no-reviews {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
    font-style: italic;
}

/* ===================================
   BLOG SECTION
   =================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.blog-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.blog-card.featured {
    grid-column: span 6;
}

.blog-card:not(.featured) {
    grid-column: span 3;
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-card.featured .blog-image {
    height: 350px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.blog-meta i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.blog-content h3 {
    font-size: 1.375rem;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.blog-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-normal);
}

.blog-link:hover {
    gap: 1rem;
    color: var(--dark-color);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    position: relative;
    background: var(--gradient-primary);
    background-image: url('/assests/images/home/cta\ footer.avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    padding: var(--spacing-xl) 0;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(193, 121, 86, 0.92), rgba(139, 115, 85, 0.92));
    backdrop-filter: blur(1px);
    z-index: 0;
}

.cta-pattern {
    position: absolute;
    top: 180px;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    z-index: 1;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, var(--white) 35px, var(--white) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, var(--white) 35px, var(--white) 70px);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    white-space: nowrap;
    padding: 1.4rem 3.5rem;
    font-size: 1.1rem;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-cta-primary i,
.btn-cta-secondary i {
    font-size: 1.3rem;
}

.btn-cta-primary {
    background: #D4A574;
    color: #ffffff;
    border: none;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(212, 165, 116, 0.4);
    background: #E8C9A8;
    color: #ffffff;
}

.btn-cta-secondary {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.75);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.btn-cta-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(255, 255, 255, 0.2);
    border-color: var(--white);
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .stats-showcase {
        gap: 2rem;
    }
    
    .experiences-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    
    .experience-card.large,
    .experience-card:not(.large) {
        grid-column: span 2;
        min-height: 400px;
        grid-template-rows: 225px 1fr;
    }

    .experiences-grid > .experience-card:nth-last-child(2):nth-child(3n + 1),
    .experiences-grid > .experience-card:last-child:nth-child(3n + 2),
    .experiences-grid > .experience-card:last-child:nth-child(3n + 1) {
        grid-column: span 2;
    }

    .experiences-grid > .experience-card:last-child:nth-child(2n + 1) {
        grid-column: 2 / span 2;
    }
    
    .blog-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .blog-card.featured,
    .blog-card:not(.featured) {
        grid-column: span 6;
    }
    
    .gift-card-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .slider-controls {
        bottom: 2rem;
        right: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: 500px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .slider-controls {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    /* Disable fixed background on mobile for better performance */
    .welcome-section {
        background-attachment: scroll;
        background-position: center center;
    }
    
    .welcome-section::before {
        background: rgba(255, 255, 255, 0.88);
    }
    
    /* CTA section mobile optimization */
    .cta-section {
        background-attachment: scroll;
        background-position: center;
    }
    
    .cta-section::before {
        background: linear-gradient(135deg, rgba(193, 121, 86, 0.93), rgba(139, 115, 85, 0.93));
    }
    
    .stats-showcase {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .stat-card {
        width: 100%;
        min-width: auto;
        padding: 1.5rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .stat-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .welcome-section .section-header {
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .welcome-section .section-header h2 {
        font-size: 1.75rem;
    }
    
    .welcome-section .section-header p {
        font-size: 0.95rem;
    }
    
    .accommodations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0 0.5rem;
    }
    
    .accommodation-card {
        display: flex;
        flex-direction: column;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    
    .accommodation-card .card-image {
        width: 100%;
        height: 120px;
    }
    
    /* Make the badge smaller so it fits well on tiny images */
    .accommodation-card .card-badge {
        top: 0.5rem;
        right: 0.5rem;
        padding: 0.2rem 0.5rem;
        font-size: 0.65rem;
    }
    
    .accommodation-card .card-content {
        padding: 0.5rem;
        display: flex;
        flex-direction: column;
        flex: 1;
    }
    
    .accommodation-card .card-location {
        font-size: 0.7rem;
        margin-bottom: 0.25rem;
    }
    
    .accommodation-card .card-title {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.2;
    }
    
    .accommodation-card .card-description {
        display: none;
    }
    
    .accommodation-card .card-features {
        display: flex;
        flex-wrap: wrap;
        gap: 0.3rem;
        margin-bottom: 0.5rem;
        padding: 0;
        border: none;
    }
    
    /* Only show 2 features on small un-even mobile */
    .accommodation-card .card-features span:nth-child(n+3) {
        display: none;
    }
    
    .accommodation-card .card-features span {
        font-size: 0.65rem;
        padding: 0;
        background: transparent;
        border: none;
        color: var(--text-color);
        display: flex;
        align-items: center;
        gap: 0.2rem;
    }

    .accommodation-card .card-features span i {
        font-size: 0.65rem;
        color: var(--primary-color);
    }
    
    .accommodation-card .card-footer {
        flex-direction: column;
        gap: 0.4rem;
        align-items: flex-start;
        justify-content: flex-start;
        margin-top: auto;
        padding-top: 0.4rem;
        border-top: 1px solid var(--border-color);
    }
    
    .accommodation-card .card-price {
        text-align: left;
        display: flex;
        flex-direction: row;
        align-items: baseline;
        gap: 0.2rem;
        line-height: 1;
    }

    .accommodation-card .price-from {
        display: none; /* Hide "A partir de" to save space */
    }
    
    .accommodation-card .price-amount {
        font-size: 1rem;
        font-weight: 600;
        color: var(--primary-color);
    }

    .accommodation-card .price-period {
        font-size: 0.65rem;
        color: var(--text-light);
    }
    
    .accommodation-card .btn-card {
        width: 100%;
        padding: 0.4rem;
        font-size: 0.75rem;
        border-radius: var(--radius-md);
        display: flex;
        justify-content: center;
    }
    
    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0 0.25rem;
    }
    
    .experience-card,
    .experience-card.large {
        grid-column: span 1 !important; /* Force 1 column span to fit 2 per row */
        height: 100%;
        min-height: 260px;
        grid-template-rows: 150px 1fr;
        border-radius: 14px;
        box-shadow: 0 8px 20px rgba(19, 20, 22, 0.08);
    }

    .experience-category {
        top: 0.5rem;
        left: 0.5rem;
        font-size: 0.6rem;
        padding: 0.25rem 0.6rem;
        margin-bottom: 0;
    }
    
    .experience-content {
        padding: 0.75rem 0.6rem 0.6rem;
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    .experience-content h3 {
        font-size: 0.95rem;
        margin-bottom: 0.35rem;
        line-height: 1.25;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        height: 2.5em; /* Force exactly 2 lines height for title */
    }
    
    .experience-content p {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        height: 3.2em; /* Force exactly 2 lines height for text */
    }

    .experience-link {
        margin-top: auto;
        font-size: 0.85rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Redesigned Mobile Testimonials */
    .testimonials-slider {
        padding: 1.5rem 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        scroll-snap-type: x mandatory;
        width: 100vw;
        margin-left: -1rem; /* Negative margin to break out of container padding */
        padding-left: 1rem; /* Restore left padding */
    }
    
    .testimonials-slider::-webkit-scrollbar {
        display: none; /* Safari/Chrome */
    }
    
    .testimonial-track {
        animation: none; /* Stop the auto-scroll on mobile so users can swipe */
        width: max-content;
        display: flex;
        gap: 1rem;
        padding-right: 2rem; /* Add padding at the end so last card isn't cut off */
    }
    
    .testimonial-card {
        min-width: 280px; /* Ensure it's not too squished on very small screens */
        width: 85vw; /* Almost full screen width but shows next card peeking */
        max-width: 350px;
        padding: 1.5rem;
        border-radius: var(--radius-lg);
        background: var(--white);
        box-shadow: 0 8px 25px rgba(0,0,0,0.08); /* Softer, deeper shadow */
        display: flex;
        flex-direction: column;
        scroll-snap-align: start; /* Snap to start of the card */
        margin-bottom: 5px; /* Avoiding clipping of shadow */
    }

    .testimonial-rating {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .testimonial-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.25rem;
        -webkit-line-clamp: 4; /* Show slightly more text */
        max-height: none; 
    }

    .testimonial-author {
        margin-top: auto;
        gap: 0.75rem;
        padding-top: 1rem;
        border-top: 1px solid var(--border-color);
    }
    
    .testimonial-author img, .author-avatar {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .author-info p {
        font-size: 0.8rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0 0.5rem;
    }
    
    .blog-card.featured,
    .blog-card:not(.featured) {
        grid-column: span 1;
        border-radius: var(--radius-lg);
        margin: 0;
        display: flex;
        flex-direction: column;
    }

    .blog-card.featured .blog-image,
    .blog-card:not(.featured) .blog-image {
        height: 190px;
    }

    .blog-card.featured .blog-content,
    .blog-card:not(.featured) .blog-content {
        padding: 0.75rem 1rem 0.25rem;
    }

    .blog-card.featured .blog-content h3,
    .blog-card:not(.featured) .blog-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.35rem;
        line-height: 1.4;
    }

    .blog-card.featured .blog-content p,
    .blog-card:not(.featured) .blog-content p {
        display: -webkit-box;
        font-size: 0.85rem;
        margin-bottom: 0.15rem;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .blog-card .blog-meta {
        margin-bottom: 0.4rem;
        font-size: 0.75rem;
        gap: 0.5rem;
    }

    .blog-card .blog-category {
        font-size: 0.65rem;
        padding: 0.25rem 0.6rem;
    }

    .blog-card .blog-link {
        font-size: 0.85rem;
        padding: 0.25rem 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 350px;
        justify-content: center;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* ===================================
   PARTNERS SECTION
   =================================== */
.partners-section {
    padding: 5rem 0 4rem;
    background: #fafaf8;
    border-top: 1px solid #ede8e2;
    border-bottom: 1px solid #ede8e2;
}

.partners-section .section-header {
    margin-bottom: 3.5rem;
}

.partners-track-wrapper {
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.partners-track-wrapper::-webkit-scrollbar {
    display: none;
}

.partners-track {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 5rem;
    padding: 0.5rem 2rem;
    margin: 0 auto;
}

.partner-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.55;
    transition: filter 0.4s ease, opacity 0.4s ease, transform 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

.partner-logo img {
    height: 180px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Jassibat logo is white on transparent — give it a dark backdrop */
.partners-track .partner-logo:last-child {
    border-radius: 10px;
    padding: 0.75rem 1.25rem;
}

/* PARTNERS MARQUEE: always animate, desktop and mobile */
.partners-track-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.partners-track-wrapper::-webkit-scrollbar {
  display: none;
}
.partners-track {
  display: flex;
  gap: 5rem;
  min-width: 1200px;
  animation: partners-scroll 18s linear infinite;
  will-change: transform;
}
.partners-track.paused {
  animation-play-state: paused !important;
}
@keyframes partners-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 3.5rem 0 3rem;
    }

    .partners-track {
        gap: 3rem;
        justify-content: flex-start;
        padding: 0.5rem 1.5rem;
    }

    .partner-logo img {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .hero-scroll {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .gift-card-mockup {
        transform: none;
    }
}
/* Gift Card Banner Section */
.giftcard-banner-section {
    background: linear-gradient(135deg, #CD986D 0%, #B8845E 50%, #CD986D 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    padding: 0;
    overflow: visible; /* Allow image to extend below */
    position: relative;
    width: 100%;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.giftcard-banner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
}

.giftcard-banner-content {
    flex: 1;
    color: #1a1a1a;
    padding: 6rem 0;
    max-width: 650px;
    min-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    z-index: 2;
    perspective: 1000px;
}

.giftcard-banner-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    width: 100%;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.giftcard-banner-content p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 2.5rem;
    color: #ffffff;
    max-width: 90%;
    margin-left: 0;
    margin-right: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.giftcard-banner-content p strong {
    font-weight: 700;
}

.btn-giftcard-banner {
    display: block;
    width: fit-content;
    margin: 0;
    padding: 1rem 3rem;
    border: 3px solid white;
    border-radius: 50px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    letter-spacing: 1px;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-giftcard-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: white;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn-giftcard-banner:hover {
    color: #CD986D;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-giftcard-banner:hover::before {
    width: 300px;
    height: 300px;
}

.giftcard-banner-image {
    flex: 1.2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: -100px; /* Extend below the section */
    z-index: 0; 
}

.giftcard-banner-image img {
    display: block;
    width: 140%;
    max-width: 900px;
    height: auto;
    object-fit: contain;
    margin-right: -140px; /* Push out of the container to mimic the original look but controlled */
    margin-bottom: 100px;
    filter: drop-shadow(-10px 20px 30px rgba(0,0,0,0.25));
    pointer-events: none;
}

/* Accommodate space for gift card image extending below */
.giftcard-banner-section + section {
    padding-top: 140px !important; /* Adjusted for bigger image */
    position: relative;
    z-index: 10; /* Higher z-index to appear above gift card image */
    background: var(--white, #ffffff); /* Ensure solid background */
}

@media (max-width: 1024px) {
    .giftcard-banner-content h2 {
        font-size: 3rem;
    }
}

@media (max-width: 900px) {
    .giftcard-banner-section {
        overflow: hidden; /* Prevent any horizontal layout overflow */
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .giftcard-banner-container {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1.25rem 0;
    }
    
    .giftcard-banner-content {
        padding: 0 0 1.5rem 0;
        max-width: 100%;
        min-width: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .giftcard-banner-content h2 {
        font-size: 2.15rem;
        line-height: 1.15;
        margin-bottom: 1rem;
        white-space: normal;
    }
    
    .giftcard-banner-content p {
        max-width: 100%;
        font-size: 1.05rem;
        line-height: 1.45;
        margin-bottom: 1.5rem;
    }

    .btn-giftcard-banner {
        padding: 0.8rem 2.2rem;
        font-size: 1rem;
        margin: 0 auto 1.25rem auto;
        display: block;
        text-align: center;
        width: fit-content;
    }
    
    .giftcard-banner-image {
        width: 100%;
        justify-content: center;
        display: flex;
        margin-top: -15px; /* Bring it closer to the button */
        margin-bottom: 0;
        z-index: 0; /* Go under next section */
    }

    .giftcard-banner-image img {
        position: relative;
        width: 100%;
        height: auto;
        bottom: 0;
        right: 0;
        transform: translateY(20px);
        max-width: 500px;
        margin-top: 0;
        margin-right: 0;
        margin-bottom: 0px;
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.18));
    }
    .giftcard-banner-image {
        min-height: auto;
    }
    
    /* Adjust spacing for mobile layout */
    .giftcard-banner-section + section {
        padding-top: 60px !important;
        position: relative;
        z-index: 10;
        background: var(--white, #ffffff);
    }
}

@media (max-width: 480px) {
    .giftcard-banner-container {
        padding: 2rem 1rem 0;
    }

    .giftcard-banner-content {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .giftcard-banner-content h2 {
        font-size: 1.95rem;
    }

    .giftcard-banner-content p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .btn-giftcard-banner {
        width: 100%;
        max-width: 250px;
        text-align: center;
        padding: 0.75rem 1.5rem;
        border-width: 2px;
        margin: 0 auto;
        margin-top: 1.5rem;
        display: block;
    }

    .giftcard-banner-image {
        margin-top: -25px; /* Bring image even closer on smallest screens */
    }

    .giftcard-banner-image img {
        width: 100%;
        max-width: 400px;
        transform: translateY(10px);
        margin-right: 0;
        margin-bottom: 0;
    }
}

/* ===================================
   OWNERS LANDING PAGE
   =================================== */

.owners-page {
    background: #fff;
}

.owners-section {
    padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.owners-grid-2 {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    align-items: start;
}

.section-tag {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12rem;
    margin-bottom: 1rem;
}

.owners-page h1,
.owners-page h2,
.owners-page h3 {
    font-family: var(--font-secondary);
    color: var(--dark-color);
    line-height: 1.2;
}

.owners-page h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.owners-page p {
    color: var(--text-light);
    line-height: 1.75;
}

.owners-section-intro {
    max-width: 880px;
    margin: 0 auto 2rem;
    text-align: center;
}

.owners-landing-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.owners-landing-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.owners-landing-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(17, 15, 14, 0.68) 0%, rgba(17, 15, 14, 0.34) 48%, rgba(17, 15, 14, 0.1) 100%);
}

.owners-landing-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 820px;
    padding-top: 6.5rem;
    padding-bottom: 2.6rem;
}

.owners-landing-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    color: #fff;
    margin-bottom: 1rem;
}

.owners-landing-hero p {
    color: rgba(255, 255, 255, 0.94);
    margin-bottom: 0.8rem;
}

.owners-landing-lead {
    font-size: 1.15rem;
    font-weight: 500;
}

.owners-check-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.owners-check-list li {
    color: #fff;
    font-weight: 500;
    position: relative;
    padding-left: 1.45rem;
}

.owners-check-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    color: #f2d3a5;
    font-weight: 700;
}

.owners-landing-statement {
    font-weight: 600;
    color: #fff;
    margin: 1.2rem 0;
}

.owners-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: var(--gradient-primary);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.98rem;
    padding: 0.9rem 1.4rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 10px 26px rgba(193, 121, 86, 0.3);
    cursor: pointer;
}

.owners-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(193, 121, 86, 0.36);
}

.owners-cta-btn-full {
    width: 100%;
}

.owners-estimator {
    background: linear-gradient(to bottom, #fbf9f6, #ffffff);
}

.owners-estimator-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.6rem;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(193, 121, 86, 0.12);
    display: grid;
    gap: 0.65rem;
}

.owners-estimator-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
}

.owners-estimator-card label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-color);
}

.owners-estimator-card input,
.owners-estimator-card select {
    width: 100%;
    border: 1px solid #e7ddd2;
    border-radius: 10px;
    padding: 0.8rem 0.9rem;
    font-size: 0.95rem;
    background: #fff;
    color: var(--dark-color);
}

.owners-estimator-card input:focus,
.owners-estimator-card select:focus {
    outline: 2px solid rgba(193, 121, 86, 0.25);
    border-color: var(--primary-color);
}

.owners-feedback {
    min-height: 1.35rem;
    margin-top: 0.3rem;
    color: #2f7d4e;
    font-size: 0.9rem;
    font-weight: 500;
}

.owners-benefits,
.owners-transparency,
.owners-presence {
    background: #fff;
}

.owners-optimization,
.owners-process {
    background: linear-gradient(to bottom, #fcf9f5, #fff);
}

.owners-cards-grid {
    display: grid;
    gap: 1.2rem;
}

.owners-cards-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.owners-cards-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.owners-card,
.owners-report-card {
    background: #fff;
    border: 1px solid rgba(193, 121, 86, 0.16);
    border-radius: 16px;
    padding: 1.35rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.owners-card i {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 0.9rem;
}

.owners-card h3,
.owners-report-card h3 {
    font-size: 1.28rem;
    margin-bottom: 0.55rem;
}

.owners-card-accent {
    background: linear-gradient(135deg, var(--primary-color), #d4a574);
    border-color: transparent;
}

.owners-card-accent h3,
.owners-card-accent p,
.owners-card-accent i {
    color: #fff;
}

.owners-strategy-list {
    display: grid;
    gap: 0.85rem;
}

.owners-strategy-item {
    background: #fff;
    border-left: 4px solid var(--primary-color);
    border-radius: 12px;
    padding: 0.95rem 1rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    color: var(--text-dark);
}

.owners-protection {
    background: linear-gradient(to bottom, #fff, #faf7f2);
}

.owners-protection-card {
    background: #231f1c;
    color: #f8f4ef;
    border-radius: 20px;
    padding: 1.6rem;
    box-shadow: 0 10px 26px rgba(35, 31, 28, 0.26);
}

.owners-protection-card h3,
.owners-protection-card p {
    color: inherit;
}

.owners-protection-card .owners-landing-statement {
    color: #f2d3a5;
}

.owners-city-grid {
    margin-top: 1.6rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.owners-city-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(193, 121, 86, 0.25);
    border-radius: 999px;
    padding: 0.65rem 0.9rem;
    font-weight: 600;
    color: var(--dark-color);
    background: #fff;
}

.owners-process-grid {
    margin-top: 2.2rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.owners-process-card {
    position: relative;
    border-radius: 16px;
    padding: 1.4rem 1.2rem;
    background: #fff;
    border: 1px solid rgba(193, 121, 86, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.owners-process-card h3 {
    font-size: 1.1rem;
    margin: 0.85rem 0 0.45rem;
}

.owners-step-number {
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
}

.owners-process-card-accent {
    background: linear-gradient(135deg, #8b7355, #2c2c2c);
    border-color: transparent;
}

.owners-process-card-accent h3,
.owners-process-card-accent p {
    color: #fff;
}

.owners-process-card-accent .owners-step-number {
    background: #fff;
    color: var(--primary-color);
}

.owners-final-cta {
    background: #fff;
}

.owners-final-cta-box {
    text-align: center;
    max-width: 880px;
    background: linear-gradient(135deg, #faf5ee, #fff);
    border: 1px solid rgba(193, 121, 86, 0.14);
    border-radius: 22px;
    padding: clamp(1.6rem, 4vw, 2.6rem);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.owners-final-cta-box p {
    margin: 0 auto 1.3rem;
    max-width: 700px;
}

@media (max-width: 1100px) {
    .owners-cards-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .owners-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .owners-grid-2 {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .owners-landing-hero {
        min-height: 100svh;
    }

    .owners-landing-hero-overlay {
        background: linear-gradient(180deg, rgba(17, 15, 14, 0.35) 0%, rgba(17, 15, 14, 0.68) 100%);
    }

    .owners-landing-hero-content {
        text-align: left;
        padding-top: 6.1rem;
    }

    .owners-cards-grid-3,
    .owners-cards-grid-4,
    .owners-city-grid,
    .owners-process-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .owners-landing-hero h1 {
        font-size: clamp(1.85rem, 10vw, 2.5rem);
    }

    .owners-landing-lead {
        font-size: 1.02rem;
    }

    .owners-section {
        padding: 3.1rem 0;
    }
}

/* ===================================
   OWNERS SITE PAGE EXTRACTED STYLES
   =================================== */

@font-face {
    font-family: 'The Seasons';
    src: url('assests/fonts/the-seasons-extrabold.woff2') format('woff2'),
         url('assests/fonts/the-seasons-extrabold.woff') format('woff');
    font-weight: 800;
    font-style: italic;
}

.owners-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
}

.owners-hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.owners-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 80px;
}

.hero-elements {
    width: 100%;
    max-width: 480px;
    margin-bottom: 3.5rem;
}

.hero-elements img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.95;
}

.owners-hero-title {
    font-family: 'Playfair Display', serif;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.25;
    letter-spacing: -0.015em;
    max-width: 1200px;
}

.owners-hero-title span {
    display: block;
    font-size: 54.8px;
    font-weight: 300;
}

.owners-hero-title em {
    font-family: 'The Seasons', 'Playfair Display', serif;
    font-style: italic;
    font-weight: 800;
    color: #FFFFFF;
    padding-left: 0.2rem;
    font-size: 1.2em;
}

.owners-hero-title .stress-text {
    font-size: 1.4em;
    line-height: 1;
}

@media (max-width: 768px) {
    .owners-hero-content {
        padding: 0 20px;
        top: 50%;
        transform: translateY(-50%);
        margin-top: 0;
        align-items: center !important;
        text-align: center;
        left: 0;
        right: 0;
        max-width: 100%;
    }

    .hero-elements {
        max-width: 260px;
        margin-bottom: 1.5rem;
        margin-left: auto;
        margin-right: auto;
    }

    .owners-hero-title {
        max-width: 100%;
        text-align: center;
    }

    .owners-hero-title span {
        font-size: 28px;
        line-height: 1.2;
    }

    .owners-hero-title em {
        display: inline-block;
        font-size: 1.1em;
    }

    .owners-hero-title .stress-text {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .hero-elements {
        max-width: 280px;
    }

    .owners-hero-title span {
        font-size: 24px;
    }
}

.owners-slider {
    position: relative;
    height: 100vh;
    min-height: 100svh;
    max-height: 100svh;
    overflow: hidden;
    background: #000;
}

.owners-slide {
    position: absolute;
    inset: 0;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.9s ease, visibility 0.9s ease;
}

.owners-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.owners-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.owners-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(0, 0, 0, 0.26) 0%, rgba(0, 0, 0, 0.1) 48%, rgba(0, 0, 0, 0.02) 100%);
}

.owners-slide-overlay-soft {
    background: linear-gradient(110deg, rgba(163, 124, 99, 0.48) 0%, rgba(163, 124, 99, 0.24) 50%, rgba(0, 0, 0, 0.02) 100%);
}

.owners-slide-overlay-warm {
    background: linear-gradient(110deg, rgba(168, 129, 102, 0.56) 0%, rgba(168, 129, 102, 0.34) 35%, rgba(0, 0, 0, 0.02) 100%);
}

.owners-slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6.5rem 5% 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.owners-slide-content-left {
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    transform: translateY(6px);
}

.owners-slide-content-center {
    justify-content: center;
}

.owners-slide-elements {
    width: 100%;
    max-width: 650px;
    margin-bottom: 0.5rem;
}

/* Slide 1: nudge icon + headline block lower for better visual balance */
.owners-slide[data-index="0"] .owners-slide-content-left {
    align-items: flex-start;
    transform: translateY(200px);
}

.owners-slide[data-index="0"] .owners-slide-elements {
    width: 100%;
    max-width: 750px;
    margin: 0 0 0rem;
    display: flex;
    justify-content: center;
}

.owners-slide[data-index="0"] .owners-slide-title {
    width: 100%;
    max-width: 760px;
    text-align: center;
}

.owners-slide[data-index="0"] .owners-slide-title span {
    white-space: nowrap;
}

/* Slide 2: Adjust vertical/horizontal position and icon centering */
.owners-slide[data-index="1"] .owners-slide-content-left {
    align-items: center;
    transform: translate(-320px, 130px);
}

.owners-slide[data-index="1"] .owners-slide-guarantee-icon {
    transform: none;
}

.owners-slide[data-index="1"] .owners-slide-overlay-soft {
    background: linear-gradient(110deg, rgba(163, 124, 99, 0.28) 0%, rgba(163, 124, 99, 0.12) 50%, rgba(0, 0, 0, 0.01) 100%) !important;
    opacity: 0.65;
}

.owners-slide-elements img {
    width: 92%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.owners-slide-guarantee-icon {
    
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.owners-slide-guarantee-icon img {
    width: 110px;
    height: auto;
    display: block;
}

.owners-slide-title {
    margin: 0;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 400;
    text-shadow: 0 2px 25px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.01em;
    text-align: center;
}

.owners-slide-title span {
    display: block;
}

.owners-slide-title em {
    font-family: 'The Seasons', 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    font-size: 1.16em;
    letter-spacing: -0.01em;
}

.owners-slide-title .stress-text {
    font-size: 1.26em;
    line-height: 1;
}

.owners-slide-title-md {
    font-size: clamp(1.95rem, 3.8vw, 3.8rem);
}

.owners-slide-title-center {
    text-align: center;
}

.owners-slide-content-performance {
    justify-content: space-between;
}

.owners-slide-copy {
    max-width: 540px;
}

.performance-icon {
    margin-bottom: 2rem;
    text-align: center;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}

.performance-icon svg {
    display: block;
    margin: 0 auto;
}

.owners-slide-phone-wrap {
    flex: 0 0 auto;
    width: min(36vw, 500px);
    margin-right: 3%;
    transform: rotate(10deg) translateY(2px);
}

.owners-slide-phone {
    display: block;
    width: 100%;
    height: auto;
}

.owners-slide-cta {
    display: none;
    padding: 0.9rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.owners-slide-cta-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.owners-slide-cta:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

@media (min-width: 901px) {
    .owners-slide[data-index="2"] .owners-slide-content-performance {
        display: grid;
        grid-template-columns: minmax(0, 620px) minmax(320px, 450px);
        grid-template-areas:
            "icon phone"
            "copy phone";
        justify-content: center;
        align-items: center;
        column-gap: 4.5rem;
        row-gap: 0;
    }

    .owners-slide[data-index="2"] .performance-icon {
        grid-area: icon;
        margin: 0;
        justify-self: center;
        
    }

    .owners-slide[data-index="2"] .performance-icon svg {
        width: 152px;
        height: 152px;
    }

    .owners-slide[data-index="2"] .owners-slide-copy {
        grid-area: copy;
        max-width: 760px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: -24.35rem;
    }

    .owners-slide[data-index="2"] .owners-slide-title {
        font-size: clamp(2.2rem, 3.5vw, 3.35rem);
    }

    .owners-slide[data-index="2"] .owners-slide-title span {
        white-space: nowrap;
    }

    .owners-slide[data-index="2"] .owners-slide-phone-wrap {
        grid-area: phone;
        width: min(25vw, 350px);
        margin-left: auto;
        margin-right: 0;
        transform: translateY(12px);
        align-self: center;
    }
}

@media (max-width: 900px) {
    .owners-slider {
        min-height: 100svh;
    }

    .owners-slide-content,
    .owners-slide-content-left,
    .owners-slide-content-performance {
        padding: 5.5rem 1.8rem 2rem;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .owners-slide-content,
    .owners-slide-content-performance {
        flex-direction: column;
        gap: 1.5rem;
    }

    .owners-slide-bg {
        object-position: 70% center;
    }

    .owners-slide-overlay,
    .owners-slide-overlay-soft,
    .owners-slide-overlay-warm {
        background: 
            radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 70%, rgba(0, 0, 0, 0.6) 100%),
            linear-gradient(135deg, rgba(193, 121, 86, 0.15) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.5) 100%);
    }

    .owners-slide[data-index="1"] .owners-slide-overlay-soft {
        background:
            radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.12) 68%, rgba(0, 0, 0, 0.2) 100%),
            linear-gradient(135deg, rgba(193, 121, 86, 0.1) 0%, rgba(139, 115, 85, 0.12) 55%, rgba(0, 0, 0, 0.08) 100%) !important;
        opacity: 0.6;
    }

    .owners-slide[data-index="1"] .owners-slide-content-left {
        transform: none;
        align-items: center;
    }

    .owners-slide-elements {
        max-width: 350px;
        margin-bottom: 1rem;
    }

    .owners-slide-copy {
        max-width: 100%;
    }

    .owners-slide-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        line-height: 1.2;
        text-shadow: 0 3px 20px rgba(0, 0, 0, 0.6);
    }

    .owners-slide-guarantee-icon img {
        width: 90px;
    }

    .performance-icon {
        margin: 0 auto 1.5rem;
    }

    .performance-icon svg {
        width: 70px;
        height: 70px;
    }

    .owners-slide-phone-wrap {
        width: min(75vw, 450px);
        margin: 0 auto;
        transform: rotate(8deg) translateY(10px);
    }

    .owners-slide-cta {
        display: inline-flex;
    }
}

@media (max-width: 768px) {
    .owners-slide-content,
    .owners-slide-content-left,
    .owners-slide-content-performance {
        padding: 5rem 1.5rem 1.5rem;
    }

    .owners-slide-overlay,
    .owners-slide-overlay-soft,
    .owners-slide-overlay-warm {
        background: 
            radial-gradient(ellipse at top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.65) 100%),
            linear-gradient(135deg, rgba(168, 129, 102, 0.15) 0%, rgba(0, 0, 0, 0.25) 100%);
    }

    .owners-slide[data-index="1"] .owners-slide-overlay-soft {
        background:
            radial-gradient(ellipse at top, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.18) 45%, rgba(0, 0, 0, 0.28) 100%),
            linear-gradient(135deg, rgba(168, 129, 102, 0.1) 0%, rgba(139, 115, 85, 0.1) 100%) !important;
        opacity: 0.58;
    }

    .owners-slide-elements {
        max-width: 320px;
        margin-bottom: 0.8rem;
    }

    .owners-slide-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        line-height: 1.25;
        text-shadow: 0 4px 25px rgba(0, 0, 0, 0.7);
    }

    .owners-slide-guarantee-icon {
        margin-bottom: 1rem;
    }

    .owners-slide-guarantee-icon img {
        width: 80px;
    }

    .performance-icon svg {
        width: 65px;
        height: 65px;
    }

    .owners-slide-phone-wrap {
        width: min(80vw, 400px);
        transform: rotate(6deg) translateY(8px);
    }

}

@media (max-width: 480px) {
    .owners-slider {
        min-height: 100svh;
    }

    .owners-slide-content,
    .owners-slide-content-left,
    .owners-slide-content-performance {
        padding: 4.5rem 1.2rem 1.5rem;
    }

    .owners-slide-overlay,
    .owners-slide-overlay-soft,
    .owners-slide-overlay-warm {
        background: 
            radial-gradient(ellipse at 50% 30%, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.75) 100%),
            linear-gradient(to bottom right, rgba(193, 121, 86, 0.12) 0%, rgba(0, 0, 0, 0.3) 100%);
    }

    .owners-slide[data-index="1"] .owners-slide-overlay-soft {
        background:
            radial-gradient(ellipse at 50% 30%, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.32) 100%),
            linear-gradient(to bottom right, rgba(193, 121, 86, 0.08) 0%, rgba(139, 115, 85, 0.1) 100%) !important;
        opacity: 0.55;
    }

    .owners-slide-elements {
        max-width: 280px;
        margin-bottom: 0.6rem;
    }

    .owners-slide-title {
        font-size: clamp(1.4rem, 8.5vw, 2rem);
        line-height: 1.3;
        text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
        letter-spacing: -0.02em;
    }

    .owners-slide-title em {
        font-size: 1.12em;
    }

    .owners-slide-title .stress-text {
        font-size: 1.22em;
    }

    .owners-slide-guarantee-icon {
        margin-bottom: 0.8rem;
    }

    .owners-slide-guarantee-icon img {
        width: 70px;
    }

    .performance-icon {
        margin: 0 auto 1rem;
    }

    .performance-icon svg {
        width: 55px;
        height: 55px;
    }

    .owners-slide-phone-wrap {
        width: min(85vw, 360px);
        transform: rotate(5deg) translateY(6px);
    }

}

@media (max-width: 375px) {
    .owners-slide-content,
    .owners-slide-content-left,
    .owners-slide-content-performance {
        padding: 4.2rem 1rem 1.2rem;
    }

    .owners-slide-elements {
        max-width: 260px;
    }

    .owners-slide-title {
        font-size: clamp(1.3rem, 9vw, 1.8rem);
        line-height: 1.35;
    }

    .owners-slide-guarantee-icon img {
        width: 60px;
    }

    .performance-icon svg {
        width: 50px;
        height: 50px;
    }

    .owners-slide-phone-wrap {
        width: min(88vw, 340px);
        transform: rotate(4deg) translateY(5px);
    }
}

/* ===================================
   OWNERS LONG-FORM SECTIONS
   =================================== */

.owners-next {
    background: linear-gradient(to bottom, #faf8f6, var(--white));
    color: var(--dark-color);
}

.section-shell {
    padding: 5.5rem 0;
    transition: background 0.45s ease;
}

.owner-wrap {
    width: min(1180px, 92vw);
    margin: 0 auto;
}

.owner-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.owner-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.9rem;
    padding: 0.35rem 0.9rem;
    border: 1px solid rgba(193, 121, 86, 0.2);
    border-radius: 999px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--primary-color);
}

.owner-copy h2 {
    margin: 0 0 1rem;
    color: var(--dark-color);
    font-family: var(--font-secondary);
    font-size: clamp(1.9rem, 3vw, 3.2rem);
    line-height: 1.15;
}

.owner-copy p {
    color: var(--text-light);
    margin: 0 0 0.9rem;
    font-size: 1.03rem;
}

.owner-signature {
    margin-top: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
}

.owner-checklist {
    display: grid;
    gap: 0.55rem;
    margin: 1.2rem 0 0.5rem;
    padding: 0;
}

.owner-checklist li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--dark-color);
}

.owner-checklist i {
    color: #d4a574;
}

.owner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.15rem;
    padding: 0.95rem 1.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #c17956, #d4a574);
    color: #fff;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 28px rgba(193, 121, 86, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.owner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 34px rgba(193, 121, 86, 0.38);
}

.owner-btn-block {
    width: 100%;
}

.owner-btn-large {
    padding-inline: 2rem;
    font-size: 1.02rem;
}

.owner-cta-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.15rem;
}

.owner-cta-row .owner-btn {
    margin-top: 0;
}

.video-cta-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    background: transparent;
}

.btn-play-video {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.4rem;
    background: transparent;
    border: 1.5px solid rgba(44, 32, 21, 0.25);
    border-radius: 10px;
    color: var(--dark);
    font-size: 0.93rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-play-video:hover {
    background: rgba(44, 32, 21, 0.05);
    border-color: rgba(44, 32, 21, 0.4);
    transform: translateY(-2px);
}

.btn-play-icon {
    font-size: 0.8rem;
    color: #C9956C;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    background: black;
    border-radius: 12px;
    overflow: hidden;
}

.video-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.4);
}

.owner-visual-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    min-height: 370px;
}

.owner-visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.owner-hook .owner-visual-card::after,
.owner-protection .owner-visual-card::after,
.owner-strategy .owner-visual-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(193, 121, 86, 0.06), rgba(44, 44, 44, 0.16));
}

.owner-protection .owner-visual-card {
    min-height: 460px;
}

.owner-protection .owner-visual-card {
    order: 1;
}

.owner-protection .owner-copy {
    order: 2;
}

.owner-protection .owner-visual-card img {
    transform: scale(1.12);
    transform-origin: center;
}

.owner-hook .owner-visual-card {
    border: none;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.owner-hook .owner-visual-card::after {
    content: none;
}

.owner-hook .owner-visual-card img {
    object-fit: contain;
    background: transparent;
    width: 100%;
    height: auto;
}

.owner-live-tracking {
    background: linear-gradient(180deg, #f7f3ee 0%, #fbf8f4 100%);
    border-top: 1px solid #eee4d8;
    border-bottom: 1px solid #eee4d8;
}

.owner-live-tracking .owner-copy p:first-of-type {
    margin-bottom: 0.85rem;
}

.owner-live-tracking-visual {
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.owner-live-tracking .owner-visual-card {
    border: none;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
    background: transparent;
}

.owner-live-tracking-visual img {
    width: min(100%, 420px);
    height: auto;
    object-fit: contain;
    transform: rotate(10deg);
    filter: drop-shadow(0 22px 30px rgba(46, 32, 21, 0.22));
}

.btn-space-owners {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.8rem;
    background: #C9956C;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-space-owners:hover {
    background: #B8845A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 149, 108, 0.3);
}

.btn-space-owners .btn-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.owner-calculator {
    background: linear-gradient(to bottom, #faf8f6, var(--white));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.owner-form-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
}

.owner-form-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.owner-form-card form {
    display: grid;
    gap: 0.7rem;
}

.owner-form-card label {
    font-size: 0.87rem;
    color: var(--text-light);
}

.owner-form-card input,
.owner-form-card select {
    width: 100%;
    padding: 0.78rem 0.85rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--text-dark);
    font-family: inherit;
}

.owner-benefits .owner-lead,
.owner-transparency .owner-lead {
    max-width: 820px;
}

.owner-cards {
    margin-top: 1.6rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.owner-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 1.3rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.owner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(193, 121, 86, 0.16);
}

.owner-card i {
    font-size: 1.15rem;
    color: #f0bf95;
}

.owner-card h3 {
    margin: 0.75rem 0 0.5rem;
    color: var(--dark-color);
    font-size: 1.12rem;
}

.owner-card p {
    margin: 0;
    color: var(--text-light);
}

.owner-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.metric-card {
    padding: 1.1rem;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    color: var(--dark-color);
    font-weight: 500;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.metric-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(193, 121, 86, 0.16);
}

.city-list {
    margin: 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.city-list span {
    padding: 0.48rem 0.85rem;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--border-color);
    color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    font-size: 0.92rem;
}

.owner-map {
    min-height: 290px;
    background: linear-gradient(135deg, #faf8f6, var(--white));
    border: 1px solid var(--border-color);
}

.owner-map img {
    object-fit: contain;
    padding: 1.2rem;
}

.steps-grid {
    margin-top: 1.6rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.step-card {
    position: relative;
    border-radius: 18px;
    border: 1px solid var(--border-color);
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 1.3rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(193, 121, 86, 0.16);
}

.step-number {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #c17956, #d4a574);
    color: #fff;
    font-weight: 700;
}

.step-card h3 {
    color: var(--dark-color);
    margin: 0 0 0.45rem;
    font-size: 1.05rem;
}

.step-card p {
    margin: 0;
    color: var(--text-light);
}

.owner-final-cta {
    padding-top: 3.5rem;
    padding-bottom: 6rem;
}

.owner-final-cta .owner-wrap {
    text-align: center;
    max-width: 780px;
    border-radius: 24px;
    padding: 2.1rem 1.4rem;
    border: none;
    background: linear-gradient(135deg, rgba(193, 121, 86, 0.92), rgba(139, 115, 85, 0.92));
}

.owner-final-cta h2 {
    color: #fff;
    margin-bottom: 0.8rem;
    font-size: clamp(1.8rem, 3.2vw, 3rem);
    line-height: 1.2;
    white-space: nowrap;
}

.owner-final-cta p {
    color: rgba(244, 239, 232, 0.9);
    margin-bottom: 0.8rem;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

/* Process Section */
.process-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(to bottom, #faf8f6, var(--white));
}

.process-section .section-header.center {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.process-card {
    position: relative;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(193, 121, 86, 0.2);
}

.process-card:nth-child(1) {
    grid-column: 1 / 7;
    grid-row: 1;
}

.process-card:nth-child(2) {
    grid-column: 7 / 13;
    grid-row: 1;
}

.process-card:nth-child(3) {
    grid-column: 1 / 5;
    grid-row: 2;
    background: linear-gradient(135deg, var(--primary-color), #d4a574);
    color: var(--white);
}

.process-card:nth-child(3) h3,
.process-card:nth-child(3) p {
    color: var(--white);
}

.process-card:nth-child(3) .process-icon {
    background: rgba(255, 255, 255, 0.2);
}

.process-card:nth-child(3) .process-icon i {
    color: var(--white);
}

.process-card:nth-child(4) {
    grid-column: 5 / 9;
    grid-row: 2;
}

.process-card:nth-child(5) {
    grid-column: 9 / 13;
    grid-row: 2;
}

.process-card:nth-child(6) {
    grid-column: 1 / 8;
    grid-row: 3;
    background: linear-gradient(135deg, #8b7355, var(--dark-color));
    color: var(--white);
}

.process-card:nth-child(6) h3,
.process-card:nth-child(6) p {
    color: var(--white);
}

.process-card:nth-child(6) .process-icon {
    background: rgba(255, 255, 255, 0.2);
}

.process-card:nth-child(6) .process-icon i {
    color: var(--white);
}

.process-card:nth-child(7) {
    grid-column: 8 / 13;
    grid-row: 3;
}

.process-number {
    position: absolute;
    top: -20px;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    font-family: var(--font-secondary);
    box-shadow: 0 4px 15px rgba(193, 121, 86, 0.3);
    z-index: 2;
}

.process-card:nth-child(3) .process-number,
.process-card:nth-child(6) .process-number {
    background: var(--white);
    color: var(--primary-color);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8f6f4, #faf8f6);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.process-icon i {
    font-size: 2.25rem;
    color: var(--primary-color);
}

.process-card h3 {
    font-size: 1.5rem;
    font-family: var(--font-secondary);
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.process-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* History Section */
.history-section {
    background-color: #fafaf8;
    padding: 6rem 0;
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2rem;
    align-items: center;
}

.history-text {
    flex: 1;
    max-width: 600px;
}

.history-text h2 {
    font-size: clamp(2.2rem, 4.2vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 700;
    font-family: var(--font-secondary);
    color: var(--dark-color);
}

.history-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
}

.cities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 500px;
}

.city-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #fff;
    border: 1px solid #f0f0f0;
    color: #c99e76;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.city-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(193, 121, 86, 0.2);
}

.city-badge i {
    color: #c99e76;
    font-size: 1rem;
}

.map-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
}

.map-container img {
    max-width: none;
    width: 140%;
    transform: scale(1.15) translateX(3%);
    height: auto;
    object-fit: contain;
}

@media (max-width: 991px) {
    .history-content {
        grid-template-columns: 1fr;
    }

    .map-container img {
        max-width: 100%;
        width: 100%;
        transform: none;
    }
}

@media (max-width: 900px) {
    .history-content {
        text-align: center;
    }

    .history-text h2 {
        font-size: 2.5rem;
    }

    .cities-list {
        justify-content: center;
        margin: 0 auto;
    }
}

/* Scroll reveal utilities for owners long-form sections */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms),
        transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .owner-card,
    .metric-card,
    .step-card,
    .owner-btn {
        transition: none;
    }
}

@media (max-width: 1024px) {
    .owner-grid-two {
        grid-template-columns: 1fr;
    }

    .process-card:nth-child(1),
    .process-card:nth-child(2) {
        grid-column: span 6;
    }

    .process-card:nth-child(3),
    .process-card:nth-child(4),
    .process-card:nth-child(5) {
        grid-column: span 4;
    }

    .process-card:nth-child(6) {
        grid-column: span 7;
    }

    .process-card:nth-child(7) {
        grid-column: span 5;
    }

    .owner-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .owner-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .section-shell {
        padding: 4.2rem 0;
    }

    .owner-copy h2 {
        font-size: clamp(1.65rem, 8.3vw, 2.2rem);
    }

    .owner-copy p {
        font-size: 0.98rem;
    }

    .owner-cards,
    .owner-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.7rem;
    }

    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.7rem;
    }

    .owner-cards .owner-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: calc(50% - 0.35rem);
        justify-self: center;
    }

    .owner-visual-card {
        min-height: 280px;
    }

    .owner-protection .owner-visual-card {
        min-height: 330px;
    }

    .owner-protection .owner-visual-card img {
        transform: scale(1.06);
    }

    .owner-live-tracking-visual {
        min-height: 360px;
    }

    .owner-live-tracking-visual img {
        width: min(100%, 300px);
        transform: rotate(6deg);
    }

    .btn-space-owners {
        display: inline-flex;
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }

    .owner-cta-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-play-video {
        display: inline-flex;
        font-size: 0.9rem;
        padding: 0.75rem 1.2rem;
    }

    .video-modal-content {
        max-width: 95vw;
        width: 100%;
    }

    .video-modal-close {
        top: -35px;
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }

    .owner-form-card {
        padding: 1.15rem;
    }

    .process-grid {
        display: block;
        margin-top: 2rem;
        width: 100%;
    }

    .process-card {
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 1.5rem;
        padding: 2rem 1.4rem;
    }

    .process-card:last-child {
        margin-bottom: 0;
    }

    .process-number {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
        top: -14px;
        right: 1.2rem;
    }

    .process-icon {
        width: 60px;
        height: 60px;
    }

    .process-icon i {
        font-size: 1.75rem;
    }

    .process-card h3 {
        font-size: 1.2rem;
    }

    .owner-final-cta {
        padding-bottom: 4.2rem;
    }

    .owner-final-cta h2 {
        white-space: normal;
    }
}

@media (max-width: 420px) {
    .owner-cards,
    .owner-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.6rem;
    }

    .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.6rem;
    }

    .owner-card,
    .metric-card {
        padding: 0.9rem;
    }

    .owner-card h3 {
        font-size: 0.98rem;
    }

    .owner-card p,
    .metric-card span {
        font-size: 0.86rem;
        line-height: 1.35;
    }

    .steps-grid .step-card {
        padding: 1rem;
    }

    .steps-grid .step-card h3 {
        font-size: 0.95rem;
    }

    .steps-grid .step-card p {
        font-size: 0.84rem;
        line-height: 1.35;
    }
}
