﻿/* ========================================
   DAVE WARD - COMPLETE HYBRID STYLES
   ======================================== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BACKGROUND IMAGE - ORIGINAL */
html {
    background-color: #000;
    background-image: url('content/images/pg_bk.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100%;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    background-image: url('content/images/pg_bk.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    line-height: 1.6;
    min-height: 100vh;
}

/* HEADER & NAVIGATION - ORIGINAL */
.header {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    position: absolute;
    left: 20px;
    top: 10px;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu li a {
    color: #ccc;
    text-decoration: none;
    padding: 10px 15px;
    transition: color 0.3s;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu li a:hover {
    color: #fff;
}

.mobile-menu-toggle {
    display: none;
}

.mobile-whatsapp {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('content/images/DWStrip.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%; /* Changed from 100% to cover */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 80px;
    width: 100%; /* Ensure the container takes full width */
    max-width: none; /* Remove any potential width constraints */
}

.hero-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.hero-left {
    flex: 1;
    padding-right: 50px;
}

.hero-nav {
    list-style: none;
    margin-bottom: 30px;
}

.hero-nav li {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: normal;
    cursor: pointer;
    transition: color 0.3s;
    color: #ffff00;
}

.hero-nav li:hover {
    color: #ffffff;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 100px;
}

.watch-dave-container {
    display: flex;
    align-items: center;
    gap: 25px;
}

.watch-dave-text {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    white-space: nowrap;
}

.watch-dave-image {
    width: 120px;
    height: 120px;
    background-image: url('content/images/watch.webp');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.watch-dave-image:hover {
    transform: scale(1.05);
    border-color: #ffff00;
    box-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
}

.watch-dave-image::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.watch-dave-image:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

/* Section Divider */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffff00, transparent);
    margin: 0;
    width: 100%;
}

/* ABOUT SECTION - NO GREY BACKGROUND */
.about-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: transparent;
}

.about-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    margin-bottom: 50px;
}

.about-content h2 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: left;
}

.about-content p {
    color: #ccc;
    line-height: 1.8;
    font-size: 14px;
}

.read-more-link {
    color: #0873a7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.read-more-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* About Grid - 3 cards across */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.about-grid .service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-grid .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 255, 0, 0.2);
    border-color: rgba(255, 255, 0, 0.5);
}

.about-grid .service-card .service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    border-bottom: 2px solid rgba(255, 255, 0, 0.3);
}

.about-grid .service-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.about-grid .service-card .service-image img:hover {
    transform: scale(1.05);
}

.about-grid .service-card h3 {
    color: #0873a7;
    font-size: 20px;
    margin: 0;
    padding: 20px 20px 10px;
    font-weight: bold;
}

.about-grid .service-card p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    padding: 0 20px 20px;
    margin: 0;
}

/* About Highlights - 3 boxes */
.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #0873a7;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 255, 0, 0.2);
}

.highlight-item h4 {
    color: #0873a7;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
}

.highlight-item p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* SECTION STYLES */
section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

section h2 {
    font-size: 42px;
    color: #0873a7;
    margin-bottom: 30px;
    text-align: left;
}

section h3 {
    font-size: 28px;
    color: #fff;
    margin: 30px 0 15px;
}

section p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}

.section-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #ccc;
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: center;
}

/* SERVICE SECTION */
.service-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #fff;
}

.service-section h3 {
    color: #fff;
    font-size: 18px;
    margin: 30px 0 15px 0;
}

.service-section p {
    color: #ccc;
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 15px;
}

.service-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.service-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 255, 0, 0.2);
    border-color: rgba(255, 255, 0, 0.5);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.service-image img:hover {
    transform: scale(1.05);
}

/* Services Grid for cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.services-grid .service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.services-grid .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 255, 0, 0.2);
    border-color: rgba(255, 255, 0, 0.5);
}

.services-grid .service-card .service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-bottom: 2px solid rgba(255, 255, 0, 0.3);
}

.services-grid .service-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.services-grid .service-card .service-image img:hover {
    transform: scale(1.05);
}

.services-grid .service-card h3 {
    color: #0873a7;
    font-size: 20px;
    margin: 0;
    padding: 20px 20px 10px;
    font-weight: bold;
}

.services-grid .service-card p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    padding: 0 20px;
    margin: 0 0 15px 0;
}

.services-grid .service-card ul {
    color: #ccc;
    font-size: 14px;
    line-height: 1.8;
    padding: 0 20px 20px 40px;
    margin: 0;
    flex-grow: 1;
}

.services-grid .service-card ul li {
    margin-bottom: 8px;
}

/* Quote/Testimonial Highlights */
.quote-highlight {
    background: rgba(255, 255, 0, 0.1);
    border-left: 4px solid #0873a7;
    padding: 20px 30px;
    margin: 30px 0;
    border-radius: 5px;
    text-align: center;
}

.quote-highlight p {
    font-size: 16px;
    font-style: italic;
    color: #fff;
    margin: 0;
}

.testimonial-highlight {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #0873a7;
    padding: 25px 35px;
    margin: 40px 0;
    border-radius: 5px;
    backdrop-filter: blur(10px);
}

.testimonial-highlight p {
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
    margin: 0;
}

.corporate-badges {
    background: rgba(255, 255, 0, 0.05);
    padding: 15px 25px;
    border-radius: 5px;
    text-align: center;
    margin: 20px 0 30px;
}

.corporate-badges p {
    font-size: 14px;
    color: #ffff00;
    margin: 0;
    font-weight: bold;
}

/* Buttons & Links */
/* Standardized Button Heights - Both same as read-more-btn */

.read-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0873a7;
    color: #000;
    padding: 0 30px;
    height: 44px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 20px;
    border: none;
    cursor: pointer;
}

.read-more-btn:hover {
    background: #e6e600;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 0, 0.3);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0873a7;
    color: #000;
    padding: 0 40px;
    height: 44px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #e6e600;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 0, 0.3);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cta-buttons .read-more-btn,
.cta-buttons .cta-button {
    margin-top: 0;
}

/* REVIEWS SECTION - ORIGINAL */
.reviews-section {
    background: #000;
    padding: 80px 20px;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-container h2 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 20px;
    text-align: left;
}

/* Reviews Carousel */
.reviews-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    min-height: 200px;
    width: 100%;
}

.reviews-wrapper {
    display: flex;
    transition: transform 0.3s ease;
    height: auto;
    width: 300%;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 33.333%;
    flex-shrink: 0;
}

.review-card {
    background: rgba(20, 20, 20, 0.8);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #333;
    opacity: 0;
}

.review-card p {
    color: #ccc;
    font-size: 12px;
    line-height: 1.6;
    font-style: italic;
}

.stars {
    color: #ffff00;
    font-size: 16px;
    margin-bottom: 15px;
}

/* Review Expansion Styles */
.review-text {
    position: relative;
}

.review-short,
.review-full {
    display: inline;
}

.read-more-review-btn {
    background: none;
    border: none;
    color: #ffff00;
    cursor: pointer;
    font-size: 12px;
    padding: 5px 0;
    text-decoration: underline;
    display: inline-block;
    margin-left: 5px;
    font-family: inherit;
    transition: color 0.3s ease;
}

.read-more-review-btn:hover {
    color: #fff;
}

.read-more-review-btn:focus {
    outline: none;
    color: #fff;
}

.review-card.expanded .review-short {
    display: none;
}

.review-card.expanded .review-full {
    display: inline !important;
}

.review-card.expanded .read-more-review-btn {
    display: block;
    margin-top: 10px;
    margin-left: 0;
}

.review-author {
    color: #ffff00;
    font-size: 12px;
    font-style: normal;
    font-weight: bold;
    margin-top: 15px;
    text-align: right;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #333;
    color: #fff;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.carousel-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-indicators {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.3s;
}

.indicator.active {
    background: #ffff00;
}

/* CONTACT FORMS */
.simple-contact-section {
    padding: 80px 20px;
}

.simple-contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.simple-contact-container h2 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 10px;
    text-align: left;
}

.simple-contact-container p {
    color: #ccc;
    margin-bottom: 40px;
    text-align: left;
    font-size: 16px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-link {
    color: #ffff00;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #fff;
}

.whatsapp-link {
    background: #25D366;
    color: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
}

.whatsapp-link:hover {
    background: #1eb53a;
    transform: translateY(-2px);
}

.simple-contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.simple-contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.simple-form-group {
    display: flex;
    flex-direction: column;
}

.simple-form-group.full-width {
    grid-column: 1 / -1;
}

.simple-form-group input,
.simple-form-group textarea {
    padding: 12px 15px;
    border: 1px solid #555;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
}

.simple-form-group input::placeholder,
.simple-form-group textarea::placeholder {
    color: #ccc;
}

.simple-form-group input:focus,
.simple-form-group textarea:focus {
    outline: none;
    border-color: #ffff00;
    background: rgba(255, 255, 255, 0.15);
}

.simple-submit-btn {
    background: #0873a7;
    color: #000;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s;
    justify-self: start;
}

.simple-submit-btn:hover {
    background: #e6e600;
    transform: translateY(-2px);
}

.simple-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Quote/Contact Form Section */
.contact-section {
    padding: 80px 20px;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-container h2 {
    color: #fff;
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-container p {
    color: #ccc;
    margin-bottom: 30px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group.date-time-group {
    position: relative;
}

.form-section-header {
    grid-column: 1 / -1;
    margin: 20px 0 10px 0;
}

.form-section-header h3 {
    color: #fff;
    font-size: 16px;
    font-weight: normal;
    margin: 0;
}

.form-group.submit-group {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.form-group label {
    color: #ccc;
    margin-bottom: 5px;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 15px;
    border: 1px solid #666;
    border-radius: 5px;
    background: #fff;
    color: #333;
    font-size: 14px;
    height: 45px;
}

.form-group input::placeholder {
    color: #999;
    font-size: 14px;
}

.form-group select {
    color: #666;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.form-group input[type="datetime-local"] {
    color: #666;
}

.form-note {
    color: #ccc;
    font-size: 12px;
    margin-top: 5px;
    font-style: italic;
}

.submit-btn {
    background: #666;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: normal;
    transition: background 0.3s;
    height: 45px;
}

.submit-btn:hover:not(:disabled) {
    background: #777;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* FOOTER - ORIGINAL */
.footer {
    background-color: #000;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
}

.footer-left-logo {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.footer-left-logo img {
    max-height: 60px;
    width: auto;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex: 2;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #00ffff;
}

.footer-right-logo {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.footer-right-logo img {
    max-height: 60px;
    width: auto;
}

.footer-text {
    text-align: center;
    width: 100%;
    color: #999;
    font-size: 0.9rem;
}

/* VIDEO POPUP */
.video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-popup.active {
    opacity: 1;
    visibility: visible;
}

.video-popup-content {
    position: relative;
    width: 90%;
    max-width: 900px;
}

.video-popup-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.video-popup-close:hover {
    color: #ffff00;
}

#daveVideo {
    width: 100%;
    border-radius: 10px;
}

/* IMAGE LIGHTBOX */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #ffff00;
}

.lightbox-image {
    width: 100%;
    border-radius: 10px;
}

/* ANIMATIONS */
@keyframes slideIn {
    from { 
        transform: translateX(400px); 
        opacity: 0; 
    }
    to { 
        transform: translateX(0); 
        opacity: 1; 
    }
}

@keyframes slideOut {
    from { 
        transform: translateX(0); 
        opacity: 1; 
    }
    to { 
        transform: translateX(400px); 
        opacity: 0; 
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes slideUp {
    from { 
        transform: translateY(50px); 
        opacity: 0; 
    }
    to { 
        transform: translateY(0); 
        opacity: 1; 
    }
}

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    body {
        background-attachment: scroll;
    }

    .about-section {
        background-color: rgba(0, 0, 0, 0.85);
    }

    .reviews-section {
        background: rgba(0, 0, 0, 0.85);
    }

    .header {
        padding: 8px 0;
    }

    .logo img {
        height: 45px;
    }

    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 15px;
    }

    .logo {
        position: static;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li a {
        font-size: 12px;
        padding: 10px 20px;
        width: 100%;
        text-align: left;
        display: block;
    }

    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
    }

    .mobile-whatsapp {
        display: block;
        background: #25D366;
        border: none;
        border-radius: 50%;
        width: 44px;
        height: 44px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }

    .hero {
        height: 40vh;
        margin-top: 80px;
        background-size: cover;
    }

    .hero-content {
        flex-direction: row;
        padding: 10px;
        justify-content: flex-start;
    }

    .hero-left {
        padding-right: 0;
        flex: none;
        width: auto;
    }

    .hero-nav li {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .hero-right {
        padding-right: 10px;
    }

    .watch-dave-container {
        flex-direction: column;
        gap: 10px;
        align-items: flex-end;
    }

    .watch-dave-text {
        font-size: 16px;
    }

    .watch-dave-image {
        width: 70px;
        height: 70px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 250px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .simple-contact-form {
        grid-template-columns: 1fr;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .reviews-wrapper {
        width: 300%;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 33.333%;
        padding: 0 10px;
    }

    .carousel-btn {
        background: rgba(255, 255, 255, 0.2);
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .indicator {
        width: 15px;
        height: 15px;
    }

    .service-images {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-left-logo,
    .footer-right-logo {
        justify-content: center;
    }

    .read-more-review-btn {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 35vh;
    }
    
    .hero-nav li {
        font-size: 12px;
    }

    .about-content h2,
    .reviews-container h2,
    .service-section h2,
    .contact-container h2,
    .simple-contact-container h2 {
        font-size: 24px;
    }

    .watch-dave-image {
        width: 60px;
        height: 60px;
    }
    
    .watch-dave-text {
        font-size: 14px;
    }
    
    .service-image {
        height: 200px;
    }
}