@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;400;500;600;700&family=Raleway:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #00314e;
    --secondary-color: #b7181f;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --font-heading: 'Raleway', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6, 
.main-nav a, 
.btn, 
.top-bar,
.logo-text,
.hero-subtitle {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.btn-primary:hover {
    background-color: #e0ac00;
}

.btn-warning {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.btn-outline {
    border: 2px solid var(--secondary-color);
    color: var(--text-color);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--secondary-color);
}

/* Top Bar */
.top-bar {
    background-color: var(--white);
    color: var(--text-light);
    padding: 12px 30px;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 25px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.contact-info span i {
    color: var(--secondary-color);
    font-size: 16px;
    margin-right: 0;
}

.social-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.social-info a {
    color: var(--primary-color);
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-info a:hover {
    color: var(--secondary-color);
}

/* Header */
#header-placeholder {
    position: sticky;
    top: 0;
    z-index: 1000;
}

header {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.logo a {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color); /* Darker blue for Xspace logo */
}

.logo-img {
    height: 70px;
    width: auto;
}

.main-nav ul {
    display: flex;
    gap: 35px;
}

.main-nav a {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-nav a i {
    font-size: 10px;
    color: #999;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--secondary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.btn-get-started {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 12px 25px;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 0; /* Fully rectangular */
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s;
    border: none;
}

.btn-get-started::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-get-started:hover {
    color: var(--white);
}

.btn-get-started:hover::before {
    left: 0;
}

.header-actions .search-icon, 
.header-actions .grid-icon {
    color: var(--primary-color);
    font-size: 20px;
}

.header-actions .cart-icon {
    position: relative;
    color: var(--primary-color);
    font-size: 20px;
}

.header-actions .cart-icon .badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    padding: 180px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/assets/images/homebanner.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--white);
}

/* Overlay removed */

.hero-container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
    z-index: 2;
}

.hero-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 30px;
}

.hero-content h1 {
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 700;
}

.hero-content h1 .highlight-circle {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.hero-content h1 .highlight-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background-color: var(--secondary-color);
    border-radius: 50%;
    z-index: -1;
}

.hero-content p {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    display: none; /* Hidden in screenshot */
}

.hero-image {
    display: none; 
}

/* Intro Features */
.intro-features {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.text-center {
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-img {
    height: 200px;
    overflow: hidden;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card h3 {
    padding: 20px;
    font-size: 18px;
    color: var(--primary-color);
}

.feature-link {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
}

/* Intro Features v2 Redesign */
.intro-features.v2 {
    padding: 80px 0;
    background-color: var(--white);
    position: relative;
}

.intro-features.v2 .intro-header h2 {
    color: var(--primary-color);
}

.intro-features.v2 .intro-header h2::before,
.intro-features.v2 .intro-header h2::after {
    background-color: rgba(0, 49, 78, 0.2);
}

.intro-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.intro-header h2 {
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.mobile-break {
    display: none;
}

@media (max-width: 768px) {
    .mobile-break {
        display: block;
    }
}

.intro-header h2::before,
.intro-header h2::after {
    content: '';
    width: 60px;
    height: 2px;
    background-color: rgba(0, 49, 78, 0.15);
}

.intro-media {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    /* Removed scroll-snap for continuous movement */
    -webkit-overflow-scrolling: touch;
    padding: 10px 0 30px;
}

.intro-media::-webkit-scrollbar {
    display: none;
}

.intro-media {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.intro-media .media-frame {
    position: relative;
    flex: 0 0 calc((100% - 60px) / 4); /* 4 images on desktop */
    background-color: transparent;
    border-radius: 8px;
    overflow: hidden;
    /* Removed scroll-snap for continuous movement */
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    height: 380px; /* Fixed height for consistency */
}

.intro-media .media-frame img {
    width: 100%;
    height: 100%; /* Image takes full height */
    object-fit: cover;
    display: block;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

.intro-media .media-frame:hover img {
    transform: scale(1.05);
}

/* Solid bottom caption bar */
.intro-media .inside-caption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #00314e99;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    padding: 15px 10px;
    z-index: 2;
}

/* Remove old overlay */
.intro-media .media-frame::after {
    display: none;
}

/* Remove old overlay and center effects for this style */
.intro-media .media-frame .overlay {
    display: none;
}

.intro-media::-webkit-scrollbar {
    height: 8px;
}

.intro-media::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.06);
    border-radius: 999px;
}

.intro-media::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.18);
    border-radius: 999px;
}

.intro-caption {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

.features-grid.v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card.v2 {
    position: relative;
    display: block;
    height: 260px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-card.v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.feature-card.v2 .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0) 60%);
}

.feature-card.v2 .feature-meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    color: var(--white);
}

.feature-card.v2 .title {
    font-size: 16px;
    font-weight: 700;
}

.feature-card.v2 .arrow {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card.v2:hover img {
    transform: scale(1.05);
}

/* Detailed Feature */
.detailed-feature {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
}

.split-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.detailed-text {
    flex: 1.2;
}

.detailed-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.detailed-text p {
    opacity: 0.8;
    margin-bottom: 30px;
}

.feature-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.feature-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 500;
}

.feature-bullets li i {
    color: var(--secondary-color);
    font-size: 18px;
    background-color: var(--white);
    border-radius: 50%;
    line-height: 1;
}

.cta-box {
    margin-top: 40px;
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 10px;
}

.cta-box p {
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.btn-white-cta {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
}

.btn-white-cta:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.detailed-image {
    flex: 0.8;
    overflow: hidden;
    border-radius: 10px;
    height: 778px; /* Increased height by another 20% */
    max-width: 500px; /* Decreased width */
}

.detailed-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Google Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: relative;
}

.review-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.rating {
    color: #f1c40f;
    font-size: 14px;
}

.google-icon {
    position: absolute;
    top: 0;
    right: 0;
    color: #4285F4;
    font-size: 20px;
}

.review-text {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.6;
}

.mt-40 {
    margin-top: 40px;
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Offers Section */
.productivity-section {
    padding: 80px 0;
    background-color: var(--white);
}

.offers-container {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.offers-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.offer-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    flex-direction: row; /* Changed to row for side-by-side layout */
    align-items: center;
    gap: 20px;
    text-align: left; /* Aligned text to left */
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.offer-item:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: var(--secondary-color);
}

.offer-item i {
    font-size: 32px; /* Increased icon size */
    color: var(--secondary-color);
    flex-shrink: 0;
}

.offer-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.offer-content p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.offers-image {
    flex: 1;
}

.offers-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .offers-container {
        flex-direction: column;
    }
    .offers-image {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .offers-grid {
        grid-template-columns: 1fr;
    }
}

/* Brands Section */
.brands-section {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid #eee;
    overflow: hidden;
}

.brands-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.brands-text h3 {
    font-size: 24px;
    color: var(--primary-color);
    text-align: center;
}

.brands-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.brands-track {
    display: flex;
    width: calc(250px * 16); /* 8 logos * 2 for seamless loop */
    animation: scrollBrands 30s linear infinite;
    gap: 50px;
    align-items: center;
}

.brand-logo {
    width: 200px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.brand-logo:hover img {
    transform: scale(1.1);
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 8));
    }
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--secondary-color);
    position: relative;
    z-index: 1;
}

.pricing-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.price {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
}

.features-list {
    margin-bottom: 30px;
    text-align: left;
}

.features-list li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.features-list li i {
    color: var(--secondary-color);
    margin-right: 10px;
}

.features-list li.disabled {
    opacity: 0.5;
}

/* Events Section */
.events-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-row {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 10px;
    gap: 20px;
}

.event-img img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.event-info {
    flex: 2;
}

.event-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.event-info .date {
    font-size: 14px;
    opacity: 0.7;
}

.event-meta, .event-location {
    flex: 1;
    font-size: 14px;
}

.btn-arrow {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
}

/* Testimonial */
.testimonial-section {
    padding: 80px 0;
    background: #f4f7f6;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
}

.user-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
}

blockquote {
    font-size: 18px;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 20px;
}

.rating {
    color: var(--secondary-color);
}

/* Gallery */
.gallery-section {
    padding-top: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}


/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding-top: 80px;
}

.footer-top-section {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-partners-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-partners-text h2 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 10px;
}

.partners-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.partners-track {
    display: flex;
    width: calc(200px * 12); /* 6 logos * 2 for seamless loop */
    animation: scrollPartners 25s linear infinite;
    gap: 40px;
    align-items: center;
}

.partner-logo {
    width: 160px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--white);
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    background: #f0f0f0;
    transform: translateY(-5px);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 6));
    }
}

.footer-main {
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-col h3 {
    margin-bottom: 25px;
    font-size: 18px;
    color: var(--white);
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
}

.footer-col ul li a:hover {
    color: var(--white);
}

.subscribe-form {
    display: flex;
    margin-bottom: 20px;
}

.subscribe-form input {
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
    flex: 1;
}

.subscribe-form button {
    padding: 10px 15px;
    background: var(--secondary-color);
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--white);
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
}

.footer-links-bottom {
    display: flex;
    gap: 20px;
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn {
    background-color: #25D366;
}

.call-btn {
    background-color: var(--secondary-color);
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .top-bar {
        display: none;
    }

    .header-actions {
        display: none; /* Hide header actions on smaller screens for now, or move to menu */
    }
    
    .mobile-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 20px;
        display: none; /* Hidden by default */
        flex-direction: column;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid.v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Dynamic Arrow Animation */
.btn-get-started i,
.feature-link i,
.btn-circle i,
.feature-card.v2 .arrow i {
    transition: transform 0.3s ease;
}

.btn-get-started:hover i,
.feature-link:hover i,
.btn-circle:hover i,
.feature-card.v2:hover .arrow i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .detailed-image {
        height: 518px; /* Increased height by another 20% for mobile */
    }
    .top-bar-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 5px;
    }

    .hero-content h1 {
        font-size: 50px;
    }
    
    .hero-container, .split-container, .footer-grid, .footer-cta-wrapper {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        display: none;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .brands-flex {
        flex-direction: column;
        gap: 20px;
    }
    
    .brands-logos {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .brands-logos span {
        margin: 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .intro-media .media-frame {
        flex: 0 0 100%; /* 1 image on mobile */
        height: 500px; /* Increased height for mobile */
    }
    
    .features-grid.v2 {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Styles */
.contact-banner {
    background: var(--primary-color) linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/aboutherobanner.webp') no-repeat center center/cover;
    padding: 30px 0;
    text-align: center;
    color: var(--white);
    position: relative;
}

.contact-banner h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-banner p {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
    font-size: 18px;
}

.contact-main-section {
    padding: 30px 0 20px 0;
    background-color: #f9f9f9;
}

.contact-grid {
    display: flex;
    gap: 40px;
}

.contact-info-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #fff0f1;
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-text strong {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.info-text span {
    font-size: 15px;
    color: var(--text-color);
    font-weight: 500;
}

.info-text small {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 3px;
}

.contact-image-card {
    border-radius: 15px;
    overflow: hidden;
    height: 280px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Map Section Styles */
.full-map-section {
    width: 100%;
    margin-top: 0;
}

.full-map-section .container-fluid {
    padding: 0;
}

.full-map-section iframe {
    display: block;
    width: 100%;
}

.contact-form-column {
    flex: 1.5;
}

.contact-form-card {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

.contact-form-card h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-form-card p {
    color: var(--text-light);
    margin-bottom: 40px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
}

.form-group label {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-color);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(183, 24, 31, 0.05);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background-color: #b31921;
    color: var(--white);
}

.newsletter-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-text h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.newsletter-text p {
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.7);
}

.newsletter-form button {
    padding: 15px 35px;
    background-color: var(--white);
    color: #b31921;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background-color: #eee;
}

@media (max-width: 992px) {
    .contact-grid {
        flex-direction: column;
    }
    
    .newsletter-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .contact-form-card {
        padding: 30px;
    }
    
    .contact-banner h1 {
        font-size: 36px;
    }
}

/* About Page Styles */
.about-banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/aboutherobanner.webp') no-repeat center center/cover;
    padding: 120px 0;
    text-align: center;
    color: var(--white);
    position: relative;
}

.about-banner h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-banner p {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
    font-size: 18px;
}

.about-section-split {
    padding: 80px 0;
    background: var(--white);
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-grid.reverse {
    flex-direction: row-reverse;
}

.about-text-content {
    flex: 1.2;
}

.about-text-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.about-text-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--text-light);
}

.about-image-content {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.about-image-content img {
    width: 100%;
    display: block;
}

.mission-vision-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-card, .vision-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}

.single-card {
    max-width: 900px;
    margin: 0 auto;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: #fff0f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    padding: 15px;
}

.card-icon img {
    max-width: 100%;
    max-height: 100%;
}

.mission-card h3, .vision-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mission-card p, .vision-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Founder Section */
.founder-section {
    padding: 40px 0 100px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-4c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3z" stroke-width="1" stroke="%23e0e0e0" fill="none"/></svg>');
    opacity: 0.5;
}

.founder-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    position: relative;
}

.founder-image {
    width: 100%;
    max-width: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.founder-image img {
    width: 100%;
    display: block;
}

.founder-text {
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.founder-logo-icon {
    width: 80px;
    margin-bottom: 30px;
}

.founder-text h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.founder-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
}

/* Our Values Section */
.our-values-section {
    padding: 80px 0;
    background: var(--white);
}

.our-values-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 80px;
}

.value-card {
    text-align: center;
}

.value-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.value-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
    max-width: 450px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .about-grid {
        flex-direction: column !important;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Our Space Page Styles */
.space-banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/aboutherobanner.webp') no-repeat center center/cover;
    padding: 120px 0;
    text-align: center;
    color: var(--white);
    position: relative;
}

.space-banner h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.space-banner p {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
    font-size: 18px;
}

.our-layout-section {
    padding: 100px 0;
    background-color: var(--white);
}

.our-layout-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 0 auto 50px;
    border-radius: 2px;
}

.layout-image-container {
    max-width: 1140px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.layout-img {
    width: 100%;
    display: block;
}

@media (max-width: 768px) {
    .space-banner h1 {
        font-size: 36px;
    }
    
    .our-layout-section {
        padding: 60px 0;
    }
}

/* Our Location Page Styles */
.location-banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/aboutherobanner.webp') no-repeat center center/cover;
    padding: 120px 0;
    text-align: center;
    color: var(--white);
    position: relative;
}

.location-banner h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.location-banner p {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
    font-size: 18px;
}

.location-details-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.location-title h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 80px;
}

.location-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.location-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-item.reverse {
    grid-template-columns: 1fr 1fr;
}

.location-item.reverse .location-text {
    order: 2;
}

.location-item.reverse .location-image {
    order: 1;
}

.location-text {
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.location-text:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.location-text h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.location-text p {
    color: var(--text-light);
    line-height: 1.8;
}

.location-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.location-image img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.location-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .location-item, .location-item.reverse {
        grid-template-columns: 1fr;
    }
    
    .location-item.reverse .location-text, .location-item.reverse .location-image {
        order: initial;
    }
}

/* FAQ Page Styles */
.faq-banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/aboutherobanner.webp') no-repeat center center/cover;
    padding: 120px 0;
    text-align: center;
    color: var(--white);
    position: relative;
}

.faq-banner h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.faq-banner p {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
    font-size: 18px;
}

.faq-section {
    padding: 100px 0;
    background-color: var(--white);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.accordion-header:hover {
    background-color: #f9f9f9;
}

.accordion-header i {
    transition: transform 0.3s;
}

.accordion-item.active .accordion-header i {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 20px;
}

.accordion-content p {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.accordion-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.accordion-content ul li {
    margin-bottom: 10px;
}
