/* Global Styles */
:root {
    --primary-color: #E63946;
    --hover-color: #D62828;
    --dark-bg: #111111;
    --card-bg: #1A1A1A;
    --card-hover: #252525;
    --icon-bg: #222;
    --border-subtle: rgba(255, 255, 255, 0.05);
    --text-white: #fff;
    --text-gray: #B0B0B0;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
    --radius: 10px;
}

:root {
    --header-height: 100px;
}
  
[id] {
    scroll-margin-top: var(--header-height);
 }

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

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-white);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.fa-phone:before {
    content: "\f095";
}

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

.section-padding {
    padding: 80px 0;
}

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

/* Helper Classes */
.section-subtitle {
    display: block;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--hover-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
}

.btn-outline {
    border-color: #fff;
    color: #fff;
    margin-left: 15px;
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--dark-bg);
}

.btn-dark {
    background-color: var(--dark-bg);
    color: #fff;
}

.btn-date {
    background-color: #fff;
    color: var(--primary-color);
    letter-spacing: 1px;
}

/* Header */
header {
    background-color: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 30px 0;
    border-bottom: 1px solid transparent;
    transition: background-color 0.6s ease, border-color 0.6s ease;
}

header.scrolled {
    background-color: var(--dark-bg);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

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

.logo {
    display: flex;
}

.logo img {
    width: 180px;
    height: auto;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a.btn:hover {
    color: #fff;
}

.nav-links .btn-nav {
    background-color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
}

.nav-links .btn-nav:hover {
    background-color: var(--hover-color);
    color: #fff;
}

/* Center nav links, keep phone button on the right (desktop) */
@media (min-width: 769px) {
    header nav {
        display: flex;
        align-items: center;
        width: 100%;
    }

    .nav-links {
        margin: 0 auto;
    }
}

.btn-call-mobile {
    background-color: var(--primary-color);
    color: #fff;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    position: relative;
    cursor: pointer;
}  

.btn-call-mobile:hover {
    background-color: var(--hover-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.4);
}

.btn-call-mobile i {
    pointer-events: none;
}

/* Vibration every 3 seconds */
@keyframes phone-ring {
    0%, 3%, 6% {
        transform: translateX(0);
    }
    1% {
        transform: translateX(-2px);
    }
    2% {
        transform: translateX(2px);
    }
    4% {
        transform: translateX(-2px);
    }
    5% {
        transform: translateX(2px);
    }
    9%, 100% {
        transform: translateX(0);
    }
}

.btn-call-text {
    margin-left: 5px;
}

.btn-call-mobile {
    animation: phone-ring 3s infinite;
}

@media (max-width: 768px) {
  .btn-call-text {
    display: none;
  }

  .btn-call-mobile {
    font-size: 1rem;
    padding: 10px 16px;
  }
}  

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url('./images/image1.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-top: 60px;
}

.hero-container {
    flex: auto;
}

.hero-content {
    max-width: 650px;
}

.hero-content .subtitle {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 30px;
}

/* Scroll Animations (Simple fade) */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Intro Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-box {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-subtle);
}

.feature-box:hover {
    transform: translateY(-10px);
    background: var(--card-hover);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(230, 57, 70, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.feature-box h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-box p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Details Section */
.details-section {
    background-color: #0f0f0f;
    padding: 100px 0;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url('./images/image3.jpg') center/cover no-repeat;
}

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

.details-content {
    max-width: 50%;
}

.check-list {
    margin: 30px 0;
}

.check-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: block;
    align-items: center;
    color: #eee;
}

.check-list i {
    color: var(--primary-color);
    margin-right: 15px;
}

.location-mini {
    margin-top: 20px;
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--primary-color);
}

.location-mini i {
    margin-right: 10px;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 40px 20px;
    text-align: center;
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 1px solid #760009;
    background: rgb(255 0 0 / 12%);
    transform: scale(1.05);
}

.pricing-card .card-header h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.pricing-card .price span {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 400;
}

.pricing-card .features {
    margin-bottom: 30px;
    flex-grow: 1;
    text-align: left;
}

.pricing-card .features li {
   
    margin-bottom: 15px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.pricing-card .features li.disabled {
    opacity: 0.5;
    text-decoration: line-through;
}

.pricing-card .features i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Why Us Section */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.feature-row {
    display: flex;
    margin-top: 15px;
    margin-bottom: 15px;
}

.feature-row .icon {
    width: 50px;
    height: 50px;
    background: var(--icon-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-row h4 {
    margin-bottom: 5px;
}

.feature-row p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.image-col {
    position: relative;
    height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.8)), url('./images/image4.jpg') center/cover fixed;
    border-radius: var(--radius);
}

.promo-box {
    position: absolute;
    bottom: -30px;
    left: 65px;
    background: var(--primary-color);
    padding: 30px;
    border-radius: var(--radius);
    color: #fff;
    text-align: center;
    max-width: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.promo-box h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.promo-box p {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

/* Stats Section */
.stats {
    background-color: #000;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-item h2 {
    font-size: 3rem;
    color: var(--text-white);
    display: inline-block;
}

.stat-item span {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.stat-item p {
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Reviews */
.reviews {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url('./images/image2.jpg') center/cover no-repeat;
    position: relative;
    padding: 100px 0;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 30px auto 0;
    height: 200px;
}

.carousel-track-container {
    overflow: hidden;
    height: 100%;
    width: 90%;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.review-card {
    min-width: 100%;
    padding: 20px;
    text-align: center;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.review-card p {
    font-style: italic;
    font-size: 1.4rem;
    color: #ebebeb;
    margin-bottom: 20px;
}

.review-card h4 {
    color: var(--text-white);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #555;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-btn:hover {
    color: var(--primary-color);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Footer */
footer {
    background: #080808;
    padding-top: 80px;
    color: #888;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid #222;
}

.map-col {
    position: relative;
}

.map-img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius);
}

.map-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

.footer-col h3 {
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-col .socials a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--icon-bg);
    color: #fff;
    border-radius: 5px;
    margin: 15px 10px 0 0;
    transition: var(--transition);
}

.footer-col .socials a:hover {
    background: var(--primary-color);
}

.contact-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-list i {
    color: var(--primary-color);
    margin-right: 15px;
    width: 20px;
}

.copyright {
    padding: 20px 0;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.copyright a {
    color: var(--text-gray);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-links li {
        margin-left: 15px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .grid-2-col {
        grid-template-columns: 1fr;
    }

    .details-section .container {
        flex-direction: column;
    }

    .details-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}