:root {
    --primary: #000000;
    --secondary: #D4AF37;
    --accent: #1f1f1f;
    --light: #F8F9FA;
    --dark: #1b1b1b;
    --gray: #6C757D;
    --success: #28A745;
    --light-blue: #E3F2FD;
    --gold-light: #F5E8C7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.8rem;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary);
    border-radius: 2px;
}

/* Header Styles */
header {
    background-color: rgba(8, 8, 8, 0.95);
    color: white;
    padding: 12px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.header-scrolled {
    padding: 5px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary);
    display: flex;
    align-items: center;
}

.logo img {
    color: white;
    margin-left: 5px;
    width:80px;
}

.logo-icon {
    margin-right: 10px;
    font-size: 28px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 35px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: var(--secondary);
}

nav ul li a:hover:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 26px;
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-menu-btn:hover {
    color: var(--secondary);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.85) 0%, rgba(0, 0, 0, 0.8) 100%), url('https://images.unsplash.com/photo-1552733407-5d5c46c3bb3b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
    /* background: linear-gradient(135deg, rgba(15, 15, 15, 0.85) 0%, rgba(0, 0, 0, 0.8) 100%), url('../images/hero.png'); */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
    z-index: 10;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--secondary);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    font-family: 'Inter', sans-serif;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--primary);
    padding: 16px 38px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.btn:hover {
    background-color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    margin-left: 15px;
}

.btn-outline:hover {
    background-color: var(--secondary);
    color: var(--primary);
}

/* Booking Form */
.booking-form {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.booking-form h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-row {
    display: flex;
    gap: 25px;
}

.form-row .form-group {
    flex: 1;
}

/* About Section */
#about {
    background-color: var(--light);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 70px;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #555;
}

.about-text h3 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 25px;
    color: var(--primary);
}

.about-list {
    list-style: none;
    margin-bottom: 30px;
}

.about-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
}

.about-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.2rem;
}

.about-image-container {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    height: 388px;
}

.about-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;

    /* start hidden (from right) */
    clip-path: inset(0 100% 0 0);
    will-change: clip-path;
}


/* Activities Section */
#activities {
    background-color: var(--light-blue);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.activity-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s, box-shadow 0.4s;
    height: 100%;
}

.activity-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.activity-image {
    height: 250px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.activity-card:hover .activity-image img {
    transform: scale(1.1);
}

.activity-content {
    padding: 30px;
}

.activity-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.activity-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.activity-features {
    list-style: none;
    margin-top: 20px;
}

.activity-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.activity-features li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.activity-price {
    display: inline-block;
    background-color: var(--gold-light);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 15px;
    font-family: 'Montserrat', sans-serif;
}

/* Services Section */
#services {
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.service-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary);
    color: white;
    font-size: 40px;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

/* Testimonials */
#testimonials {
    background-color: var(--light);
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    border-radius: 15px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 3px solid var(--gold-light);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.author-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Fleet Section */
#fleet {
    background-color: white;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 35px;
}

.fleet-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s, box-shadow 0.4s;
    border: 1px solid #eee;
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.fleet-image {
    height: 220px;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.1);
}

.fleet-content {
    padding: 25px;
}

.fleet-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.fleet-price {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.3rem;
    margin-top: 15px;
    font-family: 'Montserrat', sans-serif;
}

/* Footer */
footer {
    background-color: var(--primary);
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column h3 {
    color: var(--secondary);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.footer-column ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-info li i {
    margin-right: 15px;
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.social-links a:hover {
    background-color: var(--secondary);
    transform: translateY(-5px);
    color: var(--primary);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}

  /* Floating Buttons Styles */
.floating-buttons {
position: fixed;
bottom: 30px;
z-index: 1000;
display: flex;
width: 100%;
justify-content: space-between;
pointer-events: none;
padding: 0 20px;
}

.floating-btn {
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 26px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
transition: all 0.3s;
text-decoration: none;
pointer-events: auto;
position: relative;
overflow: hidden;
}

.floating-btn.whatsapp {
background-color: #25D366;
order: 1;
}

.floating-btn.phone {
background-color: #0A2463;
order: 2;
}

/* Ripple effect for phone button */
.ripple-circle {
position: absolute;
border-radius: 50%;
background-color: rgba(10, 36, 99, 0.2);
transform: scale(0);
animation: ripple 2s infinite;
pointer-events: none;
}

.ripple-circle:nth-child(2) {
animation-delay: 0.66s;
}

.ripple-circle:nth-child(3) {
animation-delay: 1.33s;
}

@keyframes ripple {
0% {
    transform: scale(0);
    opacity: 1;
}
100% {
    transform: scale(4);
    opacity: 0;
}
}

/* Hover effects */
.floating-btn:hover {
transform: scale(1.1);
}

.whatsapp:hover {
background-color: #128C7E;
}

.phone:hover {
background-color: #1E2761;
}

/* Responsive adjustments */
@media (max-width: 768px) {
.floating-buttons {
    bottom: 20px;
    padding: 0 15px;
}

.floating-btn {
    width: 55px;
    height: 55px;
    font-size: 24px;
}
}

@media (max-width: 480px) {
.floating-buttons {
    bottom: 15px;
    padding: 0 10px;
}

.floating-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
}
}
/* Responsive Styles */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.2rem;
    }
}

@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }
    
    .about-content {
        flex-direction: column;
        gap: 50px;
    }

    .about-image-container {
        width: 100%;
        order: -1;
    }

    .about-image {
        /* keep the animation start state */
        clip-path: inset(0 100% 0 0);
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .section-title h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.4rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: rgba(10, 36, 99, 0.98);
        padding: 30px;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.4s;
        backdrop-filter: blur(10px);
    }
    
    nav.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .btn-outline {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 70px 0;
    }
    
    .hero {
        height: 90vh;
        background-attachment: scroll;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .booking-form {
        padding: 25px;
    }
    
    .activity-card, .service-card, .fleet-card {
        margin-bottom: 20px;
    }
    
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        margin:-10px;
    }
}


/* form */
 /* Booking Form Styles */
 .whatsapp-booking-form {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.whatsapp-booking-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 10px;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
}

.whatsapp-form-group {
    margin-bottom: 25px;
}

.whatsapp-form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: var(--primary);
    font-size: 15px;
}

.whatsapp-form-label span {
    color: #e74c3c;
}

.whatsapp-form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
    font-size: 16px;
}

.whatsapp-form-control:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.whatsapp-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.whatsapp-form-row .whatsapp-form-group {
    flex: 1;
    margin-bottom: 0;
}

.whatsapp-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%230A2463' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    padding-right: 50px;
}

.whatsapp-form-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.whatsapp-icon {
    color: #25D366;
    font-size: 24px;
}

.whatsapp-form-footer p {
    color: var(--gray);
    font-size: 14px;
    flex: 1;
}

.whatsapp-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    padding: 16px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.whatsapp-submit-btn:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-submit-btn:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
    display: none;
    animation: fadeIn 0.5s ease;
}

.success-message.show {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .whatsapp-booking-form {
        padding: 30px 25px;
    }
    
    .whatsapp-form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .whatsapp-form-row .whatsapp-form-group {
        margin-bottom: 20px;
    }
    
    .whatsapp-form-footer {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .whatsapp-booking-form {
        padding: 25px 20px;
    }
    
    .whatsapp-booking-form h3 {
        font-size: 24px;
    }
    
    .whatsapp-submit-btn {
        width: 100%;
        justify-content: center;
    }
}


/* Fleet Call Buttons */
.fleet-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.call-btn,
.whatsapp-btn {
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}

/* Call button */
.call-btn {
    background: #797979; /* blue */
}

.call-btn:hover {
    background: #0065d4;
}

/* WhatsApp button */
.whatsapp-btn {
    background: #938241;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
}

/* Mobile responsive spacing */
@media (max-width: 480px) {
    .fleet-actions {
        flex-direction: column;
    }
}
