/* Header Styles */
.header {
    background-color: #000000;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    transition: all 0.3s ease;
}

/* Add padding to body when menu is open to prevent scrolling */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo Styles */
.logo {
    z-index: 1001;
}

.logo img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 15px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
}

.nav-links a:hover {
    color: #FFD700;
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    color: #333 !important;
    padding: 1px 2px;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
    color: #000 !important;
}

/* Mobile Menu Styles */
@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #000;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 999;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        padding: 12px 20px;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.1);
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #0c9608;
}

/* Buttons in Navigation */
.payment-btn, .quote-btn {
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.payment-btn {
    background: transparent;
    border: 2px solid #0c9608;
    color: #0c9608;
}

.quote-btn {
    background: #ffffff;
    color: #000000;
    border: 2px solid #9e9e9e;
    box-shadow: 0 2px 8px rgb(255, 255, 255);
}

.payment-btn:hover, .quote-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Mobile Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Menu */
@media (max-width: 992px) {
    /* Adjust header height on mobile */
    .header {
        padding: 8px 0;
    }
    
    /* Make logo slightly smaller on mobile */
    .logo img {
        height: 36px;
    }
    .hamburger {
        display: flex;
        padding: 10px;
        margin-right: -5px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #000000;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 80px;
        padding-left: 30px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 12px 0;
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.4s ease;
        width: 100%;
    }
    
    .nav-links a {
        font-size: 18px;
        padding: 10px 0;
        display: block;
        width: 100%;
        color: #f0f0f0;
        transition: color 0.2s ease;
    }
    
    .nav-links a:hover {
        color: #0c9608;
        padding-left: 5px;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    /* Staggered animation for menu items */
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.35s; }
    .nav-links.active li:nth-child(7) { transition-delay: 0.4s; }
    
    /* Button styles in mobile menu */
    .nav-links .payment-btn,
    .nav-links .quote-btn {
        margin: 20px 0 0;
        padding: 12px 20px;
        width: 220px;
        text-align: center;
        border-radius: 6px;
        font-weight: 600;
        font-size: 16px;
    }
    
    .nav-links .payment-btn {
        background: transparent;
        border: 2px solid #0c9608;
        color: #0c9608;
    }
    
    .nav-links .quote-btn {
        background: #0c9608;
        color: white;
        border: 2px solid #0c9608;
    }
    
    /* Menu overlay */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Adjust hero section margin for fixed header */
.hero {
    margin-top: 70px;
}

/* Animate hamburger to X when menu is open */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Quote Popup Styles */
.quote-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(189, 34, 34, 0.8);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

/* Logo Size */
.logo-img, .logo img {
    height: 32px !important;
    max-height: 32px !important;
    width: auto !important;
}
.logo, .logo a {
    font-size: 2.8rem !important;
    line-height: 75px !important;
}

/* Transport Modes Section */
.transport-modes {
    padding: 40px 0;
    background: #fff;
}

/* Collapsible Sections */
.toggle-section-btn {
    position: relative;
    transition: all 0.3s ease;
    outline: none;
    text-align: left;
}

.toggle-section-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.toggle-section-btn:focus {
    box-shadow: 0 0 0 3px rgba(199, 21, 133, 0.3);
}

.toggle-section-btn[data-target="available-cities-content"]:focus {
    box-shadow: 0 0 0 3px rgba(12, 150, 8, 0.3);
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
}

.collapsible-content.active {
    max-height: 1000px;
    opacity: 1;
    visibility: visible;
    transition: max-height 0.5s ease-in, opacity 0.3s ease-in;
}

/* City tags hover effect */
.city-tag {
    transition: all 0.2s ease;
    cursor: pointer;
}

.city-tag:hover {
    background: #0c9608 !important;
    color: white !important;
    border-color: #0c9608 !important;
    transform: translateY(-2px);
}

/* Search form focus states */
#city-search:focus {
    border-color: #0c9608 !important;
    box-shadow: 0 0 0 2px rgba(12, 150, 8, 0.2);
    outline: none;
}

.search-btn:hover {
    background: #0a7a06 !important;
}

.modes-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.mode-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.mode-icon {
    font-size: 32px;
    color: #0c9608;
    margin-bottom: 16px;
}

.mode-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #232946;
}

.mode-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.mode-card li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
}

.mode-card li b {
    margin-right: 8px;
    color: #0c9608;
}

/* Coming Soon & Available Cities Section */
.coming-available-section {
    background: #f7f7f9;
    border-top: 1.5px solid #e0e0e0;
    padding: 36px 0 18px;
}

.coming-available-section .container > div {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
    align-items: stretch;
    justify-content: center;
}

.delivery-card {
    margin: 0;
    box-shadow: 0 6px 24px rgba(199, 21, 133, 0.08);
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.responsive-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.text-container {
    padding: 30px 18px;
}

.text-container h3 {
    color: #C71585;
    margin-top: 0;
    font-size: 1.6rem;
    line-height: 1.3;
}

.text-container p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #444;
}

.image-container {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container img {
    max-width: 220px;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.available-cities-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(199, 21, 133, 0.08);
    padding: 30px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.available-cities-card h3 {
    color: #0c9608;
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.search-form {
    margin-bottom: 12px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.search-box input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
}

.search-btn {
    background: #0c9608;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-btn:hover {
    background: #0a7a07;
}

.popular-cities {
    margin-top: 8px;
    font-size: 0.95rem;
}

/* Coming Soon & Available Cities Section */
.coming-available-section {
    background: #f7f7f9;
    border-top: 1.5px solid #e0e0e0;
    padding: 36px 0 18px;
}

.collapsible-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.collapsible-wrapper {
    position: relative;
}

.toggle-section-btn {
    background: #fff;
    border: 2px solid #C71585;
    border-radius: 10px;
    padding: 15px 25px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    transition: all 0.3s ease;
    margin: 0;
}

.toggle-section-btn[data-target="available-cities-content"] {
    border-color: #0c9608;
}

.toggle-section-btn h3 {
    color: #C71585;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.toggle-section-btn[data-target="available-cities-content"] h3 {
    color: #0c9608;
}

.toggle-section-btn i {
    transition: transform 0.3s ease;
}

.collapsible-content {
    background: #fff;
    border-radius: 0 0 10px 10px;
    border: 2px solid #f0f0f0;
    border-top: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
    visibility: hidden;
}

.collapsible-content.active {
    max-height: 1000px;
    opacity: 1;
    visibility: visible;
    transition: max-height 0.5s ease-in, opacity 0.3s ease-in;
}

/* Coming Soon Content */
.responsive-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    align-items: center;
    padding: 20px 0;
}

.text-container {
    padding: 10px 0;
}

.city-description {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #444;
}

.city-next {
    font-weight: 500;
    margin: 0;
    color: #232946;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.city-image {
    max-width: 220px;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* City Search Section */
.city-button-wrapper {
    margin-top: 20px;
}

.city-search-container {
    padding: 20px 25px 25px;
}

.city-search-text {
    color: #444;
    font-size: 1.08em;
    margin-bottom: 15px;
}

.search-form {
    margin-bottom: 15px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-box i {
    color: #888;
}

#city-search {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

.search-btn {
    background: #0c9608;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.search-btn:hover {
    background: #0a7a06;
}

.popular-cities-title {
    color: #666;
    font-size: 0.98em;
    margin-bottom: 10px;
}

.city-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* City tags */
.city-tag {
    color: #0c9608;
    -webkit-text-fill-color: #0c9608; /* For Safari/Chrome */
    margin-right: 8px;
    text-decoration: none;
    white-space: nowrap;
    display: inline-block;
    margin-bottom: 5px;
}

.city-tag:hover {
    text-decoration: underline;
}

/* Responsive styles for Coming Soon & Available Cities */
@media (max-width: 992px) {
    .coming-available-section .container > div {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .responsive-container {
        grid-template-columns: 1fr;
    }
    
    .image-container {
        padding: 0 15px 20px;
    }
    
    .image-container img {
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .coming-available-section {
        padding: 30px 0 10px;
    }
    
    .text-container {
        padding: 25px 20px;
    }
    
    .text-container h3 {
        font-size: 1.4rem;
    }
    
    .available-cities-card {
        padding: 25px 20px;
    }
    
    .search-box {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-btn {
        width: 100%;
        padding: 12px;
    }
    
    .popular-cities {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .city-tag {
        margin: 0;
        padding: 3px 8px;
        background: rgba(12, 150, 8, 0.08);
        border-radius: 4px;
        transition: background-color 0.2s;
    }
    
    .city-tag:hover {
        background: rgba(12, 150, 8, 0.15);
        text-decoration: none;
    }
}

@media (max-width: 480px) {
    .text-container h3 {
        font-size: 1.3rem;
    }
    
    .available-cities-card h3 {
        font-size: 1.2rem;
    }
    
    .search-box input {
        padding: 12px;
    }
    
    .popular-cities {
        font-size: 0.9rem;
    }
}

/* Responsive styles */
@media (max-width: 992px) {
    .modes-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .mode-card {
        width: 100%;
        max-width: 100%;
    }
}

/* Extra mobile tweaks for perfect mobile view */
@media (max-width: 600px) {
  .header {
    padding: 6px 0;
  }
  .navbar {
    flex-direction: row;
    padding: 0 8px;
  }
  .logo a {
    font-size: 1.1rem;
    margin-left: 0 !important;
  }
  .nav-links {
    padding: 18px 10px 10px 18px;
    border-radius: 18px;
    font-size: 1.1rem;
    width: 90vw;
    max-width: 99vw;
  }
  .nav-links li {
    margin-left: 0;
    margin-bottom: 10px;
  }
  .hero {
    flex-direction: column;
    min-height: 420px;
    padding: 30px 0 10px 0;
  }
  .hero-container {
    flex-direction: column;
    gap: 18px;
    padding: 0 2vw;
  }
  .hero-video {
    max-width: 220px;
    width: 100vw;
    aspect-ratio: 16 / 9;
    border-radius: 0 900px 900px 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    margin: 0 auto 12px auto;
    overflow: hidden;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-content {
    max-width: 100vw;
    margin: 0;
    padding: 10px 2vw !important;
    border-radius: 12px;
    box-shadow: none;
  }
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 18px;
  }
  .service-card {
    min-height: unset;
    padding: 10px 4px;
  }
  .card-front h3 {
    font-size: 1.1rem;
  }
  .card-front p {
    font-size: 0.98rem;
  }
  .section-title {
    font-size: 1.3rem;
    margin-bottom: 18px;
  }
  .footer {
    padding: 10px 0 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 18px 0 18px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    padding: 10px 0;
  }
  .newsletter-form {
    flex-direction: column;
    gap: 8px;
  }
  .newsletter-form input, .newsletter-form button {
    border-radius: 8px !important;
    width: 100%;
  }
}

@media (max-width: 400px) {
  .hero-content h1 {
    font-size: 1.1rem;
  }
  .section-title {
    font-size: 1.1rem;
  }
  .footer-about h3 {
    font-size: 1rem;
  }
}

.quote-popup.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.popup-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.quote-popup.show .popup-content {
    transform: translateY(0);
    opacity: 1;
    animation: slideUp 0.4s ease forwards;
}

@keyframes slideUp {
    from { 
        transform: translateY(30px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: 300;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #000;
}

.popup-content h2 {
    color: #000;
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}

.popup-subtitle {
    color: #666;
    text-align: center;
    margin-bottom: 30px;
    font-size: 15px;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.half-width {
    flex: 1;
}

.quote-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    color: #333;
    background: #f9f9f9;
    transition: all 0.3s ease;
}

.quote-form input:focus {
    border-color: #000;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.quote-form label {
    position: absolute;
    left: 15px;
    top: 12px;
    color: #999;
    font-size: 15px;
    transition: all 0.3s ease;
    pointer-events: none;
    background: #fff;
    padding: 0 5px;
    margin: 0 -5px;
}

.quote-form input:focus + label,
.quote-form input:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    color: #000;
    background: #fff;
    padding: 0 5px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin: 15px 0 5px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.checkbox-group label {
    position: static;
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.terms-link {
    color: #000;
    text-decoration: underline;
    font-weight: 600;
}

.submit-btn {
    background: #000;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .popup-content {
        width: 90%;
        padding: 30px 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .half-width {
        width: 100%;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: color 0.2s;
}

.close:hover {
    color: #d32f2f;
}

/* Header */
.header {
    position: relative;
    padding: 2px 0;
    width: 100%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8px;
}

/* Hero Section */
.hero {
    position: relative;
    background-color: #fff;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
    min-height: 90vh;
    width: 100%;
    display: flex;
    align-items: stretch;
}

.hero-container {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 0 !important;
    margin: 0 !important;
    position: relative;
    max-width: 100% !important;
    align-items: stretch;
}

.hero-video {
  max-width: 480px; /* or whatever fits your layout */
  aspect-ratio: 1 / 1; /* Makes it a square, change to 16/9 for widescreen */
  border-radius: 0 300px 300px 0;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  margin-right: 2rem; /* space between video and content */
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .hero-video {
    border-radius: 0 300px 300px 0;
  }
}

/* Force D curve for hero-video on desktop/tablet */
@media (min-width: 769px) {
  .hero-video {
    border-radius: 0 300px 300px 0 !important;
  }
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Speech bubble */
.speech-bubble {
    position: absolute;
    top: 30px;
    left: 30px;
    background: black;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    z-index: 10;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20px;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: black transparent transparent;
}

/* Location tag */
.location-tag {
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: #ffffff;
    padding: 8px 15px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 10;
}

.elementor-element-850ab1f {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.elementor-background-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.elementor-background-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Video container */
.elementor-element-850ab1f {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: stretch;
}

.elementor-element-08f8b5c {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
}

.elementor-heading-title {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
}

.hero-content {
    flex: 0 0 45%;
    max-width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5%;
    background: white;
    z-index: 2;
    position: relative;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    margin-left: -50px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.2;
    text-align: left;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.5;
    text-align: left;
    max-width: 500px;
    font-weight: 400;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Location Tag */
.location-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    padding: 8px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 2;
}

/* Speech Bubble */
.speech-bubble {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    z-index: 2;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20px;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: #000 transparent transparent;
}

.speech-bubble .heart {
    color: #4CAF50;
}

/* Base Styles & Variables */
:root {
    --primary-color: #000;
    --secondary-color: #222;
    --accent-color: #555;
    --dark-color: #111;
    --light-color: #f5f5f5;
    --text-color: #111;
    --text-light: #666;
    --white: #fff;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --border-radius: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    min-height: 60vh;
}

/* Scroll Animation */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.testimonial-card.fast-animate.scroll-animate {
    transition: opacity 0.4s cubic-bezier(0.4,0,0.2,1), transform 0.4s cubic-bezier(0.4,0,0.2,1) !important;
}
.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

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

section {
    padding: 50px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

/* Video Caption */
.icon-combo i:last-child {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 16px;
    background: #ffffff;
    color: #000000;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000000;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.15rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition), transform 0.18s cubic-bezier(0.4,0,0.2,1), box-shadow 0.18s cubic-bezier(0.4,0,0.2,1);
    border: 2px solid transparent;
    color: #000;
}

.shiny-btn {
    background: linear-gradient(120deg, #000 38%, #fff 50%, #000 62%);
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    transform: scale(1.07) translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.13);
    color: inherit;
    background: inherit;
    -webkit-background-clip: inherit;
    background-clip: inherit;
    -webkit-text-fill-color: inherit;
    text-fill-color: inherit;
}

@keyframes shine {
  0% {
    background-position: 100%;
  }
  100% {
    background-position: -100%;
  }
}

.btn:hover, .btn:focus {
    transform: scale(1.07) translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,166,81,0.13);
}

.btn-primary {
    background-color: #000;
    color: #fff;
}

.btn-primary:hover {
    background-color: #222;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.btn-secondary {
    background-color: #fff;
    color: #000;
    border: 2px solid #000;
}

.btn-secondary:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.btn-white {
    background-color: #fff;
    color: #000;
}

.btn-white:hover {
    background-color: #ffe400 !important;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-text {
    color: #000;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.btn-text i {
    margin-left: 5px;
    transition: var(--transition);
}

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

/* Top Bar - Removed */

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    padding: 6px 0;
    z-index: 1001; /* Higher than video */
    transition: var(--transition);
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 6px 20px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 24px;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-links li {
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 16px;
    transition: all 0.3s ease;
    display: block;
    font-size: 0.95rem;
}

.nav-links a:hover {
    background-color: rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

/* Style for the Get a Quote button */
.nav-links .quote-btn {
background-color: #ffe400;
color: #000 !important;
padding: 8px 20px !important;
margin-left: 10px;
font-weight: 600;
}
@media (max-width: 991px) {
.nav-links .quote-btn {
margin-left: 0 !important;
}
}

.nav-links .quote-btn:hover {
    background-color: #ffe400;
    color: #000 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.13);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    color: #333;
    margin-left: 8px; /* Move logo a little to the left */
    transition: transform 0.2s, box-shadow 0.2s;
    animation: logo-bounce-in 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.2s both;
}

@keyframes logo-bounce-in {
  0% {
    opacity: 0;
    transform: scale(0.7) translateY(-40px);
  }
  60% {
    opacity: 1;
    transform: scale(1.1) translateY(10px);
  }
  80% {
    transform: scale(0.95) translateY(-4px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.logo a:hover {
    transform: scale(1.08) rotate(-2deg);
}

.logo a:hover .logo-bubble {
    background-color: #004E89 !important;
    color: #fff !important;
    transition: background 0.2s, color 0.2s;
}

.logo a:hover .logo-heart {
    color: #FF6B35 !important;
    transition: color 0.2s;
}

.logo-box {
    background: #000;
    padding: 2px 40px;
    border-radius: 8px;
    display: inline-flex;
    align-items: left !important;
    justify-content: left;
    margin-left: -20px;
}

.logo-bubble {
    background-color: #000;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    margin-right: 5px;
}

.logo-heart {
    color: #555;
    font-size: 1.8rem;
    margin-left: 5px;
}

.logo-bubble {
    background-color: #000;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    padding: 5px 15px;
    border-radius: 50px;
    margin-right: 5px;
    letter-spacing: 0.5px;
}

.logo-heart {
    color: #555;
    font-size: 24px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-links li {
    margin-left: 0;
}

.nav-links a {
    color: #333;
    font-weight: 500;
    position: relative;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #000000;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color:rgb(0, 0, 0);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 5px 0;
    transition: var(--transition);
}

/* When hamburger is active (menu open) */
.hamburger.active span {
    background-color: #000000;
}

/* Hero Section with Video on Left */
.hero {
    position: relative;
    padding: 0;
    background-color: transparent;
    color: #333;
    margin-top: -10px; /* Reduce overlap with header */
    padding-top: 40px; /* Reduced top padding */
    padding-bottom: 40px; /* Reduced bottom padding */
    display: flex;
    align-items: center;
    min-height: 80vh; /* Make hero section taller */
}

.hero-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.hero-video {
    flex: 1;
    order: 1;
    position: relative;
    border-radius: 0 150px 150px 0;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    max-width: 70%; /* Wider video */
    width: 70%; /* Fixed width */
    margin: 0 auto; /* Center the video */
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 100%; /* Full width of parent */
    margin: 0 auto; /* Center the container */
    overflow: hidden;
    aspect-ratio: 21/9; /* Ultra-wide aspect ratio */
    height: auto;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    flex: 1;
    order: 2;
    padding: 20px 20px 20px 40px;
    max-width: 50%;
    position: relative;
    z-index: 2;
    background-color: #fff;
    margin-left: -50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-content h1,
.hero-content p {
    color: #000000 !important; /* Force black color */
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 20px;
}

.btn {
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    border: 2px solid #000000;
}

.btn-primary:hover {
    background-color: #ffe400;
    border-color: #ffe400;
}

.btn-secondary {
    background-color: #ffe400;
    color: rgb(255, 255, 255);
    border: 2px solid #000;
}

.btn-secondary:hover {
    background-color: #ffe400;
    border:#ffe400;
    color: #000000;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-video {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 30px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
        margin: 5px 0;
    }
    
    .hero-container {
        padding: 0 15px;
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 20px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Services Section */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--dark-color);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.1s cubic-bezier(0.4,0,0.2,1), transform 1.1s cubic-bezier(0.4,0,0.2,1);
}
.section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 25px;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
    background-color: transparent;
    border-radius: var(--border-radius);
    padding: 0;
    text-align: center;
    box-shadow: none;
    border: none;
    perspective: 1200px;
    min-height: 180px;
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: center;
}
.card-front .service-icon {
    margin-bottom: 0 !important;
    font-size: 56px;
    padding: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}
.card-front .service-icon img {
    display: block;
    margin-bottom: 0 !important;
    padding: 0 !important;
}

/* Make the dock gif in the second service card smaller */
.service-card:nth-child(2) .service-icon img[src*="dock_figures_loading_boxes_md_nwm_v2.gif"] {
    width: 120px !important;
    height: 120px !important;
    margin-bottom: 18px !important;
}

/* Flip and rotate the JOP.gif in the third service card */
.service-card:nth-child(3) .service-icon img[src*="JOP.gif"] {
    transform: rotate(1deg) scaleX(-1);
}

.card-front h3 {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    color: var(--primary-color);
}

.card-inner {
    position: relative;
    border-radius: 24px !important;
    width: 100%;
    height: auto;
    min-height: 180px;
    transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
    transform-style: preserve-3d;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    background: var(--white);
}

/* Flip effect removed */

.card-front, .card-back {
    position: relative;
    border-radius: 24px !important;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 24px;
    padding: 18px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    background: var(--white);
}

.card-back {
    transform: rotateY(180deg);
    background: #f5f5f5;
    color: #222;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

.card-front .service-icon {
    margin-bottom: 0;
}

.card-front h3, .card-back h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    color: #000;
}

.card-front p, .card-back p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 18px;
}

.card-back p {
    font-weight: 500;
}

.service-card:hover, .service-card:focus {
    transform: translateY(-14px) scale(1.04);
    border: 2px solid #4CAF50;
    box-shadow: 0 18px 40px rgba(0,166,81,0.13);
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-10px);
    border: 2px solid #4CAF50;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Remove background only on the front of the card */
.card-front .service-icon {
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 18px 0;
    font-size: 30px;
    color: #000;
    transition: var(--transition);
    box-shadow: none;
    padding: 0;
}

/* Restore oval background on the back of the card */
.card-back .service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(0,0,0,0.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px auto;
    font-size: 30px;
    color: #000;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    padding: 0;
}

.service-card:hover .service-icon {
    background-color: #000;
    color: #fff;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #111;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 50px 0;
    background-color: #f5f5f5;
}

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

.points-list {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
}

.point-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border-left: 3px solid transparent;
    position: relative;
    left: 0;
}

.point-item:hover {
    left: 8px;
    background-color: #eee;
    border-left: 3px solid #000;
}

.point-item i {
    color: #000;
    font-size: 24px;
    margin-right: 20px;
    margin-top: 5px;
    flex-shrink: 0;
}

.point-content h3 {
    color: #111;
    margin: 0 0 10px 0;
    font-size: 1.3rem;
}

.point-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .point-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .point-item i {
        margin-bottom: 15px;
    }
}

/* Back Button */
.back-button {
    position: relative;
    font-size: 15px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.8em 1.8em 0.8em 1.2em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
    font-weight: 600;
    color: #333;
    background-color: white;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.back-button .arrow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: #f8f9fa;
    border-radius: 50%;
    margin-right: 8px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    line-height: 1;
    padding-top: 1px;
}

.back-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    color: #000;
    padding-right: 2em;
    padding-left: 1.5em;
}

.back-button:hover .arrow-icon {
    transform: translateX(-3px);
    background: #e9ecef;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.back-button:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.back-button::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 50px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.4s;
    background-color: #fff;
}

.back-button:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.testimonial-nav {
    margin-top: 30px;
    text-align: center;
}

.testimonial-nav .btn i {
    color: #000;
}

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

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    position: relative;
    transition: var(--transition), transform 0.18s cubic-bezier(0.4,0,0.2,1), box-shadow 0.18s cubic-bezier(0.4,0,0.2,1);
}

.testimonial-card:hover, .testimonial-card:focus {
    animation: pulse-card 0.7s;
}

@keyframes pulse-card {
  0% {
    transform: scale(1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(0,166,81,0.18);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  }
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.rating {
    color: #ffe400;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-color);
}

.testimonial-author h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #111;
}

.testimonial-author p {
    color: #000;
    font-weight: 500;
    margin: 0;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #471737, #c590b1);
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--white);
}

.cta p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* City Search Section */
.city-search {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
}

.city-search-content {
    max-width: 800px;
    margin: 0 auto;
}

.city-search h2 {
    color: #000;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.city-search p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.search-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    max-width: 800px;
    width: 100%;
    gap: 20px;
}

.search-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 30px;
    padding: 8px 8px 8px 20px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.search-box:focus-within {
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
}

.search-box i {
    color: #777;
    margin-right: 10px;
}

.search-box input {
    border: none;
    outline: none;
    padding: 8px 10px 8px 5px;
    width: 100%;
    font-size: 0.95rem;
    background: transparent;
    flex-grow: 1;
    min-width: 0; /* Prevents input from overflowing */
}

.search-btn {
    background: #000;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    margin-left: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.search-btn:hover {
    background: #333;
}

.popular-cities {
    text-align: center;
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.popular-cities span {
    color: #666;
    margin-right: 10px;
    line-height: 2;
}

.city-tag {
    display: inline-block;
    background: #f5f5f5;
    padding: 6px 16px;
    border-radius: 20px;
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border: 1px solid #e0e0e0;
}

.city-tag:hover {
    background: #e0e0e0;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* City Search Popup */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.active {
    display: flex;
    opacity: 1;
}

.popup-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.popup-overlay.active .popup-content {
    transform: translateY(0);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    transition: color 0.2s;
}

.close-popup:hover {
    color: #000;
}

.popup-body {
    padding: 20px 0;
}

.success-icon {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.popup-body h3 {
    color: #222;
    margin: 15px 0;
    font-size: 24px;
}

.popup-body p {
    color: #555;
    margin: 10px 0 25px;
    font-size: 16px;
    line-height: 1.6;
}

.popup-body .btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 30px;
    background: #000;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.popup-body .btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#searched-city {
    font-weight: 700;
    color: #000;
}

/* Connect With Us Section */
.connect-section {
    background-color: #f7f7f7;
    padding: 50px 0;
    font-family: 'Montserrat', sans-serif;
}

.connect-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
}

.connect-header h2 {
    color: #000000;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.connect-header p {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
}

.connect-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.connect-card {
    background: white;
    border-radius: 8px;
    padding: 60px 30px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    margin-top: 40px;
}

.connect-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background-color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -40px auto 25px;
    position: relative;
    z-index: 1;
    border: 4px solid white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.card-icon i {
    color: white;
    font-size: 30px;
}

.card-content h3 {
    color: #222222;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.card-content p {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.highlight {
    color: #000000 !important;
    font-weight: 700;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #111;
}

.contact-info p {
    margin-bottom: 30px;
    font-size: 16px;
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 22px;
    color: #000;
    margin-right: 20px;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #111;
}

.contact-item p,
.contact-item a {
    color: #666;
    margin: 0;
    transition: var(--transition);
}

.contact-item a:hover {
    color: #000;
}

.contact-form {
    background-color: #f5f5f5;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--dark-color);
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* CTA Quote Hover Effect */
.cta-quote-hover,
.cta-quote-hover:hover {
    color: #ffffff !important;
}

.logo-img {
    height: 32px;
    width: auto;
    min-width: 32px;
    margin-left: 0;
    display: block;
    border-radius: 20px;
    background: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

/* Footer */
.footer {
    background-color: #111;
    color: #fff;
    padding: 2px 0 0;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin: 40px 0 60px;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.footer-about h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-about h3 span {
    color: #000000;
    display: inline-block;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #000;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-services ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 0 50px 50px 0;
    padding: 0 20px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: #555;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .container {
        padding: 0 30px;
    }
    
    .top-bar {
        display: none;
    }

    .header {
        margin-left: 0 !important;
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .navbar {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
    .logo a {
        margin-left: 0 !important;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 800px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 40px;
        padding-left: 30px;
        transition: var(--transition);
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(255, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 0;
    }
    .nav-links {
        gap: 6px;
    }

    .hamburger {
        display: block;
        margin-left: 60px !important;
        margin-right: 0 !important;
        margin-top: -25px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    .scroll-animate {
        transition: opacity 0.3s cubic-bezier(0.4,0,0.2,1), transform 0.3s cubic-bezier(0.4,0,0.2,1) !important;
    }
    .testimonial-card.fast-animate.scroll-animate {
        transition: opacity 0.2s cubic-bezier(0.4,0,0.2,1), transform 0.2s cubic-bezier(0.4,0,0.2,1) !important;
    }

    .section-title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .hero {
        min-height: 600px;
    }

    .hero-content {
        text-align: center !important;
        padding: 20px 10px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        align-items: center !important;
        justify-content: center !important;
        display: flex !important;
        flex-direction: column !important;
    }
    .hero-content h1,
    .hero-content p {
        text-align: center !important;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center !important;
        justify-content: center !important;
        gap: 15px;
    }
    .hero-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .service-card,
    .testimonial-card {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        margin-top: 10px;
    }
}

        text-align: center;
    }

    .footer-legal {
        margin-top: 10px;
    }
}
