/* ===================================
   Global Styles
   =================================== */
   :root {
    --primary-color: #1a5490;
    --secondary-color: #25D366;
    --accent-color: #ff6b6b;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* ===================================
   Top Header
   =================================== */
.top-header {
    background: var(--primary-color);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-contact .contact-link {
    color: white;
    text-decoration: none;
    transition: color 0.2s;
}

.top-contact .contact-link:hover {
    color: #ffd700;
}

.top-actions .btn {
    padding: 6px 15px;
    font-size: 13px;
    margin-left: 10px;
    border-radius: 5px;
    font-weight: 500;
}

.btn-whatsapp {
    background: var(--secondary-color);
    color: white;
    border: none;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    color: white;
}

.btn-call {
    background: white;
    color: var(--primary-color);
    border: none;
}

.btn-call:hover {
    background: #f0f0f0;
    color: var(--primary-color);
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    padding: 15px 0;
    transition: all 0.2s;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-img {
    height: 60px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.2s;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.btn-book {
    background: var(--primary-color);
    color: white !important;
    border-radius: 25px;
    padding: 8px 20px !important;
    margin-left: 10px;
}

.btn-book:hover {
    background: #144275;
    color: white !important;
}

/* ===================================
   Enquiry Form (Inside Hero)
   =================================== */
.enquiry-form-wrapper {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-top: 20px;
}

.enquiry-form-wrapper h2 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.enquiry-form-wrapper p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px !important;
}

.enquiry-form .form-control,
.enquiry-form .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    transition: border-color 0.3s;
}

.enquiry-form .form-control:focus,
.enquiry-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(26, 84, 144, 0.25);
}

.enquiry-form .form-check-label {
    font-size: 13px;
    color: var(--text-light);
}

.enquiry-form .btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 12px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.2s;
}

.enquiry-form .btn-primary:hover {
    background: #144275;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 84, 144, 0.3);
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../img/hero-banner.jpg') center/cover no-repeat;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 30px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    line-height: 1.6;
}

.hero-buttons .btn {
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    margin: 10px;
    transition: all 0.2s;
}

.hero-buttons .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.hero-buttons .btn-outline-light {
    border: 2px solid white;
}

.hero-buttons .btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* ===================================
   Section Styles
   =================================== */
.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* ===================================
   Services Section
   =================================== */
.services-section {
    background: #f0f4f8;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.2s;
    height: 100%;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), #2c6da3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.service-card h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   About Section - Modern Elegant Design
   =================================== */
.about-section {
    background: #f8f9fa;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(26, 84, 144, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    margin-bottom: 20px;
}

.section-badge span {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(26, 84, 144, 0.1), rgba(255, 107, 107, 0.1));
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 30px;
    border: 1px solid rgba(26, 84, 144, 0.2);
}

.section-badge-center {
    display: inline-block;
    margin-bottom: 20px;
}

.section-badge-center span {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(26, 84, 144, 0.1), rgba(255, 107, 107, 0.1));
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 30px;
    border: 1px solid rgba(26, 84, 144, 0.2);
}

.about-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

.about-main-title-center {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.title-highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--accent-color), rgba(255, 107, 107, 0.3));
    z-index: -1;
    border-radius: 4px;
}

.about-intro {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 400;
}

.about-intro strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Stats Section */
.about-stats {
    display: flex;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 25px 20px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 15px;
    border: 2px solid rgba(26, 84, 144, 0.1);
    transition: all 0.2s;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(26, 84, 144, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Modern Feature Items */
.about-features {
    margin: 40px 0;
}

.feature-item-modern {
    display: flex;
    gap: 20px;
    padding: 25px;
    margin-bottom: 20px;
    background: #ffffff;
    border-radius: 12px;
    border-left: 4px solid transparent;
    transition: all 0.2s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-item-modern:hover {
    border-left-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(26, 84, 144, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary-color), #2c6da3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(26, 84, 144, 0.2);
}

.feature-content h5 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Modern CTA Button */
.about-cta-modern {
    margin-top: 40px;
}

.btn-primary-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-color), #2c6da3);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(26, 84, 144, 0.3);
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(26, 84, 144, 0.4);
    color: white;
}

.btn-primary-modern i {
    transition: transform 0.3s;
}

.btn-primary-modern:hover i {
    transform: translateX(5px);
}

/* Modern Image Section */
.about-image-modern {
    position: relative;
    padding: 20px;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0,0,0,0.15);
    transition: all 0.25s;
}

.image-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 90px rgba(0,0,0,0.2);
}

.main-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.image-container:hover .main-image {
    transform: scale(1.08);
}

.image-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.image-badge i {
    color: #ffd700;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: white;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
    animation: floatCard 2s ease-in-out infinite;
}

.floating-card i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #2c6da3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.floating-card div {
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.floating-card span {
    color: var(--text-light);
    font-size: 0.85rem;
}

.card-1 {
    bottom: 80px;
    left: -30px;
    animation-delay: 0s;
}

.card-2 {
    top: 100px;
    right: -30px;
    animation-delay: 1.5s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ===================================
   Features Section
   =================================== */
.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.2s;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h5 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-item p {
    color: var(--text-light);
}

/* ===================================
   Gallery Section
   =================================== */
.gallery-section {
    background: #ffffff;
}

.features-section {
    background: #f8f9fa;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.2s;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.gallery-item a {
    display: block;
    cursor: pointer;
    text-decoration: none;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials-section {
    background: #ffffff;
}

.testimonial-carousel {
    margin-top: 30px;
    margin-bottom: 30px;
    overflow: hidden;
}

.testimonial-carousel .owl-stage-outer {
    overflow: hidden;
    padding-bottom: 20px;
}

.testimonial-carousel .owl-item {
    overflow: hidden;
    height: auto;
}

.testimonial-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.testimonial-video-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 0 15px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.video-wrapper {
    position: relative;
    padding-bottom: 85%;
    height: 0;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    background: #000;
    min-height: 500px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.testimonial-content {
    padding: 30px;
    padding-bottom: 40px;
    text-align: center;
    flex: 1;
}

.testimonial-content h5 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.testimonial-content p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.client-name {
    color: var(--primary-color);
    font-weight: 600;
}

/* Owl Carousel Customization */
.owl-nav {
    text-align: center;
    margin-top: 20px;
}

.owl-nav button {
    background: var(--primary-color) !important;
    color: white !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    margin: 0 10px;
    font-size: 24px !important;
    transition: all 0.2s;
}

.owl-nav button:hover {
    background: #144275 !important;
    transform: scale(1.1);
}

.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dots button.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc !important;
    margin: 0 5px;
    transition: all 0.2s;
}

.owl-dots button.owl-dot.active {
    background: var(--primary-color) !important;
    transform: scale(1.3);
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    background: #f0f4f8;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.2s;
    height: 100%;
}

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

.contact-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-card h5 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-card p {
    color: var(--text-light);
    margin: 0;
}

/* ===================================
   Map Section
   =================================== */
.map-section {
    width: 100%;
    padding: 0;
}

.map-container {
    width: 100%;
    height: 450px;
    position: relative;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ===================================
   Footer - Elegant Design
   =================================== */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
    color: #e0e0e0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
}

.footer-top {
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widget {
    position: relative;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 15px;
}

.footer-about {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.footer-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.2s;
    color: var(--primary-color);
}

.footer-links a:hover {
    color: white;
    padding-left: 20px;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(26, 84, 144, 0.4);
    border-color: var(--primary-color);
    color: white;
}

.social-link:nth-child(2):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #bc1888;
}

.social-link:nth-child(3):hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.social-link:nth-child(4):hover {
    background: #ff0000;
    border-color: #ff0000;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.footer-contact li:last-child {
    margin-bottom: 0;
}

.footer-contact i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(26, 84, 144, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 5px;
}

.footer-contact strong {
    color: white;
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.footer-contact p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

.footer-contact a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.5);
}

.footer-bottom p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom strong {
    color: white;
    font-weight: 600;
}

.footer-link {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.2s;
    margin: 0 5px;
}

.footer-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer a {
    text-decoration: none;
    transition: color 0.2s;
}

.footer a:hover {
    color: var(--primary-color) !important;
}

/* ===================================
   Responsive Styles
   =================================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
    }
    
    .hero-buttons {
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .enquiry-form-wrapper {
        padding: 25px;
        margin-top: 30px;
    }
    
    .enquiry-form-wrapper h2 {
        font-size: 1.5rem;
    }
    
    .top-actions {
        margin-top: 10px;
    }
    
    .top-actions .btn {
        display: block;
        width: 100%;
        margin: 5px 0;
    }
    
    .service-card,
    .feature-item,
    .contact-card {
        margin-bottom: 20px;
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .about-main-title {
        font-size: 2.2rem;
    }
    
    .about-content {
        margin-bottom: 40px;
    }
    
    .about-stats {
        gap: 15px;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .main-image {
        height: 400px;
    }
    
    .floating-card {
        position: relative;
        margin: 10px 0;
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
    }
    
    .image-badge {
        top: 15px;
        right: 15px;
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .footer-about {
        font-size: 0.9rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-contact li {
        margin-bottom: 20px;
    }
    
    .footer-contact i {
        width: 35px;
        height: 35px;
        min-width: 35px;
        font-size: 1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
    
    .video-wrapper {
        padding-bottom: 75%;
        min-height: 350px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .video-wrapper {
        padding-bottom: 70%;
        min-height: 300px;
    }
}

/* ===================================
   Smooth Scroll
   =================================== */
html {
    scroll-behavior: smooth;
}

/* ===================================
   Animation Classes
   =================================== */
.wow {
    visibility: hidden;
}

/* Reduce WOW.js animation duration */
.animate__animated {
    animation-duration: 0.6s !important;
    animation-delay: 0s !important;
}

.animate__delay-1s {
    animation-delay: 0.3s !important;
}

.animate__delay-2s {
    animation-delay: 0.5s !important;
}

.animate__delay-3s {
    animation-delay: 0.7s !important;
}


/* ===================================
   WhatsApp Floating Button
   =================================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 1.5s infinite;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    margin-top: 0;
    line-height: 1;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
        font-size: 28px;
    }
}
/* ===================================
   Scroll to Top Button
   =================================== */
.scroll-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 90px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), #2c6da3);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(26, 84, 144, 0.3);
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.scroll-to-top.show {
    display: flex;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #144275, var(--primary-color));
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(26, 84, 144, 0.5);
}

.scroll-to-top i {
    margin-top: 0;
    line-height: 1;
}

/* Responsive Scroll to Top Button */
@media (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 80px;
        right: 15px;
        font-size: 18px;
    }
}

