/* Enhanced Frontend Styles for Chibu Kite Instructor */

:root {
    --primary-color: #007bff;
    --primary-dark: #0056b3;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --ocean-blue: #1e3a8a;
    --ocean-light: #3b82f6;
    --sand-color: #fef3c7;
    --sunset-orange: #f97316;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --border-radius: 15px;
    --transition: all 0.3s ease;
}

/* Enhanced Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.7) 0%, rgba(59, 130, 246, 0.5) 100%);
    z-index: 2;
    backdrop-filter: blur(1px);
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Enhanced Buttons */
.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: var(--border-radius);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--ocean-light) 100%);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-secondary {
    background: linear-gradient(135deg, var(--sunset-orange) 0%, #fb923c 100%);
    color: white;
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: white;
}

/* Enhanced Sections */
.featured-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.featured-section:nth-child(even) {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--ocean-light) 100%);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced Cards */
.service-card, .package-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e2e8f0;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before, .package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--ocean-light) 100%);
}

.service-card:hover, .package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card img, .package-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 25px;
    border: 4px solid #e2e8f0;
    transition: var(--transition);
}

.service-card:hover img, .package-card:hover img {
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.service-card h3, .package-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.service-card p, .package-card p {
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Enhanced Pricing Cards */
.pricing-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-color);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 20px 0;
}

.price-currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.price-period {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 400;
}

/* Enhanced Images */
.img-fluid {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.img-fluid:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* Enhanced Forms */
.form-control {
    border: 2px solid #e2e8f0;
    border-radius: var(--border-radius);
    padding: 15px 20px;
    font-size: 1rem;
    transition: var(--transition);
    background: #f8fafc;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.15);
    background: white;
    transform: translateY(-2px);
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-size: 1rem;
}

/* Enhanced Contact Section */
.contact-info {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
    transition: var(--transition);
}

.contact-item:hover {
    background: #e2e8f0;
    transform: translateX(10px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    width: 40px;
    text-align: center;
}

/* Enhanced Weather Section */
.weather-card {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--ocean-light) 100%);
    color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
}

.weather-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.weather-temp {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.weather-condition {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.weather-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.weather-detail {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.weather-detail-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.weather-detail-value {
    font-size: 1.2rem;
    font-weight: 700;
}

/* Enhanced FAQ */
.accordion {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background: white;
    border: none;
    padding: 25px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-color);
    border-radius: 10px;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.15);
}

.accordion-body {
    padding: 25px 30px;
    background: #f8fafc;
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Enhanced Testimonials */
.testimonial-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    position: relative;
    border-left: 4px solid var(--primary-color);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-role {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--ocean-light) 100%);
}

.footer h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    font-size: 1.3rem;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer a {
    color: #d1d5db;
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    color: white;
    transform: translateX(5px);
}

/* Footer Brand Section */
.footer-brand {
    margin-bottom: 30px;
}

.footer-brand h5 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-brand h5 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1rem;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    display: flex;
    align-items: center;
    color: #d1d5db;
    transition: var(--transition);
    padding: 5px 0;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(8px);
}

.footer-links a i {
    margin-right: 10px;
    width: 16px;
    font-size: 0.9rem;
    color: var(--primary-color);
}

/* Contact Info */
.contact-info {
    margin-top: 10px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    color: #000000;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateX(5px);
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 1.2rem;
    color: #007bff;
    margin-right: 15px;
    margin-top: 3px;
    width: 20px;
    text-align: center;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    display: block;
    color: #000000;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.contact-item a {
    color: #007bff;
    font-weight: 500;
    text-decoration: none;
}

.contact-item a:hover {
    color: #0056b3;
    transform: none;
    text-decoration: underline;
}

.contact-item span {
    color: #333333;
    line-height: 1.4;
    font-weight: 500;
}

/* Social Links */
.social-links {
    display: flex !important;
    gap: 15px !important;
    margin-top: 25px !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

.social-links a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 45px !important;
    height: 45px !important;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
    color: white !important;
    border-radius: 50% !important;
    font-size: 1.2rem !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.2) !important;
}

.social-links a:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%) !important;
    transform: translateY(-5px) scale(1.1) !important;
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3) !important;
    color: white !important;
    text-decoration: none !important;
}

/* WhatsApp specific styling */
.social-links a[aria-label="WhatsApp"] {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    position: relative !important;
}

.social-links a[aria-label="WhatsApp"]:hover {
    background: linear-gradient(135deg, #128C7E 0%, #0e6b5a 100%) !important;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4) !important;
}

.social-links a[aria-label="WhatsApp"] i {
    font-size: inherit !important;
    line-height: 1 !important;
}

/* Instagram specific styling */
.social-links a[aria-label="Instagram"] {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 100%) !important;
}

.social-links a[aria-label="Instagram"]:hover {
    background: linear-gradient(135deg, #C13584 0%, #833ab4 100%) !important;
    box-shadow: 0 10px 25px rgba(225, 48, 108, 0.4) !important;
}

/* Facebook specific styling */
.social-links a[aria-label="Facebook"] {
    background: linear-gradient(135deg, #1877F2 0%, #0d47a1 100%) !important;
}

.social-links a[aria-label="Facebook"]:hover {
    background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%) !important;
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.4) !important;
}

/* TripAdvisor specific styling */
.social-links a[aria-label="TripAdvisor"] {
    background: linear-gradient(135deg, #00af87 0%, #007a63 100%) !important;
}

.social-links a[aria-label="TripAdvisor"]:hover {
    background: linear-gradient(135deg, #007a63 0%, #005a47 100%) !important;
    box-shadow: 0 10px 25px rgba(0, 175, 135, 0.4) !important;
}

/* Newsletter Section */
.newsletter-section {
    margin: 50px 0 40px;
}

.newsletter-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.newsletter-card h6 {
    color: white;
    margin-bottom: 10px;
    font-weight: 600;
}

.newsletter-card h6 i {
    color: var(--primary-color);
    margin-right: 8px;
}

.newsletter-card p {
    color: #d1d5db;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.newsletter-form .input-group {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 12px 20px;
    font-size: 0.95rem;
}

.newsletter-form .form-control:focus {
    background: white;
    box-shadow: none;
    border: none;
}

.newsletter-form .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--ocean-light) 100%);
    border: none;
    padding: 12px 20px;
    font-size: 1.1rem;
}

.newsletter-form .btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--ocean-blue) 100%);
    transform: none;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-top: 30px;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #9ca3af;
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
    transform: none;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--ocean-light) 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--ocean-blue) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--ocean-light) 100%);
    color: white;
    border-radius: 15px 15px 0 0;
    border-bottom: none;
}

.modal-header .btn-close {
    filter: invert(1);
}

.modal-body {
    padding: 30px;
}

.modal-body h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}

.modal-body ul {
    padding-left: 20px;
}

.modal-body li {
    margin-bottom: 8px;
    color: #6c757d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 60px 0 25px;
    }
    
    .footer h5 {
        font-size: 1.2rem;
    }
    
    .contact-item {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .social-links {
        justify-content: center !important;
        margin-top: 20px !important;
        gap: 15px !important;
        flex-wrap: wrap !important;
    }
    
    .social-links a {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.2rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .newsletter-card {
        padding: 25px 20px;
        text-align: center;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
    }
    
    .newsletter-form .btn-primary {
        margin-top: 10px;
        border-radius: 10px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        gap: 20px;
        margin-top: 15px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Mobile Responsive - Extra Small Devices */
@media (max-width: 480px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer h5 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .social-links {
        justify-content: center !important;
        margin-top: 15px !important;
        gap: 12px !important;
        flex-wrap: wrap !important;
    }
    
    .social-links a {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.1rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
        transition: all 0.3s ease !important;
    }
    
    .social-links a:hover {
        transform: translateY(-3px) scale(1.05) !important;
        box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3) !important;
    }
    
    .contact-item {
        padding: 10px;
        margin-bottom: 12px;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item i {
        margin-bottom: 8px;
        margin-right: 0;
        font-size: 1.1rem;
    }
}

/* Extra Small Devices - Very Small Screens */
@media (max-width: 360px) {
    .social-links {
        gap: 10px !important;
        margin-top: 12px !important;
    }
    
    .social-links a {
        width: 38px !important;
        height: 38px !important;
        font-size: 1rem !important;
    }
    
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer h5 {
        font-size: 1rem;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .social-links {
        gap: 12px !important;
        margin-top: 15px !important;
    }
    
    .social-links a {
        width: 42px !important;
        height: 42px !important;
        font-size: 1.1rem !important;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-brand h5 {
        font-size: 1.3rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item i {
        margin-bottom: 10px;
        margin-right: 0;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Header Logo Enhancement */
.header-title-logo img {
    height: 60px !important;
    width: auto !important;
    max-width: 200px !important;
    object-fit: contain !important;
    transition: all 0.3s ease !important;
}

.header-title-logo img:hover {
    transform: scale(1.05) !important;
}

/* Responsive Header Logo */
@media (max-width: 768px) {
    .header-title-logo img {
        height: 50px !important;
        max-width: 150px !important;
    }
}

@media (max-width: 480px) {
    .header-title-logo img {
        height: 45px !important;
        max-width: 120px !important;
    }
}

/* Header Container Adjustments */
.header-title-nav-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
}

.header-title {
    flex-shrink: 0 !important;
    margin-right: 20px !important;
}

.header-nav {
    flex: 1 !important;
    display: flex !important;
    justify-content: flex-end !important;
}

/* Mobile Header Adjustments */
@media (max-width: 768px) {
    .header-title-nav-wrapper {
        padding: 10px 0 !important;
    }
    
    .header-title {
        margin-right: 15px !important;
    }
}

/* Header Background and Spacing */
.header {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
    padding: 15px 0 !important;
}

.header-inner {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

/* Logo Link Styling */
.header-title-logo a {
    display: inline-block !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.header-title-logo a:hover {
    text-decoration: none !important;
}

/* Ensure proper logo alignment */
.header-title {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
}

.header-title-logo {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
}

/* Navigation Styling */
.header-nav-list {
    display: flex !important;
    align-items: center !important;
    gap: 30px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.header-nav-item a {
    color: #333 !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    padding: 8px 12px !important;
    border-radius: 6px !important;
}

.header-nav-item a:hover {
    color: #007bff !important;
    background: rgba(0, 123, 255, 0.1) !important;
    text-decoration: none !important;
}

.header-nav-item--active a {
    color: #007bff !important;
    background: rgba(0, 123, 255, 0.1) !important;
    font-weight: 600 !important;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .header-nav-list {
        flex-direction: column !important;
        gap: 15px !important;
        padding: 20px 0 !important;
    }
    
    .header-nav-item a {
        font-size: 18px !important;
        padding: 12px 20px !important;
    }
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid #fff;
}

.whatsapp-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
}

.whatsapp-link i {
    font-size: 24px;
}

.whatsapp-text {
    font-size: 14px;
    font-weight: 600;
}

/* Responsive Design for WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-link {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .whatsapp-text {
        font-size: 13px;
    }
    
    .whatsapp-link i {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .whatsapp-button {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-link {
        padding: 10px 14px;
        font-size: 12px;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-link {
        border-radius: 50%;
        width: 50px;
        height: 50px;
        justify-content: center;
        padding: 0;
    }
    
    .whatsapp-link i {
        font-size: 20px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .service-card, .package-card, .pricing-card {
        margin-bottom: 30px;
    }
    
    .weather-details {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 20px 15px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .featured-section {
        padding: 60px 0;
    }
    
    .service-card, .package-card, .pricing-card {
        padding: 30px 20px;
    }
    
    .weather-details {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--ocean-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-ocean {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--ocean-light) 100%);
}

.bg-gradient-sunset {
    background: linear-gradient(135deg, var(--sunset-orange) 0%, #fb923c 100%);
}

.shadow-custom {
    box-shadow: var(--shadow);
}

.shadow-lg-custom {
    box-shadow: var(--shadow-lg);
}
