/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Gotu&family=Inter:wght@300;400;500;600;700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Gotu', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
}

h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.btn-secondary:hover {
    background: #2c3e50;
    color: white;
}

/* Hero Section - New Design */
.hero-main {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Background image container - limited to 100vh */
.hero-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Changed from 100% to 100vh */
    background-image: url('img/1000014924-min.jpg');
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Dark overlay - also limited to 100vh */
.hero-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Changed from 100% to 100vh */
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero-main-container {
    max-width: 100%;
    margin: 0;
    width: 100%;
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container1{
    max-width: 1200px; 
    width: 100%;
    margin: 0;
    
}

.container{
    max-width: 1200px;
}

.hero-main-content {
    display: grid;
    align-items: left;
    height: 50vh;
}

.hero-main-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
    color: white;
}

.hero-main-text h1 {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: white;
}

.hero-main-features {
    display: flex;
    gap: 2rem;
    margin: 2rem 0 3rem 0;
}

.hero-main-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-main-features .feature-item i {
    color: #ffffff;
    font-size: 1.2rem;
}

.hero-main-features .feature-item span {
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

.btn-hero-reserve {
    display: inline-block;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-hero-reserve:hover {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
}

.hero-main-image-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-main-image-wrapper img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    opacity: 0;
}

/* Hero Services Overlay */
.hero-services-overlay {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,1) 30%, rgb(0, 0, 0) 100%);
    padding: 100px 20px 80px;
    z-index: 10;
    margin-top: -200px;
}

.hero-services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.hero-services-tagline {
    display: inline-block;
    color: #6284a8;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-services-header h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 400;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 100%;
    margin: 0 auto;
}

.hero-service-card {
    background: #2c2c2c;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: block;
}

.hero-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #394f64, #415972);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -60px;
    margin-bottom: 30px;
}

.hero-service-icon i {
    font-size: 1.8rem;
    color: white;
}

.hero-service-card h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-service-card p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Hero Section */
@media (max-width: 1400px) {
    .hero-services-grid {
        gap: 1.2rem;
    }
    
    .hero-service-card {
        padding: 1.8rem 1.2rem;
    }
    
    .hero-service-card h3 {
        font-size: 1.2rem;
    }
    
    .hero-service-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 1200px) {
    .hero-main-content {
        gap: 3rem;
        padding: 0 2rem;
    }
    
    .hero-main-text h1 {
        font-size: 3rem;
    }
    
    .hero-services-grid {
        gap: 1rem;
    }
    
    .hero-service-card {
        padding: 1.5rem 1rem;
    }
    
    .hero-service-card h3 {
        font-size: 1.1rem;
    }
    
    .hero-service-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 1024px) {
    .hero-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .hero-main-text h1 {
        font-size: 2.8rem;
    }
    
    .hero-services-overlay {
        margin-top: -270px;
        padding: 80px 20px 60px;
    }
}

@media (max-width: 768px) {
    .hero-main {
        min-height: 100vh;
        background-position: center;
    }
    
    .hero-main::before {
        background-image: url('img/Mercedes-glc-coupe-Slider-Car-Test\ -\ Copy.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        height: 100vh;
    }
    
    .hero-main::after {
        background: rgba(0, 0, 0, 0.7);
        height: 100vh;
    }

    .hero-main-container {
        justify-content: flex-start;
    }
    
    .hero-main-content {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 2rem;
        height: auto;
        padding: 120px 1rem 0;
    }
    
    .hero-main-text {
        max-width: 100%;
    }
    
    .hero-main-text h1 {
        font-size: 3.2rem;
        line-height: 1.2;
        text-align: left;
    }
    
    .hero-main-features {
        flex-direction: row;
        gap: 1rem;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .hero-main-image-wrapper {
        order: -1;
        justify-content: center;
        display: none; /* Hide image wrapper on mobile */
    }
    
    .hero-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-services-overlay {
        padding: 60px 15px 40px;
        background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,1) 20%, rgb(0, 0, 0) 100%);
    }
    
    .hero-services-header h2 {
        font-size: 2rem;
    }
    
    .hero-service-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-main {
        min-height: 100vh;
    }
    
    .hero-main-content {
        padding: 60px 1rem 0;
        text-align: left;
    }
    
    .hero-main-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .hero-main-text h1 {
        font-size: 2.6rem;
        line-height: 1.3;
        text-align: left;
    }
    
    /* Hide existing br tags on mobile */
    .hero-main-text h1 br {
        display: none;
    }
    
    /* Add line breaks after specific words on mobile */
    .hero-main-text h1 .luxury::after,
    .hero-main-text h1 .ampersand::after,
    .hero-main-text h1 .in::after {
        content: "\A";
        white-space: pre;
    }
    
    .hero-main-features {
        flex-direction: row;
        gap: 1rem;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .hero-main-features .feature-item {
        justify-content: flex-start;
        align-self: flex-start;
    }
    
    .btn-hero-reserve {
        width: auto;
        max-width: 280px;
        text-align: center;
        padding: 14px 24px;
        font-size: 1rem;
        align-self: flex-start;
        margin: 0;
    }
    
    .hero-services-overlay {
        padding: 40px 10px 30px;
        margin-top: -160px;
    }
    
    .hero-services-header {
        margin-bottom: 2rem;
    }
    
    .hero-services-tagline {
        font-size: 0.8rem;
    }
    
    .hero-services-header h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .hero-service-card {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }
    
    .hero-service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .hero-service-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .hero-service-icon {
        width: 50px;
        height: 50px;
        margin-top: -40px;
        margin-bottom: 20px;
    }
    
    .hero-service-icon i {
        font-size: 1.3rem;
    }
}

@media (max-width: 360px) {
    .hero-main-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-services-header h2 {
        font-size: 1.4rem;
    }
    
    .hero-service-card {
        padding: 1.2rem 0.8rem;
    }
    
    .hero-service-icon {
        width: 45px;
        height: 45px;
        margin-top: -35px;
    }
    
    .hero-service-icon i {
        font-size: 1.1rem;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

/* About Us Section */
.about-us {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.about-text {
    max-width: 100%;
}

.about-header {
    margin-bottom: 2.5rem;
}

.about-tagline {
    display: inline-block;
    color: #2c3e50;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.about-header h2 {
    font-size: 2.8rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
}

.about-panel {
    background: #f5f3f0;
    padding: 2.5rem;
    border-radius: 15px;
    margin: 2.5rem 0;
    position: relative;
    border: none;
}

.about-panel .quote-mark {
    position: absolute;
    top: 15px;
    left: 25px;
    font-size: 3.5rem;
    color: #2c3e50;
    font-family: Georgia, serif;
    line-height: 1;
    font-weight: bold;
}

.about-panel p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin: 0 0 2rem 0;
    padding-left: 1.5rem;
    font-style: normal;
}

.about-panel .about-icons {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
}

.about-panel .service-icon {
    width: 60px;
    height: 60px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-panel .service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.about-panel .about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0 2rem 0;
}

.about-panel .feature-pill {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.about-panel .feature-pill:hover {
    border-color: #2c3e50;
    color: #2c3e50;
}

.about-panel .btn-book {
    display: inline-block;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 1rem;
}

.about-panel .btn-book:hover {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
}

.about-icons {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    color: white;
    font-size: 1.3rem;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0 3rem 0;
}

.feature-pill {
    background: white;
    border: 1px solid #e0e0e0;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.feature-pill:hover {
    border-color: #f39c12;
    color: #f39c12;
}

.btn-book {
    display: inline-block;
    background: #f39c12;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-book:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* About Us Responsive Design */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-header h2 {
        font-size: 2.5rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-image img {
        height: 350px;
    }
    
    .about-quote {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .about-us {
        padding: 60px 0;
    }
    
    .about-header h2 {
        font-size: 2rem;
    }
    
    .about-quote {
        padding: 1.5rem;
    }
    
    .quote-mark {
        font-size: 3rem;
        top: -5px;
    }
    
    .feature-highlight {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .feature-highlight span {
        font-size: 0.8rem;
    }
}

/* Destinations Section */
.destinations {
    padding: 100px 0;
    background: #f8f9fa;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.destination-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.destination-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.destination-info {
    padding: 2rem;
}

.destination-info h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Fleet Section */
.fleet {
    padding: 100px 0;
    background: #f8f9fa;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.fleet-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.fleet-card:hover {
    transform: translateY(-10px);
}

.fleet-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.fleet-info {
    padding: 30px;
}

.fleet-info h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.fleet-info p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.fleet-info ul {
    list-style: none;
    padding: 0;
}

.fleet-info li {
    color: #34495e;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.fleet-info li:last-child {
    border-bottom: none;
}

.fleet-info li:before {
    content: "✓";
    color: #2c3e50;
    font-weight: bold;
    margin-right: 10px;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/1000014924-min.jpg');
    background-size: cover;
    background-position: center left;
    background-attachment: fixed;
    text-align: left;
    color: white;
}

.cta-content h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
}

.btn-cta {
    display: inline-block;
    background: #2c3e50;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.btn-cta:hover {
    background: #34495e;
}

/* Responsive Design for CTA */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .btn-cta {
        padding: 14px 28px;
        font-size: 1rem;
    }
}



/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-main {
        background-position: center;
        padding: 120px 0 60px;
    }
    
    .hero-main-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-main-text h1 {
        font-size: 3.2rem;
        line-height: 1.2;
        text-align: left;
    }
    
    .hero-main-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-main-image-wrapper {
        order: -1;
        justify-content: center;
    }
    
    .hero-main-image-wrapper img {
        max-width: 80%;
    }
    
    .destinations-grid,
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    
    
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero-main-text h1 {
        font-size: 2.6rem;
        line-height: 1.3;
        text-align: left;
    }
    
    .hero-main-features {
        flex-direction: row;
        gap: 1rem;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .btn-hero-reserve {
        width: 100%;
        text-align: center;
    }
    
    .destinations,
    .fleet {
        padding: 60px 0;
    }
    
    .destination-info,
    .fleet-info {
        padding: 1.5rem;
    }
}

/* Smooth animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.destination-card,
.fleet-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll behavior enhancement */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Fixed Phone Button - Mobile Only */
.fixed-phone-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 50%;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.fixed-phone-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.6);
    color: white;
    text-decoration: none;
}

.fixed-phone-btn i {
    font-size: 24px;
}

/* Alternative style when over blue backgrounds for better contrast */
.fixed-phone-btn.contrast {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    animation: pulse-contrast 2s infinite;
}

.fixed-phone-btn.contrast:hover {
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
}

/* Neon green style when over book now sections */
.fixed-phone-btn.neon {
    background: linear-gradient(135deg, #28a745, #20a83a);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.5), 0 0 15px rgba(40, 167, 69, 0.2);
    animation: pulse-neon 2s infinite;
}

.fixed-phone-btn.neon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.7), 0 0 20px rgba(40, 167, 69, 0.3);
}

/* Pulse animation for attention */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(44, 62, 80, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(44, 62, 80, 0.7);
    }
    100% {
        box-shadow: 0 4px 15px rgba(44, 62, 80, 0.4);
    }
}

/* Pulse animation for contrast version */
@keyframes pulse-contrast {
    0% {
        box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(231, 76, 60, 0.7);
    }
    100% {
        box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    }
}

/* Pulse animation for neon version */
@keyframes pulse-neon {
    0% {
        box-shadow: 0 4px 15px rgba(34, 141, 59, 0.5), 0 0 15px rgba(31, 126, 53, 0.2);
    }
    50% {
        box-shadow: 0 4px 18px rgba(34, 141, 59, 0.7), 0 0 18px rgba(31, 126, 53, 0.3);
    }
    100% {
        box-shadow: 0 4px 15px rgba(34, 141, 59, 0.5), 0 0 15px rgba(31, 126, 53, 0.2);
    }
}

/* Show phone button on mobile devices */
@media (max-width: 768px) {
    .fixed-phone-btn {
        display: flex;
    }
}

/* Adjust for very small screens */
@media (max-width: 480px) {
    .fixed-phone-btn {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
    
    .fixed-phone-btn i {
        font-size: 22px;
    }
}

/* Fixed Book Button - Mobile Only */
.fixed-book-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 30px;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.4);
    z-index: 9998;
    transition: all 0.3s ease;
    min-width: 120px;
    gap: 8px;
}

.fixed-book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.6);
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #34495e, #2c3e50);
}

.fixed-book-btn i {
    font-size: 16px;
}

.fixed-book-btn span {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.final-cta-content p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 500;
}

.cta-feature i {
    font-size: 1.2rem;
    color: #ffffff;
}

.btn-final-cta {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #0b2333, #1a1a1a);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.btn-final-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(52, 152, 219, 0.4);
    background: linear-gradient(135deg, #103249, #2e2e2e);
    color: white;
    text-decoration: none;
}

/* Show book button on mobile devices */
@media (max-width: 768px) {
    .fixed-book-btn {
        display: flex;
    }
    
    .final-cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-features {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
}

/* Adjust for very small screens */
@media (max-width: 480px) {
    .fixed-book-btn {
        padding: 10px 16px;
        font-size: 13px;
        min-width: 100px;
        bottom: 15px;
        left: 15px;
    }
    
    .fixed-book-btn i {
        font-size: 14px;
    }
    
    .final-cta {
        padding: 60px 0;
    }
    
    .final-cta-content h2 {
        font-size: 1.8rem;
    }
    
    .final-cta-content p {
        font-size: 1rem;
    }
    
    .btn-final-cta {
        padding: 16px 32px;
        font-size: 1rem;
    }
} 