/* ==========================================================================
   Right Choice Remodeling - Custom Color Scheme
   Based on Adsett Architecture Theme Style
   ========================================================================== */

/* ==========================================================================
   GLOBAL OVERFLOW FIX - Prevent Horizontal Scrolling
   RESPONSIVE FOR ALL SCREEN SIZES
   ========================================================================== */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
}

body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
    position: relative;
    min-height: 100vh;
}

/* ==========================================================================
   Z-INDEX FIX - Menu Dropdowns Above Hero Slider
   ========================================================================== */

/* Make sure no overflow hidden clips the dropdown */
.site-container,
.sticky-header-wrapper,
.header-container,
.menu-container,
.header,
.vertical-align-table,
.vertical-align-cell {
    overflow: visible !important;
}

/* Header - use transform to create stacking context above slider */
.sticky-header-wrapper {
    position: sticky;
    top: 0;
    z-index: 99999 !important;
    background: #ffffff;
    transform: translateZ(1px);
}

.header-container {
    position: relative;
    z-index: 99999 !important;
    background: #ffffff;
}

.menu-container {
    position: relative;
    z-index: 99999 !important;
    overflow: visible !important;
}

/* Dropdown menus */
.sf-menu {
    overflow: visible !important;
}

.sf-menu li {
    position: relative;
}

.sf-menu ul {
    z-index: 99999 !important;
}

.sf-menu li:hover > ul,
.sf-menu li.sfHover > ul {
    z-index: 99999 !important;
}

/* SLIDER - Force low z-index */
.forcefullwidth_wrapper_tp_banner {
    z-index: 1 !important;
    transform: translateZ(0);
}

.rev_slider_wrapper {
    z-index: 1 !important;
}

.revolution-slider-container {
    z-index: 1 !important;
}

.tp-caption,
.tp-parallax-wrap,
.tp-loop-wrap,
.tp-mask-wrap,
.rs-layer {
    z-index: auto !important;
}

/* ==========================================================================
   PREMIUM TOP BAR - Contact Info & Social Media
   ========================================================================== */

.premium-top-bar {
    background: linear-gradient(135deg, #0a1628 0%, #152238 100%);
    padding: 12px 0;
    border-bottom: 1px solid rgba(13, 148, 136, 0.2);
}

.premium-top-bar .top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    gap: 20px;
}

/* Contact Info Section */
.premium-top-bar .top-bar-contact {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.premium-top-bar .top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.premium-top-bar .top-bar-item svg {
    color: #0d9488;
    flex-shrink: 0;
}

.premium-top-bar a.top-bar-item:hover {
    color: #0d9488;
}

.premium-top-bar .top-bar-hours {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

/* Social Icons Section */
.premium-top-bar .top-bar-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.premium-top-bar .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
}

.premium-top-bar .social-icon svg {
    width: 16px;
    height: 16px;
}

.premium-top-bar .social-icon:hover {
    transform: translateY(-2px);
    border-color: transparent;
}

/* Social Icon Brand Colors on Hover */
.premium-top-bar .social-facebook:hover {
    background: #1877f2;
    color: #ffffff;
}

.premium-top-bar .social-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
}

.premium-top-bar .social-youtube:hover {
    background: #ff0000;
    color: #ffffff;
}

.premium-top-bar .social-yelp:hover {
    background: #d32323;
    color: #ffffff;
}

.premium-top-bar .social-google:hover {
    background: #4285f4;
    color: #ffffff;
}

/* Top Bar Responsive - Tablet */
@media screen and (max-width: 992px) {
    .premium-top-bar .top-bar-inner {
        padding: 0 20px;
        gap: 15px;
    }

    .premium-top-bar .top-bar-contact {
        gap: 15px;
    }

    .premium-top-bar .top-bar-item {
        font-size: 12px;
    }

    .premium-top-bar .top-bar-hours {
        display: none;
    }

    .premium-top-bar .social-icon {
        width: 32px;
        height: 32px;
    }

    .premium-top-bar .social-icon svg {
        width: 14px;
        height: 14px;
    }
}

/* Top Bar Responsive - Mobile */
@media screen and (max-width: 768px) {
    .premium-top-bar {
        padding: 10px 0;
    }

    .premium-top-bar .top-bar-inner {
        flex-direction: column;
        gap: 12px;
        padding: 0 15px;
    }

    .premium-top-bar .top-bar-contact {
        justify-content: center;
        gap: 12px;
    }

    .premium-top-bar .top-bar-item span {
        display: none;
    }

    .premium-top-bar .top-bar-item svg {
        width: 20px;
        height: 20px;
    }

    .premium-top-bar .top-bar-social {
        gap: 10px;
    }

    .premium-top-bar .social-icon {
        width: 36px;
        height: 36px;
    }

    .premium-top-bar .social-icon svg {
        width: 16px;
        height: 16px;
    }
}

/* Top Bar Responsive - Small Mobile */
@media screen and (max-width: 480px) {
    .premium-top-bar .top-bar-inner {
        flex-direction: row;
        justify-content: space-between;
    }

    .premium-top-bar .top-bar-contact {
        gap: 8px;
    }

    .premium-top-bar .top-bar-item svg {
        width: 18px;
        height: 18px;
    }

    .premium-top-bar .social-icon {
        width: 32px;
        height: 32px;
    }

    .premium-top-bar .social-icon svg {
        width: 14px;
        height: 14px;
    }
}

/* ==========================================================================
   PREMIUM PAGE PRELOADER - House Building Animation
   ========================================================================== */

.page-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a1628 0%, #1a2a3a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    max-width: 300px;
}

/* House SVG Animation */
.house-svg {
    width: 180px;
    height: 180px;
    margin-bottom: 30px;
}

.house-part {
    opacity: 0;
    animation: drawHouse 0.5s ease-out forwards;
}

/* Staggered animation for each house part */
.house-part.foundation { animation-delay: 0.1s; }
.house-part.walls { animation-delay: 0.3s; stroke-dasharray: 400; stroke-dashoffset: 400; animation: strokeDraw 0.8s ease-out 0.3s forwards; }
.house-part.roof { stroke-dasharray: 300; stroke-dashoffset: 300; animation: strokeDraw 0.6s ease-out 0.6s forwards; }
.house-part.door { stroke-dasharray: 200; stroke-dashoffset: 200; animation: strokeDraw 0.5s ease-out 1s forwards; }
.house-part.doorknob { animation-delay: 1.3s; }
.house-part.window-left { stroke-dasharray: 100; stroke-dashoffset: 100; animation: strokeDraw 0.4s ease-out 1.1s forwards; }
.house-part.window-left-h, .house-part.window-left-v { animation-delay: 1.3s; }
.house-part.window-right { stroke-dasharray: 100; stroke-dashoffset: 100; animation: strokeDraw 0.4s ease-out 1.2s forwards; }
.house-part.window-right-h, .house-part.window-right-v { animation-delay: 1.4s; }
.house-part.chimney { stroke-dasharray: 110; stroke-dashoffset: 110; animation: strokeDraw 0.4s ease-out 0.8s forwards; }
.house-part.smoke { stroke-dasharray: 80; stroke-dashoffset: 80; animation: strokeDraw 0.6s ease-out 1.5s forwards, smokeRise 2s ease-in-out 2s infinite; }

@keyframes drawHouse {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes strokeDraw {
    0% { stroke-dashoffset: inherit; opacity: 0; }
    50% { opacity: 1; }
    100% { stroke-dashoffset: 0; opacity: 1; }
}

@keyframes smokeRise {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.6; }
    50% { transform: translateY(-8px) translateX(3px); opacity: 0.3; }
}

/* Preloader Text */
.preloader-text {
    margin-bottom: 25px;
}

.preloader-title {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.preloader-subtitle {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #0d9488;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Progress Bar */
.preloader-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}

.preloader-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #0d9488, #14b8a6, #0d9488);
    background-size: 200% 100%;
    border-radius: 2px;
    animation: preloaderProgress 2.5s ease-out forwards, shimmerSlide 1.5s ease-in-out infinite;
}

@keyframes preloaderProgress {
    0% { width: 0; }
    30% { width: 30%; }
    50% { width: 50%; }
    70% { width: 70%; }
    90% { width: 90%; }
    100% { width: 100%; }
}

/* Responsive Preloader */
@media (max-width: 480px) {
    .house-svg {
        width: 140px;
        height: 140px;
    }

    .preloader-title {
        font-size: 1.1rem;
    }

    .preloader-subtitle {
        font-size: 0.75rem;
    }

    .preloader-progress {
        width: 160px;
    }
}

/* Prevent ALL elements from causing overflow */
.row,
.theme-page,
section,
.trust-badges-section,
.cta-banner-premium,
.motion-text-section,
.announcement,
.header,
.header-container,
.navigation,
.footer,
.container,
.wrapper,
div[class*="wrapper"],
div[class*="container"] {
    max-width: 100% !important;
    overflow-x: hidden;
}

/* Ensure images never overflow */
img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

/* Fix any elements with negative margins */
.row {
    margin-left: 0;
    margin-right: 0;
}

/* Fix columns that might overflow */
[class*="column-"] {
    max-width: 100%;
}

/* ==========================================================================
   HERO SLIDER CONTENT BOX - Smaller Size
   ========================================================================== */

.slider-content-box {
    width: 380px !important;
    max-width: 90% !important;
    padding-bottom: 35px !important;
    background: rgba(10, 22, 40, 0.85) !important;
    border: 1px solid rgba(13, 148, 136, 0.3) !important;
}

.slider-content-box h2 {
    font-size: 1.5rem !important;
    padding: 16px 22px 15px !important;
    background: rgba(10, 22, 40, 0.9) !important;
    border-bottom: 2px solid #0d9488 !important;
    color: #ffffff !important;
}

.slider-content-box h2 a {
    font-size: 1.5rem !important;
    color: #ffffff !important;
}

.slider-content-box p {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    padding: 18px 22px 25px !important;
    color: #ffffff !important;
}

.slider-content-box .more {
    margin-left: 22px !important;
    font-size: 0.85rem !important;
    padding: 10px 22px !important;
}

/* ==========================================================================
   CRITICAL FIX: Convert fixed pixel column widths to percentages
   Original style.css uses px widths - this converts them to fluid %
   ========================================================================== */

/* Column System - Convert to Percentages */
.column-1-2 {
    width: 48.5% !important;
    max-width: 100% !important;
    float: left !important;
    margin-right: 3% !important;
    box-sizing: border-box !important;
}

.column-1-2:last-child,
.column-1-2.last {
    margin-right: 0 !important;
}

.column-1-3 {
    width: 31% !important;
    max-width: 100% !important;
    float: left !important;
    margin-right: 3.5% !important;
    box-sizing: border-box !important;
}

.column-1-3:last-child,
.column-1-3.last {
    margin-right: 0 !important;
}

.column-2-3 {
    width: 65% !important;
    max-width: 100% !important;
    float: left !important;
    margin-right: 3% !important;
    box-sizing: border-box !important;
}

.column-1-4 {
    width: 22% !important;
    max-width: 100% !important;
    float: left !important;
    margin-right: 4% !important;
    box-sizing: border-box !important;
}

.column-1-4:last-child,
.column-1-4.last {
    margin-right: 0 !important;
}

.column-3-4 {
    width: 74% !important;
    max-width: 100% !important;
    float: left !important;
    box-sizing: border-box !important;
}

/* Clearfix for columns */
.row::after {
    content: "";
    display: table;
    clear: both;
}

/* ==========================================================================
   IMAGE FIXES - Responsive Images
   ========================================================================== */

img {
    max-width: 100% !important;
    height: auto !important;
}

.column img,
[class*="column-"] img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
}

/* Project/Gallery Images */
.projects-gallery-list li img,
.gallery img,
.portfolio img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
}

/* Service Images */
.services-list img,
.service-box img {
    max-width: 100% !important;
    height: auto !important;
}

/* About/Team Images */
.about-image img,
.team-member img,
.team-box img {
    max-width: 100% !important;
    height: auto !important;
}

/* ==========================================================================
   TABLET COLUMN LAYOUT (992px and below)
   ========================================================================== */

@media (max-width: 992px) {
    .column-1-4 {
        width: 48% !important;
        margin-right: 4% !important;
        margin-bottom: 20px !important;
    }

    .column-1-4:nth-child(2n) {
        margin-right: 0 !important;
    }

    .column-1-3 {
        width: 48% !important;
        margin-right: 4% !important;
        margin-bottom: 20px !important;
    }

    .column-1-3:nth-child(2n) {
        margin-right: 0 !important;
    }

    /* Flex-box 3-column layout - stack on tablet */
    .flex-box {
        flex-wrap: wrap !important;
    }

    .flex-box .column-1-3 {
        width: 50% !important;
        flex: 0 0 50% !important;
    }

    /* Background image column - show as regular image on tablet */
    .flex-box .column.background-1 {
        min-height: 300px !important;
        background-size: cover !important;
        background-position: center !important;
    }
}

/* ==========================================================================
   FLEX-BOX AND BACKGROUND IMAGE FIXES
   ========================================================================== */

/* Ensure flex-box works properly */
.flex-box {
    display: flex !important;
    flex-wrap: wrap !important;
}

.flex-box .column {
    box-sizing: border-box !important;
}

/* Background image columns */
.background-1,
.background-2,
.background-3,
[class*="background-"] {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    min-height: 300px;
}

/* Show hidden images on smaller screens where background doesn't work well */
@media (max-width: 768px) {
    .flex-hide {
        display: block !important;
        width: 100% !important;
        height: auto !important;
    }

    .background-1,
    .background-2,
    .background-3,
    [class*="background-"] {
        background-image: none !important;
        min-height: auto !important;
    }
}

/* ==========================================================================
   SERVICES LIST & TEAM BOX - Responsive Grid
   ========================================================================== */

/* Convert fixed 390px width to percentage */
.services-list li,
.team-box {
    width: 31% !important;
    max-width: 100% !important;
    margin-right: 3.5% !important;
    margin-bottom: 30px !important;
    float: left !important;
    box-sizing: border-box !important;
}

.services-list li:nth-child(3n),
.team-box:nth-child(3n) {
    margin-right: 0 !important;
}

.services-list li img,
.team-box img {
    width: 100% !important;
    height: auto !important;
}

/* Tablet - 2 columns */
@media (max-width: 992px) {
    .services-list li,
    .team-box {
        width: 48% !important;
        margin-right: 4% !important;
    }

    .services-list li:nth-child(3n),
    .team-box:nth-child(3n) {
        margin-right: 4% !important;
    }

    .services-list li:nth-child(2n),
    .team-box:nth-child(2n) {
        margin-right: 0 !important;
    }
}

/* Mobile - 1 column */
@media (max-width: 768px) {
    .services-list li,
    .team-box {
        width: 100% !important;
        margin-right: 0 !important;
        float: none !important;
    }

    .services-list li h4,
    .services-list li p,
    .team-box h4,
    .team-box p {
        text-align: center !important;
    }
}

/* ==========================================================================
   PROJECTS GALLERY - Responsive Grid
   ========================================================================== */

.projects-gallery-list {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
}

.projects-gallery-list li {
    width: calc(33.333% - 10px) !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}

.projects-gallery-list li img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

/* Tablet - 2 columns */
@media (max-width: 992px) {
    .projects-gallery-list li {
        width: calc(50% - 10px) !important;
    }
}

/* Mobile - 1 column */
@media (max-width: 576px) {
    .projects-gallery-list li {
        width: 100% !important;
    }

    .projects-gallery-list {
        gap: 10px !important;
    }
}

/* ==========================================================================
   MOBILE COLUMN LAYOUT (768px and below)
   ========================================================================== */

@media (max-width: 768px) {
    .column-1-2,
    .column-1-3,
    .column-2-3,
    .column-1-4,
    .column-3-4,
    [class*="column-"] {
        width: 100% !important;
        max-width: 100% !important;
        float: none !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
        margin-bottom: 25px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .row {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* ==========================================================================
   ORIGINAL CRITICAL FIX: Override fixed pixel widths from style.css
   These cause horizontal scroll on smaller screens
   ========================================================================== */

.header-top-bar,
.header {
    width: 100% !important;
    max-width: 100% !important;
}

.row {
    width: 100% !important;
    max-width: 1170px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
}

.testimonials-container .caroufredsel_wrapper_testimonials {
    width: 100% !important;
    max-width: 100% !important;
    left: 0 !important;
    margin: 0 auto !important;
}

.testimonials-list li {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    box-sizing: border-box !important;
    padding: 0 15px !important;
}

.testimonials-container {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
}

.announcement {
    width: 100% !important;
    max-width: 1170px !important;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box !important;
}

/* Fix header container */
.header-container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
}

/* ==========================================================================
   DESKTOP NAVIGATION - Centered Menu with Modern Fonts
   Responsive Breakpoints: 1200px, 992px, 768px
   ========================================================================== */

/* Desktop Large (1200px+) - Full width menu */
@media screen and (min-width: 1200px) {
    .header {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto;
        padding: 15px 50px;
    }

    .header .logo {
        flex: 0 0 auto;
        max-width: 250px;
    }

    .menu-container {
        flex: 1 1 auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        max-width: none !important;
        overflow: visible !important;
    }

    .menu-container nav {
        float: none !important;
        display: flex;
        justify-content: center;
    }

    .sf-menu {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        gap: 0;
    }

    .sf-menu li a,
    .sf-menu li a:visited {
        font-family: 'Montserrat', 'Inter', 'Helvetica Neue', Arial, sans-serif !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #0a1628 !important;
        padding: 12px 16px !important;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    body .header-container .menu-container .sf-menu > li:first-child > a {
        padding-left: 16px !important;
    }
}

/* Desktop Medium (992px - 1199px) - Compact menu */
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .header {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 12px 20px;
    }

    .header .logo {
        flex: 0 0 auto;
        max-width: 200px;
    }

    .menu-container {
        flex: 1 1 auto !important;
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center !important;
        max-width: none !important;
        overflow: visible !important;
    }

    .menu-container nav {
        float: none !important;
        display: flex;
        justify-content: flex-end;
    }

    .sf-menu {
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        gap: 0;
    }

    .sf-menu li a,
    .sf-menu li a:visited {
        font-family: 'Montserrat', 'Inter', 'Helvetica Neue', Arial, sans-serif !important;
        font-size: 12px !important;
        font-weight: 600 !important;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        color: #0a1628 !important;
        padding: 10px 12px !important;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    body .header-container .menu-container .sf-menu > li:first-child > a {
        padding-left: 12px !important;
    }
}

/* Tablet (768px - 991px) - Smaller text, tighter spacing */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .header {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100%;
        padding: 10px 15px;
    }

    .header .logo {
        flex: 0 0 auto;
        max-width: 180px;
    }

    .menu-container {
        flex: 1 1 auto !important;
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center !important;
        overflow: visible !important;
    }

    .sf-menu {
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        gap: 0;
    }

    .sf-menu li a,
    .sf-menu li a:visited {
        font-family: 'Montserrat', 'Inter', 'Helvetica Neue', Arial, sans-serif !important;
        font-size: 11px !important;
        font-weight: 600 !important;
        text-transform: uppercase;
        letter-spacing: 0.2px;
        color: #0a1628 !important;
        padding: 8px 10px !important;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    body .header-container .menu-container .sf-menu > li:first-child > a {
        padding-left: 10px !important;
    }
}

/* All Desktop Sizes (768px+) - Common hover states and dropdowns */
@media screen and (min-width: 768px) {
    .sf-menu li a:hover,
    .sf-menu li a:visited:hover,
    .sf-menu li.selected a,
    .sf-menu li.sfHover > a {
        color: #0d9488 !important;
    }

    /* Dropdown Menu Styling */
    .menu-container .sf-menu li ul {
        background: #ffffff;
        border: none;
        box-shadow: 0 10px 40px rgba(10, 22, 40, 0.15);
        border-radius: 8px;
        overflow: hidden;
        min-width: 220px;
    }

    .menu-container .sf-menu li ul li a,
    .menu-container .sf-menu li.selected ul li a,
    .menu-container .sf-menu li:hover ul li a {
        font-family: 'Montserrat', 'Inter', 'Helvetica Neue', Arial, sans-serif !important;
        font-size: 12px !important;
        font-weight: 500 !important;
        text-transform: none;
        letter-spacing: 0.3px;
        color: #333 !important;
        padding: 12px 18px !important;
        border-top: 1px solid #f0f0f0;
        transition: all 0.3s ease;
        white-space: normal;
    }

    .menu-container .sf-menu li ul li:first-child a {
        border-top: none;
    }

    .menu-container .sf-menu li ul li a:hover,
    .menu-container .sf-menu li ul li.selected a,
    .menu-container .sf-menu li:hover ul li.selected a,
    .menu-container .sf-menu li:hover ul li.sfHover > a {
        background: linear-gradient(135deg, #0a1628 0%, #152238 100%) !important;
        color: #ffffff !important;
    }

    /* Sticky Header Navigation */
    .header-container.sticky.move .sf-menu li a {
        color: #0a1628 !important;
    }

    .header-container.sticky.move .sf-menu li a:hover,
    .header-container.sticky.move .sf-menu li.selected a {
        color: #0d9488 !important;
    }
}

/* Mobile (below 768px) - Hide desktop menu, show mobile */
@media screen and (max-width: 767px) {
    .menu-container {
        display: none !important;
    }
}

/* Fix site container */
.site-container {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
}

/* Fix theme-page container */
.theme-page {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box !important;
}

/* ==========================================================================
   Animated Motion Text Section (Adsett Style)
   ========================================================================== */

.motion-text-section {
    background: #0a1628;
    background-image: url('../images/samples/1920x600/image_01.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 100;
    padding: 80px 0;
    overflow: hidden;
    clear: both;
    display: block;
    margin-top: 0;
    max-width: 100vw;
}

/* Fix slider container to not overlap */
.revolution-slider-container {
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: auto;
    max-height: 600px;
}

.revolution-slider-container + .motion-text-section {
    margin-top: 0;
    position: relative;
    z-index: 100;
}

/* Ensure tp-banner wrapper doesn't overflow */
.tp-bannertimer,
.tp-banner-container {
    z-index: 1 !important;
}

.forcefullwidth_wrapper_tp_banner {
    z-index: 1 !important;
    position: relative !important;
    height: auto !important;
    max-height: 600px !important;
    width: 100% !important;
    max-width: 100vw !important;
    overflow: hidden !important;
    left: 0 !important;
    margin-left: 0 !important;
}

/* Revolution slider wrapper fix */
.rev_slider_wrapper,
.rev_slider_wrapper .rev_slider {
    z-index: 1 !important;
    overflow: hidden !important;
}

.rev_slider_wrapper {
    height: 600px !important;
    max-height: 600px !important;
    position: relative !important;
    width: 100% !important;
    max-width: 100vw !important;
    left: 0 !important;
}

/* Ensure slider doesn't overlap content below */
.tp-fullwidth-forcer {
    height: 600px !important;
    max-height: 600px !important;
    position: relative !important;
    width: 100% !important;
    max-width: 100vw !important;
}

/* Fix fullscreen/fullwidth wrapper created by Revolution */
.fullwidthbanner-container,
.fullscreenbanner-container {
    height: 600px !important;
    max-height: 600px !important;
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
}

/* Main slider container constraints */
.revolution-slider-container,
.revolution-slider-container .revolution-slider {
    height: 600px !important;
    max-height: 600px !important;
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
}

/* Fix Revolution Slider dynamic width elements */
.tp-banner,
.tp-banner-container,
.rev_slider,
.rev_slider ul,
.rev_slider li {
    width: 100% !important;
    max-width: 100vw !important;
}

/* Fix any slider that uses left positioning */
.tp-bannertimer,
.tp-loader {
    left: 0 !important;
}

/* Fix slider content that might overflow */
.tp-caption {
    max-width: 100vw !important;
    box-sizing: border-box !important;
}

/* Fix the specific overlap issue */
.revolution-slider-container ~ .motion-text-section,
.forcefullwidth_wrapper_tp_banner ~ .motion-text-section {
    position: relative !important;
    z-index: 100 !important;
    margin-top: 0 !important;
    top: 0 !important;
}

/* Reset any negative margins from slider */
.tp-bannertimer {
    bottom: 0 !important;
}

.motion-text-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(26, 31, 44, 0.9) 100%);
    z-index: 1;
}

.motion-text-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.motion-text {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.motion-text .letter {
    font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: #0d9488 !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    animation: letterFade 0.5s ease forwards;
    opacity: 1;
    transform: translateY(0);
}

.motion-text .letter.teal {
    color: #0d9488 !important;
}

.motion-text .word {
    display: flex;
    margin: 0 15px;
}

.motion-text .word .letter:nth-child(1) { animation-delay: 0.1s; }
.motion-text .word .letter:nth-child(2) { animation-delay: 0.15s; }
.motion-text .word .letter:nth-child(3) { animation-delay: 0.2s; }
.motion-text .word .letter:nth-child(4) { animation-delay: 0.25s; }
.motion-text .word .letter:nth-child(5) { animation-delay: 0.3s; }
.motion-text .word .letter:nth-child(6) { animation-delay: 0.35s; }
.motion-text .word .letter:nth-child(7) { animation-delay: 0.4s; }
.motion-text .word .letter:nth-child(8) { animation-delay: 0.45s; }
.motion-text .word .letter:nth-child(9) { animation-delay: 0.5s; }
.motion-text .word .letter:nth-child(10) { animation-delay: 0.55s; }
.motion-text .word .letter:nth-child(11) { animation-delay: 0.6s; }
.motion-text .word .letter:nth-child(12) { animation-delay: 0.65s; }

.motion-text .word:nth-child(2) .letter:nth-child(1) { animation-delay: 0.7s; }
.motion-text .word:nth-child(2) .letter:nth-child(2) { animation-delay: 0.75s; }
.motion-text .word:nth-child(2) .letter:nth-child(3) { animation-delay: 0.8s; }
.motion-text .word:nth-child(2) .letter:nth-child(4) { animation-delay: 0.85s; }
.motion-text .word:nth-child(2) .letter:nth-child(5) { animation-delay: 0.9s; }
.motion-text .word:nth-child(2) .letter:nth-child(6) { animation-delay: 0.95s; }

.motion-text .word:nth-child(3) .letter:nth-child(1) { animation-delay: 1.0s; }
.motion-text .word:nth-child(3) .letter:nth-child(2) { animation-delay: 1.05s; }
.motion-text .word:nth-child(3) .letter:nth-child(3) { animation-delay: 1.1s; }
.motion-text .word:nth-child(3) .letter:nth-child(4) { animation-delay: 1.15s; }
.motion-text .word:nth-child(3) .letter:nth-child(5) { animation-delay: 1.2s; }
.motion-text .word:nth-child(3) .letter:nth-child(6) { animation-delay: 1.25s; }
.motion-text .word:nth-child(3) .letter:nth-child(7) { animation-delay: 1.3s; }
.motion-text .word:nth-child(3) .letter:nth-child(8) { animation-delay: 1.35s; }
.motion-text .word:nth-child(3) .letter:nth-child(9) { animation-delay: 1.4s; }
.motion-text .word:nth-child(3) .letter:nth-child(10) { animation-delay: 1.45s; }

@keyframes letterFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.motion-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 1.2rem;
    color: #0d9488;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.motion-description,
.motion-text-section .motion-description {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    color: #0d9488 !important;
    max-width: 600px;
    text-align: center;
    line-height: 1.8;
    margin-top: 30px;
    animation: fadeInUpGlow 1s ease 1.6s forwards;
    opacity: 0;
    text-shadow: 0 0 10px rgba(13, 148, 136, 0);
}

.motion-description strong,
.motion-description b,
.motion-text-section .motion-description strong,
.motion-text-section .motion-description b {
    color: #0d9488 !important;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUpGlow {
    0% {
        opacity: 0;
        transform: translateY(30px);
        text-shadow: 0 0 0 rgba(13, 148, 136, 0);
    }
    50% {
        text-shadow: 0 0 20px rgba(13, 148, 136, 0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        text-shadow: 0 0 10px rgba(13, 148, 136, 0.3);
    }
}

/* ==========================================================================
   HERO SLIDER CARD ENTRANCE ANIMATIONS
   Slide 1: Down | Slide 2: Right | Slide 3: Left
   ========================================================================== */

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply animations to each slide's content box */
/* Slide 1 - Slides DOWN */
.rev_slider li:nth-child(1) .slider-content-box,
.rev_slider > ul > li:nth-child(1) .slider-content-box,
.revolution-slider li:nth-child(1) .slider-content-box {
    animation: slideInDown 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards !important;
}

/* Slide 2 - Slides from RIGHT */
.rev_slider li:nth-child(2) .slider-content-box,
.rev_slider > ul > li:nth-child(2) .slider-content-box,
.revolution-slider li:nth-child(2) .slider-content-box {
    animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards !important;
}

/* Slide 3 - Slides from LEFT */
.rev_slider li:nth-child(3) .slider-content-box,
.rev_slider > ul > li:nth-child(3) .slider-content-box,
.revolution-slider li:nth-child(3) .slider-content-box {
    animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards !important;
}

/* Also target tp-caption wrappers */
.rev_slider li:nth-child(1) .tp-caption .slider-content-box {
    animation: slideInDown 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards !important;
}

.rev_slider li:nth-child(2) .tp-caption .slider-content-box {
    animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards !important;
}

.rev_slider li:nth-child(3) .tp-caption .slider-content-box {
    animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards !important;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .motion-text .letter {
        font-size: 3rem;
    }
    .motion-text-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .motion-text .letter {
        font-size: 2rem;
    }
    .motion-text .word {
        margin: 5px 10px;
    }
    .motion-text-section {
        padding: 50px 0;
    }
    .motion-subtitle {
        font-size: 1rem;
        letter-spacing: 0.2em;
    }
}

/* Color Variables Reference:
   --primary-accent: #0d9488 (Warm Gold/Bronze)
   --primary-dark: #0a1628 (Deep Navy Blue)
   --secondary-dark: #1a1f2c (Dark Blue-Gray)
   --text-dark: #333333
   --text-light: #ffffff
   --bg-light: #ffffff
   --bg-gray: #f5f5f5
*/

/* ==========================================================================
   Primary Accent Color Overrides (Replace Yellow #F4BC16 with Gold #0d9488)
   ========================================================================== */

/* Links and text accents */
p a,
table a {
    color: #0d9488;
}

blockquote:before {
    color: #0d9488;
}

/* Header and navigation */
.header-top-bar-container {
    background: #0a1628 !important;
}

.header-top-bar {
    border-bottom-color: rgba(13, 148, 136, 0.3) !important;
    background: #0a1628 !important;
}

.header-top-bar .contact-details li {
    color: #0d9488 !important;
}

.header-top-bar .contact-details li a {
    color: #0d9488 !important;
}

.header-top-bar .contact-details li a:hover {
    color: #14b8a6 !important;
}

/* Social icons in top bar */
.header-top-bar .social-icons li a {
    color: #ffffff !important;
    border-color: rgba(13, 148, 136, 0.5) !important;
}

.header-top-bar .social-icons li a:hover {
    color: #0a1628 !important;
    background: #0d9488 !important;
    border-color: #0d9488 !important;
}

/* Search icon */
.header-top-bar .template-search {
    color: #0d9488 !important;
}

/* Mobile top bar - all on same line */
@media (max-width: 992px) {
    .header-top-bar-container {
        padding: 10px 0 !important;
    }

    .header-top-bar {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
    }

    .header-top-bar .contact-details {
        display: flex !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .header-top-bar .contact-details li {
        display: inline-block !important;
        margin: 0 12px 0 0 !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        white-space: nowrap !important;
    }

    .header-top-bar .social-icons {
        display: flex !important;
        align-items: center !important;
        margin: 0 !important;
    }

    .header-top-bar .social-icons li {
        margin: 0 4px !important;
    }

    .header-top-bar .social-icons li a {
        width: 32px !important;
        height: 32px !important;
        line-height: 32px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 576px) {
    .header-top-bar .contact-details li {
        font-size: 13px !important;
        margin: 0 8px 0 0 !important;
    }

    .header-top-bar .social-icons li a {
        width: 28px !important;
        height: 28px !important;
        line-height: 28px !important;
        font-size: 12px !important;
    }
}

/* Main navigation */
.navigation {
    background: #0a1628;
}

.navigation > ul > li > a {
    color: #ffffff;
}

.navigation > ul > li > a:hover,
.navigation > ul > li.current > a {
    color: #0d9488;
}

.navigation > ul > li.current > a:after,
.navigation > ul > li > a:after {
    background: #0d9488;
}

/* Dropdown menus */
.navigation ul ul {
    background: #1a1f2c;
    border-top: 2px solid #0d9488;
}

.navigation ul ul li a {
    color: #ffffff;
    border-bottom-color: rgba(255,255,255,0.1);
}

.navigation ul ul li a:hover {
    color: #0d9488;
    background: rgba(13, 148, 136, 0.1);
}

/* ==========================================================================
   Buttons - All Variants Fixed
   ========================================================================== */

/* Primary Gold Button */
.more,
.more[type="submit"],
a.more,
button.more,
input[type="submit"],
.btn,
.button {
    background: #0d9488 !important;
    background-color: #0d9488 !important;
    color: #0a1628 !important;
    border: 2px solid #0d9488 !important;
    border-color: #0d9488 !important;
}

.more:hover,
.more[type="submit"]:hover,
a.more:hover,
button.more:hover,
input[type="submit"]:hover,
.btn:hover,
.button:hover {
    background: #0f766e !important;
    background-color: #0f766e !important;
    border-color: #0f766e !important;
    color: #ffffff !important;
}

/* Simple button variant - Gold filled */
.more.simple,
a.more.simple {
    background: #0d9488 !important;
    background-color: #0d9488 !important;
    color: #0a1628 !important;
    border: 2px solid #0d9488 !important;
    border-color: #0d9488 !important;
}

.more.simple:hover,
a.more.simple:hover {
    background: #0f766e !important;
    background-color: #0f766e !important;
    border-color: #0f766e !important;
    color: #ffffff !important;
}

/* Alternative button style - Outline */
.more.style-2 {
    background: transparent !important;
    background-color: transparent !important;
    color: #0d9488 !important;
    border: 2px solid #0d9488 !important;
}

.more.style-2:hover {
    background: #0d9488 !important;
    background-color: #0d9488 !important;
    color: #0a1628 !important;
}

/* Small button */
.more.small,
a.more.small {
    background: #0d9488 !important;
    color: #0a1628 !important;
    border-color: #0d9488 !important;
}

/* White/Light button variant */
.more.white,
a.more.white {
    background: #ffffff !important;
    color: #0a1628 !important;
    border-color: #ffffff !important;
}

.more.white:hover,
a.more.white:hover {
    background: #0d9488 !important;
    color: #0a1628 !important;
    border-color: #0d9488 !important;
}

/* Call to action buttons */
.call-to-action .more,
.call-to-action a.more {
    background: #0d9488 !important;
    color: #0a1628 !important;
    border-color: #0d9488 !important;
}

/* Service box buttons */
.service-box .more,
.service-box a.more {
    background: #0d9488 !important;
    color: #0a1628 !important;
    border-color: #0d9488 !important;
}

/* Yellow/accent sections */
.row.yellow {
    background: #0d9488;
}

.row.yellow h1,
.row.yellow h2,
.row.yellow h3,
.row.yellow h4,
.row.yellow h5,
.row.yellow h6,
.row.yellow p,
.row.yellow a,
.row.yellow li {
    color: #0a1628;
}

/* Gray footer section */
.row.gray {
    background: #1a1f2c;
}

.row.gray h1,
.row.gray h2,
.row.gray h3,
.row.gray h4,
.row.gray h5,
.row.gray h6,
.row.gray .box-header {
    color: #ffffff;
}

.row.gray p,
.row.gray .description {
    color: rgba(255, 255, 255, 0.8);
}

.row.gray a {
    color: #0d9488;
}

.row.gray a:hover {
    color: #14b8a6;
}

.row.gray .social-icons li a {
    border-color: #0d9488;
    color: #0d9488;
}

.row.gray .social-icons li a:hover {
    background: #0d9488;
    color: #0a1628;
}

/* Service boxes and icons */
.service-box .icon-container {
    background: #0d9488;
    color: #0a1628;
}

.service-box:hover .icon-container {
    background: #0a1628;
    color: #0d9488;
}

.service-box h4 a:hover {
    color: #0d9488;
}

/* Pricing tables */
.pricing-box.style-1.featured {
    border-color: #0d9488;
}

.pricing-box.style-1.featured .pricing-box-top-header {
    background: #0d9488;
    color: #0a1628;
}

/* Accordions and toggles */
.accordion-container > h4.ui-accordion-header.ui-state-active {
    background: #0d9488;
    color: #0a1628;
}

.toggle-content-container > h4.ui-state-active {
    color: #0d9488;
}

/* Progress bars */
.progress .fill {
    background: #0d9488;
}

/* Counters */
.counter-container .counter-icon {
    color: #0d9488;
}

/* Tabs */
.tabs-container .tabs-menu li a.ui-state-active {
    color: #0d9488;
    border-bottom-color: #0d9488;
}

/* Form elements */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    border-color: #0d9488;
}

/* Blog and posts */
.blog .post-content a:hover,
.post-content h2 a:hover,
.post-content h4 a:hover {
    color: #0d9488;
}

.post-details .date {
    color: #0d9488;
}

/* Pagination */
.pagination li.current a,
.pagination li a:hover {
    background: #0d9488;
    border-color: #0d9488;
    color: #0a1628;
}

/* Gallery/Portfolio */
.gallery-item .hover-container {
    background: rgba(13, 148, 136, 0.9);
}

.gallery-filters li a.selected,
.gallery-filters li a:hover {
    color: #0d9488;
}

/* Team members */
.team-member .social-icons li a:hover {
    background: #0d9488;
    border-color: #0d9488;
}

/* Testimonials */
.testimonials .quote-container {
    border-color: #0d9488;
}

.testimonials .quote-container:before {
    color: #0d9488;
}

/* Slider Revolution */
.tp-bullets .tp-bullet.selected,
.tp-bullets .tp-bullet:hover {
    background: #0d9488;
}

/* Scroll to top */
.scroll-top {
    background: #0d9488;
    color: #0a1628;
}

.scroll-top:hover {
    background: #0a1628;
    color: #0d9488;
}

/* Copyright footer */
.copyright {
    color: rgba(255, 255, 255, 0.7);
}

.copyright a {
    color: #0d9488;
}

.copyright a:hover {
    color: #14b8a6;
}

/* List markers */
.list li.template-bullet:before {
    color: #0d9488;
}

.taxonomies li a {
    background: rgba(13, 148, 136, 0.1);
    border-color: rgba(13, 148, 136, 0.3);
    color: #0d9488;
}

.taxonomies li a:hover {
    background: #0d9488;
    color: #0a1628;
}

/* Contact details in footer */
.contact-details-list li {
    color: #0a1628;
}

.contact-details-list li a {
    color: #0a1628;
}

/* Search */
.search-container .template-search {
    color: #0d9488;
}

/* Logo area adjustments */
.header .logo {
    color: #ffffff;
    background: transparent !important;
}

.header .logo a {
    display: inline-block;
    background: transparent !important;
    text-decoration: none !important;
}

/* ==========================================================================
   TEXT LOGO - Company Name
   ========================================================================== */

.header .logo .logo-text {
    font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #0d9488 !important;
    line-height: 1.1 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    display: block !important;
    text-decoration: none !important;
}

.header .logo .logo-sub {
    font-family: 'Raleway', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    letter-spacing: 0.25em !important;
    text-transform: uppercase !important;
    display: block !important;
    margin-top: 2px !important;
}

.header .logo a:hover .logo-text {
    color: #14b8a6 !important;
}

/* Hide any logo images */
.header .logo img {
    display: none !important;
}

/* Fix header height - compact */
.header {
    min-height: auto !important;
    height: auto !important;
    padding: 12px 0 !important;
}

.header-container {
    min-height: auto !important;
}

.vertical-align-table {
    min-height: auto !important;
}

/* iPad/Tablet */
@media (max-width: 992px) {
    .header .logo .logo-text {
        font-size: 26px !important;
    }

    .header .logo .logo-sub {
        font-size: 12px !important;
        letter-spacing: 0.2em !important;
    }

    .header {
        padding: 12px 0 !important;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header .logo .logo-text {
        font-size: 22px !important;
    }

    .header .logo .logo-sub {
        font-size: 10px !important;
        letter-spacing: 0.15em !important;
    }

    .header {
        padding: 12px 15px !important;
        background: #0a1628 !important;
    }

    .header .logo {
        text-align: left !important;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .header .logo .logo-text {
        font-size: 18px !important;
    }

    .header .logo .logo-sub {
        font-size: 9px !important;
        letter-spacing: 0.12em !important;
    }
}

/* ==========================================================================
   Mobile Menu - Complete Redesign (NUCLEAR OVERRIDE)
   ========================================================================== */

/* NUCLEAR RESET - Override absolutely everything */
.mobile-menu-container,
.mobile-menu-container *,
#mobile-menu,
#mobile-menu *,
.mobile-menu,
.mobile-menu *,
.mobile-menu li,
.mobile-menu li *,
.mobile-menu a,
.mobile-menu a *,
nav.mobile-menu-container *,
.sf-menu.mobile-menu *,
.sf-menu.mobile-menu li,
.sf-menu.mobile-menu a {
    background-color: #0a1628 !important;
    background-image: none !important;
    background: #0a1628 !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

/* Override any hover/focus/active background colors */
.mobile-menu *:hover,
.mobile-menu *:focus,
.mobile-menu *:active,
.mobile-menu li:hover,
.mobile-menu li:focus,
.mobile-menu li:active,
.mobile-menu a:hover,
.mobile-menu a:focus,
.mobile-menu a:active,
#mobile-menu *:hover,
#mobile-menu *:focus,
#mobile-menu *:active {
    background-color: #0a1628 !important;
    background: #0a1628 !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Container */
.mobile-menu-container {
    border-top: 1px solid rgba(13, 148, 136, 0.3) !important;
    padding: 0 !important;
}

/* Hide mobile menu close button on desktop */
.mobile-menu-close-btn {
    display: none !important;
}

/* Main menu list */
.mobile-menu,
#mobile-menu,
ul.mobile-menu {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

/* ALL list items - no exceptions */
.mobile-menu li,
.mobile-menu > li,
.mobile-menu li li,
#mobile-menu li,
ul.mobile-menu li {
    background: #0a1628 !important;
    background-color: #0a1628 !important;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin: 0 !important;
    padding: 0 !important;
    position: relative !important;
}

/* ALL links - white text */
.mobile-menu a,
.mobile-menu li a,
.mobile-menu li > a,
.mobile-menu > li > a,
#mobile-menu a,
#mobile-menu li a {
    color: #ffffff !important;
    background: #0a1628 !important;
    background-color: #0a1628 !important;
    border: none !important;
    padding: 16px 50px 16px 20px !important;
    font-family: 'Raleway', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    display: block !important;
    text-decoration: none !important;
}

/* Hover - gold text only */
.mobile-menu a:hover,
.mobile-menu li a:hover,
#mobile-menu a:hover {
    color: #0d9488 !important;
    background: #0a1628 !important;
    background-color: #0a1628 !important;
}

/* Active/Current - gold text with left border */
.mobile-menu li.current > a,
.mobile-menu li.selected > a,
.mobile-menu li.active > a,
#mobile-menu li.current > a {
    color: #0d9488 !important;
    background: #0a1628 !important;
    background-color: #0a1628 !important;
    border-left: 3px solid #0d9488 !important;
    padding-left: 17px !important;
}

/* Dropdown toggle button/arrow - CRITICAL FIX */
.mobile-menu .mobile-menu-submenu-arrow,
.mobile-menu li .mobile-menu-submenu-arrow,
.mobile-menu-submenu-arrow,
.sf-sub-indicator,
.mobile-menu .sf-sub-indicator,
#mobile-menu .mobile-menu-submenu-arrow {
    background: #0a1628 !important;
    background-color: #0a1628 !important;
    color: #0d9488 !important;
    border: none !important;
    border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;
    width: 50px !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.mobile-menu .mobile-menu-submenu-arrow:hover,
.mobile-menu-submenu-arrow:hover {
    background: rgba(13, 148, 136, 0.1) !important;
    background-color: rgba(13, 148, 136, 0.1) !important;
}

/* Submenu - slightly darker */
.mobile-menu ul ul,
.mobile-menu li ul,
.mobile-menu .sub-menu,
#mobile-menu ul ul {
    background: #050a12 !important;
    background-color: #050a12 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.mobile-menu ul ul li,
.mobile-menu li ul li,
#mobile-menu ul ul li {
    background: #050a12 !important;
    background-color: #050a12 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.mobile-menu ul ul li a,
.mobile-menu li ul li a,
#mobile-menu ul ul li a {
    background: #050a12 !important;
    background-color: #050a12 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 14px 50px 14px 35px !important;
    font-size: 13px !important;
    font-weight: 400 !important;
}

.mobile-menu ul ul li a:hover,
#mobile-menu ul ul li a:hover {
    color: #0d9488 !important;
    background: #050a12 !important;
    background-color: #050a12 !important;
}

/* Hamburger menu button */
.mobile-menu-switch {
    background: transparent !important;
    color: #0d9488 !important;
}

.mobile-menu-switch:hover {
    color: #14b8a6 !important;
}

.mobile-menu-switch .line {
    background: #0d9488 !important;
    background-color: #0d9488 !important;
}

/* ==========================================================================
   Hide Phone from Top Bar on Mobile & Add Sticky Call Button
   ========================================================================== */

@media (max-width: 992px) {
    /* Hide entire top bar on mobile */
    .header-top-bar-container,
    .header-top-bar {
        display: none !important;
    }

    .header {
        background: #0a1628 !important;
    }

    .header-container {
        background: #0a1628 !important;
    }
}

/* ==========================================================================
   Sticky Phone Button - Bottom of Screen (Mobile Only)
   DEPRECATED: Using new mobile-sticky-cta instead (see end of file)
   ========================================================================== */

.mobile-sticky-phone {
    display: none !important; /* Hidden - using new mobile-sticky-cta */
}

/* Mobile body padding removed since sticky bar is now static */
@media (max-width: 768px) {
    /* Padding removed */
}

/* Hero/Banner sections */
.page-header {
    background-color: #0a1628;
}

.breadcrumbs a:hover {
    color: #0d9488;
}

/* ==========================================================================
   Additional Elegant Styling
   ========================================================================== */

/* Add subtle shadows for depth */
.service-box,
.pricing-box,
.team-member {
    box-shadow: 0 4px 20px rgba(10, 22, 40, 0.08);
    transition: box-shadow 0.3s ease;
}

.service-box:hover,
.pricing-box:hover,
.team-member:hover {
    box-shadow: 0 8px 30px rgba(10, 22, 40, 0.15);
}

/* Refined typography for headers */
h1, h2, h3, h4, h5, h6 {
    color: #0a1628;
}

.row.gray h1,
.row.gray h2,
.row.gray h3,
.row.gray h4,
.row.gray h5,
.row.gray h6 {
    color: #ffffff;
}

/* Elegant dividers */
.divider {
    background: linear-gradient(90deg, transparent, #0d9488, transparent);
}

/* Call to action sections */
.cta-section {
    background: linear-gradient(135deg, #0a1628 0%, #1a1f2c 100%);
}

/* Map section styling */
#map-section {
    border-top: 4px solid #0d9488;
}

/* Reviews section styling */
#reviews-section {
    background: #f5f5f5;
}

#reviews-section h2 {
    color: #0a1628;
}

#reviews-section p {
    color: #666666;
}

/* ==========================================================================
   PREMIUM VISUAL ENHANCEMENTS
   Right Choice Remodeling - Premium Website Upgrade
   ========================================================================== */

/* ==========================================================================
   CSS Custom Properties - Premium Color Palette
   ========================================================================== */

:root {
    /* Gradient Gold for premium feel */
    --teal-gradient: linear-gradient(135deg, #0d9488 0%, #0d9488 50%, #0f766e 100%);
    --teal-primary: #0d9488;
    --teal-light: #14b8a6;
    --teal-dark: #0f766e;

    /* Deeper navy for contrast */
    --navy-deep: #050a12;
    --navy-primary: #0a1628;
    --navy-secondary: #1a1f2c;

    /* Warm white for elegance */
    --warm-white: #faf9f7;
    --pure-white: #ffffff;

    /* Premium shadows */
    --shadow-teal: 0 10px 30px rgba(13, 148, 136, 0.3);
    --shadow-hover: 0 20px 40px rgba(13, 148, 136, 0.25);
    --shadow-card: 0 4px 20px rgba(10, 22, 40, 0.08);
    --shadow-card-hover: 0 8px 30px rgba(10, 22, 40, 0.15);

    /* Transition easing */
    --ease-premium: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ==========================================================================
   PREMIUM BUTTON EFFECTS
   ========================================================================== */

/* Gold Glow Button - Premium CTA */
.btn-glow,
.more.btn-glow,
a.more.btn-glow {
    animation: tealGlow 2s ease-in-out infinite !important;
    position: relative !important;
    overflow: hidden !important;
}

.btn-glow:hover,
.more.btn-glow:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 15px 40px rgba(13, 148, 136, 0.5) !important;
}

/* Shimmer Effect on Buttons */
.more.shimmer::before,
a.more.shimmer::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    ) !important;
    animation: shimmerSlide 3s ease-in-out infinite !important;
}

/* Premium Button Transition */
.more,
a.more,
button.more,
.button,
.btn {
    transition: all 0.3s var(--ease-premium) !important;
}

.more:hover,
a.more:hover,
button.more:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.35) !important;
}

/* ==========================================================================
   PREMIUM CARD & BOX EFFECTS
   ========================================================================== */

/* Service boxes - Premium hover */
.service-box,
.pricing-box,
.team-member {
    box-shadow: var(--shadow-card);
    transition: all 0.4s var(--ease-premium);
    border: 1px solid transparent;
}

.service-box:hover,
.pricing-box:hover,
.team-member:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-8px);
    border-color: rgba(13, 148, 136, 0.2);
}

/* Features list items - Premium hover */
.features-list li {
    transition: all 0.4s var(--ease-premium);
    position: relative;
}

.features-list.big li {
    padding: 30px;
    background: var(--warm-white);
    border-radius: 8px;
    border: 1px solid rgba(10, 22, 40, 0.05);
}

.features-list.big li:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(13, 148, 136, 0.3);
}

/* Icon container - Premium styling */
.features-list li::before,
.features-list.big li::before {
    transition: all 0.3s var(--ease-premium);
}

.features-list.big li:hover::before {
    color: var(--teal-primary);
    transform: scale(1.1);
}

/* ==========================================================================
   TRUST BADGES SECTION
   ========================================================================== */

.trust-badges-section {
    background: linear-gradient(135deg, #0a1628 0%, #1a1f2c 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.trust-badges-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(197,164,126,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
    opacity: 0.5;
}

.trust-badges-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.trust-badge {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.9), rgba(26, 31, 44, 0.9));
    border: 1px solid rgba(13, 148, 136, 0.3);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    transition: all 0.4s var(--ease-premium);
    position: relative;
    overflow: hidden;
}

.trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--teal-gradient);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-premium);
}

.trust-badge:hover {
    transform: translateY(-10px);
    border-color: rgba(13, 148, 136, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(13, 148, 136, 0.15);
}

.trust-badge:hover::before {
    transform: scaleX(1);
}

.trust-badge-icon {
    font-size: 48px;
    color: var(--teal-primary);
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s var(--ease-premium);
}

.trust-badge:hover .trust-badge-icon {
    transform: scale(1.15) rotate(5deg);
}

.trust-badge-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--pure-white);
    line-height: 1;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.trust-badge-number .counter {
    font-variant-numeric: tabular-nums;
}

.trust-badge-number .suffix {
    font-size: 2rem;
    color: var(--teal-primary);
}

.trust-badge-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.trust-badge .stars {
    font-size: 1.5rem;
    color: var(--teal-primary);
    letter-spacing: 3px;
    display: block;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(13, 148, 136, 0.5);
}

/* ==========================================================================
   PREMIUM CTA BANNER
   ========================================================================== */

.cta-banner-premium {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 30%, #0f766e 70%, #0d9488 100%);
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: shimmerSlide 4s ease-in-out infinite;
}

.cta-banner-premium h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 2;
}

.cta-banner-premium p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem;
    color: var(--navy-primary);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.cta-banner-premium .btn-cta {
    display: inline-block;
    background: var(--navy-deep) !important;
    color: var(--pure-white) !important;
    padding: 18px 45px !important;
    font-family: 'Raleway', sans-serif !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    text-decoration: none !important;
    border-radius: 4px !important;
    border: 2px solid var(--navy-deep) !important;
    transition: all 0.3s var(--ease-premium) !important;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(10, 22, 40, 0.3);
}

.cta-banner-premium .btn-cta:hover {
    background: transparent !important;
    color: var(--navy-deep) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(10, 22, 40, 0.4) !important;
}

/* ==========================================================================
   SERVICES SECTION ENHANCEMENTS
   ========================================================================== */

/* Services list - Image overlay and hover */
.services-list li {
    transition: all 0.4s var(--ease-premium);
    position: relative;
}

.services-list li:hover {
    transform: translateY(-8px);
}

.services-list li a {
    position: relative;
    display: block;
    overflow: hidden;
}

.services-list li a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(13, 148, 136, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.4s var(--ease-premium);
}

.services-list li:hover a::after {
    opacity: 1;
}

.services-list li img {
    transition: transform 0.6s var(--ease-premium);
}

.services-list li:hover img {
    transform: scale(1.08);
}

/* ==========================================================================
   PROJECTS GALLERY ENHANCEMENTS
   ========================================================================== */

.projects-list li {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-card);
    transition: all 0.4s var(--ease-premium);
}

.projects-list li:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.projects-list li a img {
    transition: transform 0.6s var(--ease-premium);
}

.projects-list li:hover a img {
    transform: scale(1.1);
}

.projects-list li .view {
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.6) 0%, rgba(10, 22, 40, 0.95) 100%);
    transition: all 0.4s var(--ease-premium);
}

/* ==========================================================================
   TESTIMONIALS ENHANCEMENTS
   ========================================================================== */

.testimonials-container {
    position: relative;
}

.testimonials-list li {
    transition: all 0.4s var(--ease-premium);
}

.testimonials-list li p {
    font-style: italic;
    position: relative;
}

.testimonials-list li p::before,
.testimonials-list li p::after {
    font-family: Georgia, serif;
    font-size: 4rem;
    color: rgba(13, 148, 136, 0.3);
    position: absolute;
    line-height: 1;
}

.testimonials-list li p::before {
    content: '"';
    top: -20px;
    left: -30px;
}

.testimonials-list li p::after {
    content: '"';
    bottom: -40px;
    right: -20px;
}

.testimonials-list .author {
    color: var(--teal-primary);
    font-weight: 600;
}

/* ==========================================================================
   MOTION TEXT SECTION ENHANCEMENTS
   ========================================================================== */

/* Faster letter animation */
.motion-text .word .letter:nth-child(1) { animation-delay: 0.05s; }
.motion-text .word .letter:nth-child(2) { animation-delay: 0.08s; }
.motion-text .word .letter:nth-child(3) { animation-delay: 0.11s; }
.motion-text .word .letter:nth-child(4) { animation-delay: 0.14s; }
.motion-text .word .letter:nth-child(5) { animation-delay: 0.17s; }
.motion-text .word .letter:nth-child(6) { animation-delay: 0.2s; }
.motion-text .word .letter:nth-child(7) { animation-delay: 0.23s; }
.motion-text .word .letter:nth-child(8) { animation-delay: 0.26s; }
.motion-text .word .letter:nth-child(9) { animation-delay: 0.29s; }
.motion-text .word .letter:nth-child(10) { animation-delay: 0.32s; }

.motion-text .word:nth-child(2) .letter:nth-child(1) { animation-delay: 0.35s; }
.motion-text .word:nth-child(2) .letter:nth-child(2) { animation-delay: 0.38s; }
.motion-text .word:nth-child(2) .letter:nth-child(3) { animation-delay: 0.41s; }
.motion-text .word:nth-child(2) .letter:nth-child(4) { animation-delay: 0.44s; }
.motion-text .word:nth-child(2) .letter:nth-child(5) { animation-delay: 0.47s; }
.motion-text .word:nth-child(2) .letter:nth-child(6) { animation-delay: 0.5s; }

.motion-text .word:nth-child(3) .letter:nth-child(1) { animation-delay: 0.53s; }
.motion-text .word:nth-child(3) .letter:nth-child(2) { animation-delay: 0.56s; }
.motion-text .word:nth-child(3) .letter:nth-child(3) { animation-delay: 0.59s; }
.motion-text .word:nth-child(3) .letter:nth-child(4) { animation-delay: 0.62s; }
.motion-text .word:nth-child(3) .letter:nth-child(5) { animation-delay: 0.65s; }
.motion-text .word:nth-child(3) .letter:nth-child(6) { animation-delay: 0.68s; }
.motion-text .word:nth-child(3) .letter:nth-child(7) { animation-delay: 0.71s; }
.motion-text .word:nth-child(3) .letter:nth-child(8) { animation-delay: 0.74s; }
.motion-text .word:nth-child(3) .letter:nth-child(9) { animation-delay: 0.77s; }
.motion-text .word:nth-child(3) .letter:nth-child(10) { animation-delay: 0.8s; }

/* Enhanced motion text styling */
.motion-text .letter {
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.motion-text .letter.teal {
    text-shadow: 0 0 30px rgba(13, 148, 136, 0.5),
                 2px 2px 20px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   ANNOUNCEMENT BAR ENHANCEMENTS
   ========================================================================== */

.announcement {
    background: var(--teal-gradient);
    transition: all 0.3s var(--ease-premium);
}

.announcement:hover {
    box-shadow: 0 5px 25px rgba(13, 148, 136, 0.4);
}

.announcement h3 {
    font-weight: 700 !important;
}

/* ==========================================================================
   WHAT WE DO SECTION - PREMIUM STYLING
   ========================================================================== */

.what-we-do-section {
    background: linear-gradient(135deg, #0a1628 0%, #1a2a3a 100%);
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
}

.what-we-do-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    min-height: 550px;
    max-width: 100%;
}

.what-we-do-column {
    position: relative;
}

.what-we-do-left,
.what-we-do-right {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.what-we-do-content {
    max-width: 400px;
}

.what-we-do-left .what-we-do-content {
    margin-left: auto;
}

.what-we-do-right .what-we-do-content {
    margin-right: auto;
}

/* Section Label */
.section-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #0d9488;
    display: block;
    margin-bottom: 15px;
}

/* Headings */
.what-we-do-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.2;
    position: relative;
}

.what-we-do-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0d9488, #14b8a6);
    margin-top: 15px;
}

/* Description */
.what-we-do-description {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Feature List */
.what-we-do-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.what-we-do-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.what-we-do-list .list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    color: #0a1628;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
}

/* CTA Button */
.what-we-do-btn {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #0a1628 !important;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #0d9488 100%);
    background-size: 200% 100%;
    padding: 15px 35px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.what-we-do-btn:hover {
    background-position: 100% 0;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.5);
    color: #0a1628 !important;
}

/* Center Image Column */
.what-we-do-image {
    position: relative;
    overflow: hidden;
}


/* ==========================================================================
   PREMIUM STACKED CARDS - Full Screen Design
   ========================================================================== */

.premium-stacked-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
    width: 100%;
}

.premium-stack-card {
    position: relative;
    height: 100%;
    min-height: 120px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(26, 42, 58, 0.9) 100%);
    box-shadow: 0 8px 30px rgba(10, 22, 40, 0.3);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    padding: 25px 30px;
    gap: 25px;
}

.premium-stack-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.premium-stack-card:hover::before {
    opacity: 1;
}

.premium-stack-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 50px rgba(13, 148, 136, 0.4);
    border-left: 4px solid #0d9488;
}

/* Background Image Overlay */
.card-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    transition: all 0.5s ease;
    filter: grayscale(100%);
}

.premium-stack-card:hover .card-image-bg {
    opacity: 0.15;
    filter: grayscale(50%);
    transform: scale(1.05);
}

/* Icon Wrapper */
/* Icon Wrapper */
.premium-service-cards-container .card-icon-wrapper {
	margin-bottom: 25px;
	display: flex;
	justify-content: center;
	overflow: hidden;
}

.premium-stack-card:hover .card-icon-wrapper {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    border-color: #0d9488;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.5);
}

.card-icon-wrapper svg {
    width: 48px;
    height: 48px;
    transition: all 0.4s ease;
}

.premium-stack-card:hover .card-icon-wrapper svg {
    transform: scale(1.1);
}

.card-icon-wrapper svg path,
.card-icon-wrapper svg rect,
.card-icon-wrapper svg circle,
.card-icon-wrapper svg line,
.card-icon-wrapper svg polyline,
.card-icon-wrapper svg ellipse {
    transition: all 0.3s ease;
}

.premium-stack-card:hover .card-icon-wrapper svg path,
.premium-stack-card:hover .card-icon-wrapper svg rect,
.premium-stack-card:hover .card-icon-wrapper svg circle,
.premium-stack-card:hover .card-icon-wrapper svg line,
.premium-stack-card:hover .card-icon-wrapper svg polyline,
.premium-stack-card:hover .card-icon-wrapper svg ellipse {
    stroke: #0a1628;
    fill: #0a1628;
}

.premium-stack-card:hover .card-icon-wrapper svg text {
    fill: #0a1628;
}

/* Card Content */
.card-content {
    flex: 1;
    z-index: 2;
    position: relative;
}

.card-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #0d9488;
    margin: 0 0 8px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.premium-stack-card:hover .card-title {
    color: #14b8a6;
    transform: translateX(5px);
}

.card-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    transition: all 0.3s ease;
}

.premium-stack-card:hover .card-desc {
    color: rgba(255, 255, 255, 0.95);
    transform: translateX(5px);
}

/* Responsive - Tablet */

/* ==========================================================================
   DESKTOP FIXES - Premium Cards Full Height
   ========================================================================== */

/* Desktop specific - ensure proper layout on PC */
@media (min-width: 993px) {
    .what-we-do-image {
        min-height: 550px;
        height: 100%;
    }

    .premium-stacked-cards {
        height: 100%;
        min-height: 550px;
    }

    .premium-stack-card {
        flex: 1;
        min-height: 125px;
    }

    .card-icon-wrapper {
        width: 80px !important;
        height: 80px !important;
        min-width: 80px !important;
    }

    .card-icon-wrapper svg {
        width: 48px !important;
        height: 48px !important;
    }
}

/* Fix all SVG icon constraints globally */
.card-icon-wrapper svg,
.card-icon-wrapper svg * {
    max-width: 100%;
    max-height: 100%;
}

@media (max-width: 992px) {
    .what-we-do-image {
        height: auto !important;
        min-height: 400px;
    }

    .premium-stacked-cards {
        gap: 12px;
    }

    .premium-stack-card {
        min-height: 90px;
        padding: 20px;
        gap: 20px;
    }

    .card-icon-wrapper {
        width: 70px;
        height: 70px;
        min-width: 70px;
    }

    .card-icon-wrapper svg {
        width: 40px;
        height: 40px;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .card-desc {
        font-size: 0.9rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .what-we-do-image {
        height: auto !important;
        min-height: 350px;
    }

    .premium-stacked-cards {
        gap: 10px;
    }

    .premium-stack-card {
        min-height: 80px;
        padding: 18px;
        gap: 15px;
        flex-direction: row;
    }

    .card-icon-wrapper {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .card-icon-wrapper svg {
        width: 36px;
        height: 36px;
    }

    .card-title {
        font-size: 1.05rem;
    }

    .card-desc {
        font-size: 0.85rem;
        line-height: 1.6;
    }
}
.what-we-do-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.95), transparent);
    padding: 40px 30px 30px;
    text-align: center;
}

.overlay-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #0d9488;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* Skills Progress Bars */
.skills-progress {
    margin-top: 10px;
}

.skill-item {
    margin-bottom: 20px;
}

.skill-item:last-child {
    margin-bottom: 0;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.skill-name {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.skill-percent {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #0d9488;
}

.skill-bar {
    height: 12px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(13, 148, 136, 0.2) !important;
    position: relative !important;
    display: block !important;
}

.skill-fill {
    height: 100% !important;
    background: linear-gradient(90deg, #0d9488, #14b8a6, #0d9488) !important;
    background-size: 200% 100% !important;
    border-radius: 6px !important;
    width: 0 !important;
    transition: width 1.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    animation: shimmerSlide 3s ease-in-out infinite !important;
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.5) !important;
    display: block !important;
    position: relative !important;
}

.skill-fill[data-percentage="95"] { width: 95% !important; }
.skill-fill[data-percentage="90"] { width: 90% !important; }
.skill-fill[data-percentage="88"] { width: 88% !important; }
.skill-fill[data-percentage="85"] { width: 85% !important; }

/* Responsive - Tablet */
@media (max-width: 992px) {
    .what-we-do-container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .what-we-do-image {
        grid-column: 1 / -1;
        grid-row: 1;
        height: 300px;
    }

    .what-we-do-left,
    .what-we-do-right {
        padding: 40px 30px;
    }

    .what-we-do-content {
        max-width: 100%;
        margin: 0;
    }

    .what-we-do-heading {
        font-size: 2rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .what-we-do-container {
        grid-template-columns: 1fr;
    }

    .what-we-do-image {
        grid-column: 1;
        height: 250px;
    }

    .what-we-do-left,
    .what-we-do-right {
        padding: 35px 20px;
    }

    .what-we-do-heading {
        font-size: 1.75rem;
    }

    .what-we-do-description {
        font-size: 0.95rem;
    }

    .what-we-do-list li {
        font-size: 0.9rem;
    }

    .overlay-text {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .what-we-do-left,
    .what-we-do-right {
        padding: 30px 15px;
    }

    .what-we-do-heading {
        font-size: 1.5rem;
    }

    .section-label {
        font-size: 0.75rem;
    }

    .what-we-do-btn {
        width: 100%;
        text-align: center;
        padding: 14px 25px;
    }

    .skill-name {
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   PROGRESS BAR ENHANCEMENTS
   ========================================================================== */

.progress-bar .bar {
    background: var(--teal-gradient);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.progress-bar .bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: shimmerSlide 2s ease-in-out infinite;
}

/* ==========================================================================
   COUNTER STYLING
   ========================================================================== */

.counter-container .number {
    color: var(--teal-primary);
    text-shadow: 2px 2px 10px rgba(13, 148, 136, 0.3);
}

/* ==========================================================================
   FOOTER ENHANCEMENTS
   ========================================================================== */

.row.gray.full-width {
    background: linear-gradient(180deg, #1a1f2c 0%, #0a1628 100%);
}

.row.gray .box-header {
    position: relative;
    padding-bottom: 15px;
}

.row.gray .box-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--teal-gradient);
}

/* ==========================================================================
   PARALLAX BACKGROUND ENHANCEMENT
   ========================================================================== */

.parallax,
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS FOR PREMIUM STYLES
   ========================================================================== */

@media (max-width: 992px) {
    .trust-badges-row {
        gap: 20px;
    }

    .trust-badge {
        min-width: 180px;
        padding: 25px 20px;
    }

    .trust-badge-number {
        font-size: 2.8rem;
    }

    .cta-banner-premium h2 {
        font-size: 2rem;
    }

    .cta-banner-premium p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .trust-badges-section {
        padding: 40px 15px;
    }

    .trust-badges-row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        flex-direction: unset;
    }

    .trust-badge {
        width: 100% !important;
        max-width: none !important;
    }

    .cta-banner-premium {
        padding: 40px 20px;
    }

    .cta-banner-premium h2 {
        font-size: 1.6rem;
    }

    .cta-banner-premium .btn-cta {
        padding: 15px 30px !important;
        font-size: 1rem !important;
    }

    .features-list.big li {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .trust-badge-number {
        font-size: 2.5rem;
    }

    .trust-badge-label {
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE FIXES - ALL SCREEN SIZES
   ========================================================================== */

/* Extra large screens */
@media (min-width: 1400px) {
    .container,
    .row {
        max-width: 1320px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Large screens */
@media (max-width: 1200px) {
    .container,
    .row {
        padding-left: 20px;
        padding-right: 20px;
    }

    .motion-text-section .motion-text .letter {
        font-size: 4.5rem;
    }
}

/* Medium screens - tablets */
@media (max-width: 992px) {
    html {
        font-size: 16px;
    }

    .motion-text-section {
        padding: 60px 20px;
    }

    .motion-text-section .motion-text .letter {
        font-size: 3.5rem;
    }

    .motion-text-section .motion-subtitle {
        font-size: 0.95rem;
        letter-spacing: 0.2em;
    }

    .motion-text-section .motion-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    /* Fix columns for tablet */
    .column-1-4,
    .column-1-3,
    .column-1-2 {
        width: 50% !important;
        float: left;
    }

    .slider-content-box h2 {
        font-size: 2.2rem !important;
    }

    .slider-content-box p {
        font-size: 1.2rem !important;
    }
}

/* Small screens - mobile landscape */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    body {
        font-size: 1rem;
    }

    .motion-text-section {
        padding: 50px 15px;
        background-attachment: scroll; /* Fix parallax on mobile */
    }

    .motion-text-section .motion-text .letter {
        font-size: 2.8rem;
    }

    .motion-text-section .motion-subtitle {
        font-size: 0.85rem;
        letter-spacing: 0.15em;
    }

    .motion-text-section .motion-description {
        font-size: 1rem;
    }

    /* 4-column sections as 2x2 grid on mobile */
    .column-1-4 {
        width: 48% !important;
        float: left !important;
        margin-right: 4% !important;
        margin-bottom: 20px !important;
        padding-left: 10px;
        padding-right: 10px;
        box-sizing: border-box !important;
    }

    .column-1-4:nth-child(2n) {
        margin-right: 0 !important;
    }

    .column-1-4:nth-child(2n+1) {
        clear: left !important;
    }

    /* Other columns stack full width */
    .column-1-3,
    .column-1-2,
    .column-2-3,
    .column-3-4 {
        width: 100% !important;
        float: none !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .features-list.big li {
        margin-bottom: 20px;
    }

    .slider-content-box {
        padding: 20px !important;
    }

    .slider-content-box h2 {
        font-size: 1.8rem !important;
    }

    .slider-content-box p {
        font-size: 1.1rem !important;
    }

    .slider-content-box .more {
        font-size: 0.9rem !important;
        padding: 12px 24px !important;
    }

    /* Header fixes for mobile */
    .header .logo .logo-text {
        font-size: 1.4rem;
    }

    .header .logo .logo-sub {
        font-size: 0.65rem;
    }
}

/* Extra small screens - mobile portrait */
@media (max-width: 576px) {
    html {
        font-size: 14px;
    }

    .motion-text-section {
        padding: 40px 10px;
    }

    .motion-text-section .motion-text .letter {
        font-size: 2.2rem;
    }

    .motion-text-section .motion-subtitle {
        font-size: 0.75rem;
        letter-spacing: 0.1em;
    }

    .motion-text-section .motion-description {
        font-size: 0.95rem;
    }

    .cta-banner-premium {
        padding: 30px 15px;
    }

    .cta-banner-premium h2 {
        font-size: 1.4rem;
    }

    .cta-banner-premium p {
        font-size: 1rem;
    }

    .cta-banner-premium .btn-cta {
        padding: 12px 25px !important;
        font-size: 0.9rem !important;
        width: 100%;
        max-width: 280px;
    }

    /* Trust badges mobile */
    .trust-badges-section {
        padding: 30px 10px;
    }

    .trust-badge {
        padding: 20px 15px;
        min-width: unset;
        width: 90%;
    }

    .trust-badge-number {
        font-size: 2rem;
    }

    .trust-badge-label {
        font-size: 0.75rem;
    }

    .stars {
        font-size: 1.5rem;
    }

    /* Header mobile fixes */
    .header .logo .logo-text {
        font-size: 1.2rem;
    }

    .header .logo .logo-sub {
        font-size: 0.6rem;
    }

    /* Buttons mobile */
    .more, a.more, button.more {
        font-size: 0.9rem;
        padding: 12px 24px;
    }
}

/* Very small screens */
@media (max-width: 400px) {
    html {
        font-size: 13px;
    }

    .motion-text-section .motion-text .letter {
        font-size: 1.8rem;
    }

    .cta-banner-premium h2 {
        font-size: 1.2rem;
    }

    .slider-content-box h2 {
        font-size: 1.5rem !important;
    }
}

/* ==========================================================================
   FINAL OVERRIDE: Force all fixed widths to be responsive
   This must come LAST to override responsive.css fixed widths
   ========================================================================== */

@media screen and (max-width: 1189px) {
    .header-top-bar,
    .header,
    .row,
    .announcement {
        width: 100% !important;
        max-width: 750px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media screen and (max-width: 959px) {
    .header-top-bar,
    .header,
    .row,
    .announcement {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .page-header-left,
    .page-header-right {
        width: 100% !important;
        float: none !important;
    }
}

@media screen and (max-width: 767px) {
    .header-top-bar,
    .header,
    .row,
    .announcement,
    .header-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    /* Force all columns to stack */
    [class*="column-"] {
        width: 100% !important;
        float: none !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Fix slider on mobile */
    .forcefullwidth_wrapper_tp_banner,
    .rev_slider_wrapper,
    .tp-fullwidth-forcer,
    .revolution-slider-container {
        width: 100% !important;
        max-width: 100vw !important;
        left: 0 !important;
        margin-left: 0 !important;
    }
}

/* Ultimate fallback - prevent ANY horizontal scroll */
@media screen and (max-width: 9999px) {
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    .site-container {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
}

/* ==========================================================================
   SECTION-BY-SECTION MOBILE FIXES
   ========================================================================== */

/* 1. HEADER TOP BAR - Phone/Email */
@media (max-width: 768px) {
    .header-top-bar-container {
        padding: 8px 10px !important;
    }

    .header-top-bar {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 5px !important;
    }

    .header-top-bar .contact-details {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        text-align: center !important;
    }

    .header-top-bar .contact-details li {
        display: block !important;
        margin: 3px 0 !important;
        font-size: 0.85rem !important;
    }

    .header-top-bar .contact-details li a {
        word-break: break-all !important;
        font-size: 0.85rem !important;
    }

    .header-top-bar .social-icons {
        display: none !important; /* Hide on mobile for cleaner look */
    }

    .header-top-bar .search-container {
        display: none !important; /* Hide on mobile */
    }
}

/* 2. MAIN HEADER / LOGO */
@media (max-width: 768px) {
    .header-container {
        padding: 15px 10px !important;
    }

    .header .logo {
        width: 100% !important;
        text-align: center !important;
        float: none !important;
    }

    .header .logo img {
        max-width: 200px !important;
        height: auto !important;
    }

    .header .logo .logo-text {
        font-size: 1.3rem !important;
    }

    .header .logo .logo-sub {
        font-size: 0.6rem !important;
        letter-spacing: 0.1em !important;
    }

    .menu-container {
        width: 100% !important;
        float: none !important;
    }
}

/* 3. HERO SLIDER */
@media (max-width: 768px) {
    .revolution-slider-container,
    .rev_slider_wrapper,
    .forcefullwidth_wrapper_tp_banner {
        height: 400px !important;
        max-height: 400px !important;
    }

    .slider-content-box {
        padding: 15px !important;
        width: 90% !important;
        max-width: 90% !important;
    }

    .slider-content-box h2 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
    }

    .slider-content-box p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 15px !important;
    }

    .slider-content-box .more {
        font-size: 0.8rem !important;
        padding: 10px 20px !important;
    }

    .tp-caption {
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .revolution-slider-container,
    .rev_slider_wrapper,
    .forcefullwidth_wrapper_tp_banner {
        height: 350px !important;
        max-height: 350px !important;
    }

    .slider-content-box h2 {
        font-size: 1.2rem !important;
    }

    .slider-content-box p {
        font-size: 0.9rem !important;
        display: none !important; /* Hide description on very small screens */
    }
}

/* 4. MOTION TEXT SECTION */
@media (max-width: 768px) {
    .motion-text-section {
        padding: 40px 15px !important;
    }

    .motion-text-container {
        padding: 0 10px !important;
    }

    .motion-text-section .motion-subtitle {
        font-size: 0.75rem !important;
        letter-spacing: 0.15em !important;
        margin-bottom: 15px !important;
    }

    .motion-text-section .motion-text {
        margin-bottom: 20px !important;
    }

    .motion-text-section .motion-text .letter {
        font-size: 2rem !important;
        display: inline-block !important;
    }

    .motion-text-section .motion-description {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        padding: 0 10px !important;
    }
}

@media (max-width: 480px) {
    .motion-text-section .motion-text .letter {
        font-size: 1.5rem !important;
    }

    .motion-text-section .motion-subtitle {
        font-size: 0.65rem !important;
    }
}

/* 5. TRUST BADGES SECTION - 2x2 GRID */
@media (max-width: 768px) {
    .trust-badges-section {
        padding: 30px 10px !important;
    }

    .trust-badges-row {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        flex-direction: unset !important;
    }

    .trust-badge {
        width: 100% !important;
        max-width: none !important;
        padding: 18px 12px !important;
    }

    .trust-badge-icon {
        font-size: 2rem !important;
    }

    .trust-badge-number {
        font-size: 2.5rem !important;
    }

    .trust-badge-label {
        font-size: 0.75rem !important;
    }

    .stars {
        font-size: 1.5rem !important;
    }
}

/* 6. WHY CHOOSE US - 4 COLUMNS WITH EQUAL HEIGHT CARDS */

/* Desktop - Use CSS Grid for equal height cards */
.features-grid-4col {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    padding: 0 15px !important;
}

.features-grid-4col .column-1-4 {
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    display: flex !important;
}

.features-grid-4col .features-list.big {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.features-grid-4col .features-list.big li {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 280px !important;
}

.features-grid-4col .features-list.big li p {
    flex-grow: 1 !important;
}

/* Typography to match Trust Badges section */
.features-grid-4col .features-list.big li h4.box-header,
.features-list.big li h4.box-header {
    font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: #0a1628 !important;
    margin-bottom: 15px !important;
}

.features-grid-4col .features-list.big li p,
.features-list.big li p {
    font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    color: #555555 !important;
    letter-spacing: 0.01em !important;
}

/* Fix icon centering within circular container */
.features-grid-4col .features-list.big li::before,
.features-list.big li::before {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    float: none !important;
    clear: both !important;
    margin: 0 auto 20px !important;
    text-align: center !important;
    width: 120px !important;
    height: 120px !important;
    padding: 25px !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
    font-size: 50px !important;
    border: 1px solid rgba(13, 148, 136, 0.3) !important;
    border-radius: 50% !important;
    color: #0d9488 !important;
    background: rgba(13, 148, 136, 0.05) !important;
}

@media (max-width: 992px) {
    /* Tablet - 2x2 grid with equal height */
    .features-grid-4col {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
        padding: 0 15px !important;
    }

    .features-grid-4col .features-list.big li {
        min-height: 260px !important;
        padding: 20px 15px !important;
    }

    .features-list.big h4.box-header {
        font-size: 1.2rem !important;
    }

    .features-list.big p {
        font-size: 1rem !important;
    }
}

@media (max-width: 768px) {
    /* Mobile - 2x2 grid with equal height cards */
    .features-grid-4col {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 10px !important;
    }

    .features-grid-4col .features-list.big li {
        min-height: 240px !important;
        padding: 15px 12px !important;
        text-align: center !important;
    }

    .features-grid-4col .features-list.big li::before,
    .features-list.big li::before {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto 15px !important;
        float: none !important;
        clear: both !important;
        text-align: center !important;
        width: 90px !important;
        height: 90px !important;
        padding: 20px !important;
        font-size: 40px !important;
        line-height: 1 !important;
        box-sizing: border-box !important;
    }

    .features-list.big h4.box-header {
        font-size: 1.1rem !important;
    }

    .features-list.big p {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }
}

@media (max-width: 480px) {
    /* Small mobile - still 2x2 but tighter */
    .features-grid-4col {
        gap: 10px !important;
        padding: 0 8px !important;
    }

    .features-grid-4col .features-list.big li {
        min-height: 220px !important;
        padding: 12px 10px !important;
    }

    .features-list.big h4.box-header {
        font-size: 1rem !important;
    }

    .features-list.big p {
        font-size: 0.85rem !important;
    }
}

/* 7. SERVICES SECTION */
@media (max-width: 768px) {
    .services-list li {
        width: 100% !important;
        margin-bottom: 20px !important;
    }

    .services-list h4.box-header {
        font-size: 1.3rem !important;
    }

    .services-list p {
        font-size: 1rem !important;
    }

    .services-list .more {
        font-size: 0.85rem !important;
    }
}

/* 8. PROJECTS GALLERY */
@media (max-width: 768px) {
    .projects-gallery-list li {
        width: 100% !important;
        margin-bottom: 15px !important;
    }

    .projects-gallery-list li a {
        display: block !important;
    }

    .projects-gallery-list li img {
        width: 100% !important;
        height: auto !important;
    }
}

/* 9. CTA BANNER */
@media (max-width: 768px) {
    .cta-banner-premium {
        padding: 30px 15px !important;
    }

    .cta-banner-premium h2 {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
    }

    .cta-banner-premium p {
        font-size: 1rem !important;
        margin-bottom: 20px !important;
    }

    .cta-banner-premium .btn-cta {
        font-size: 1rem !important;
        padding: 15px 25px !important;
        width: auto !important;
        max-width: 90% !important;
    }
}

/* 10. TESTIMONIALS */
@media (max-width: 768px) {
    .testimonials-container {
        padding: 0 10px !important;
    }

    .testimonials-list li {
        width: 100% !important;
        padding: 20px 15px !important;
    }

    .testimonials-list li p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }

    .testimonials-list .author {
        font-size: 1rem !important;
    }
}

/* 11. FOOTER */
@media (max-width: 768px) {
    .row.gray {
        padding: 30px 15px !important;
    }

    .row.gray .column-1-4 {
        width: 100% !important;
        float: none !important;
        margin-bottom: 25px !important;
        text-align: center !important;
    }

    .row.gray .box-header {
        font-size: 1.1rem !important;
    }

    .row.gray p,
    .row.gray .list li a {
        font-size: 0.95rem !important;
    }

    .copyright {
        text-align: center !important;
        padding: 15px 10px !important;
        font-size: 0.85rem !important;
    }
}

/* 12. ANNOUNCEMENT BAR */
@media (max-width: 768px) {
    .announcement {
        padding: 20px 15px !important;
    }

    .announcement h3 {
        font-size: 1.2rem !important;
    }

    .announcement p {
        font-size: 0.95rem !important;
    }

    .announcement .more {
        font-size: 0.85rem !important;
        padding: 10px 20px !important;
    }
}

/* 13. GENERAL TEXT ELEMENTS ON MOBILE */
@media (max-width: 768px) {
    p {
        font-size: 1rem !important;
        line-height: 1.7 !important;
    }

    p.description {
        font-size: 1.05rem !important;
    }

    h1, .h1 {
        font-size: 1.8rem !important;
    }

    h2, .h2 {
        font-size: 1.5rem !important;
    }

    h3, .h3 {
        font-size: 1.3rem !important;
    }

    h4, .h4, .box-header {
        font-size: 1.15rem !important;
    }

    .more, a.more, button.more {
        font-size: 0.9rem !important;
        padding: 12px 24px !important;
    }
}

/* ==========================================================================
   CRITICAL MOBILE MENU & HEADER FIXES
   (Old section removed - see MOBILE HEADER FINAL COMPREHENSIVE FIX below)
   ========================================================================== */

/* ==========================================================================
   FIX SLIDER ON MOBILE - FORCE HERO CARD VISIBLE
   ========================================================================== */

@media (max-width: 768px) {
    .revolution-slider-container,
    .rev_slider_wrapper,
    .forcefullwidth_wrapper_tp_banner,
    .fullwidthbanner-container,
    .tp-fullwidth-forcer {
        height: 450px !important;
        max-height: 450px !important;
        min-height: 400px !important;
    }

    /* SLIDER CONTENT BOX - VISIBLE & STYLED */
    .slider-content-box {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        max-width: 300px !important;
        padding: 18px 20px !important;
        text-align: center !important;
        background: rgba(10, 22, 40, 0.95) !important;
        border-radius: 10px !important;
        border: 1px solid rgba(13, 148, 136, 0.4) !important;
        box-shadow: 0 10px 40px rgba(0,0,0,0.5) !important;
    }

    .slider-content-box h2 {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
        color: #ffffff !important;
        padding: 0 0 12px 0 !important;
        margin: 0 0 12px 0 !important;
        background: transparent !important;
        border-bottom: 2px solid #0d9488 !important;
    }

    .slider-content-box h2 a {
        color: #ffffff !important;
        font-size: 1.1rem !important;
    }

    .slider-content-box p {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        color: #e0e0e0 !important;
        margin: 0 0 15px 0 !important;
        padding: 0 !important;
    }

    .slider-content-box .more,
    .slider-content-box a.more {
        display: inline-block !important;
        opacity: 1 !important;
        visibility: visible !important;
        font-size: 0.8rem !important;
        padding: 10px 22px !important;
        margin: 0 !important;
        background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%) !important;
        color: #0a1628 !important;
        border-radius: 5px !important;
    }

    /* Hide arrows on mobile */
    .tp-leftarrow,
    .tp-rightarrow {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .revolution-slider-container,
    .rev_slider_wrapper,
    .forcefullwidth_wrapper_tp_banner,
    .fullwidthbanner-container,
    .tp-fullwidth-forcer {
        height: 380px !important;
        max-height: 380px !important;
        min-height: 350px !important;
    }

    .slider-content-box {
        max-width: 270px !important;
        padding: 15px 18px !important;
    }

    .slider-content-box h2,
    .slider-content-box h2 a {
        font-size: 1rem !important;
    }

    .slider-content-box p {
        font-size: 0.8rem !important;
    }

    .slider-content-box .more {
        font-size: 0.75rem !important;
        padding: 8px 18px !important;
    }
}

@media (max-width: 380px) {
    .revolution-slider-container,
    .rev_slider_wrapper,
    .forcefullwidth_wrapper_tp_banner {
        height: 360px !important;
        max-height: 360px !important;
    }

    .slider-content-box {
        max-width: 240px !important;
        padding: 12px 15px !important;
    }

    .slider-content-box h2,
    .slider-content-box h2 a {
        font-size: 0.95rem !important;
    }

    .slider-content-box p {
        font-size: 0.75rem !important;
    }

    .slider-content-box .more {
        font-size: 0.7rem !important;
        padding: 7px 15px !important;
    }

    .slider-content-box p {
        display: none !important;
    }
}

/* ==========================================================================
   FIX MOTION TEXT SECTION ON MOBILE
   ========================================================================== */

@media (max-width: 768px) {
    .motion-text-section {
        padding: 40px 15px !important;
        background-attachment: scroll !important;
    }

    .motion-text-section .motion-text {
        margin-bottom: 15px !important;
    }

    .motion-text-section .motion-text .letter {
        font-size: 2.2rem !important;
        display: inline-block !important;
    }

    .motion-text-section .motion-subtitle {
        font-size: 0.7rem !important;
        letter-spacing: 0.15em !important;
        margin-bottom: 10px !important;
    }

    .motion-text-section .motion-description {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        padding: 0 10px !important;
    }
}

@media (max-width: 480px) {
    .motion-text-section {
        padding: 30px 10px !important;
    }

    .motion-text-section .motion-text .letter {
        font-size: 1.8rem !important;
    }

    .motion-text-section .motion-subtitle {
        font-size: 0.6rem !important;
    }

    .motion-text-section .motion-description {
        font-size: 0.9rem !important;
    }
}

/* ==========================================================================
   STICKY CALL BUTTON AT BOTTOM (MOBILE)
   ========================================================================== */

.mobile-call-button {
    display: none;
}

@media (max-width: 768px) {
    .mobile-call-button {
        display: block !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%) !important;
        color: #0a1628 !important;
        text-align: center !important;
        padding: 15px !important;
        font-size: 1.1rem !important;
        font-weight: 700 !important;
        text-decoration: none !important;
        z-index: 99999 !important;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.2) !important;
    }

    .mobile-call-button:hover {
        background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%) !important;
    }

    /* Add padding to body so content isn't hidden behind sticky button */
    body {
        padding-bottom: 60px !important;
    }
}

/* ==========================================================================
   REVOLUTION SLIDER MOBILE OVERRIDE - Force caption visibility
   ========================================================================== */

@media (max-width: 768px) {
    /* Override ALL Revolution Slider inline styles on mobile */
    .rev_slider .tp-caption,
    .rev_slider .tp-parallax-wrap,
    .rev_slider .tp-loop-wrap,
    .rev_slider .tp-mask-wrap {
        position: absolute !important;
        top: 50% !important;
        left: 5% !important;
        right: 5% !important;
        width: 90% !important;
        transform: translateY(-50%) !important;
        -webkit-transform: translateY(-50%) !important;
    }

    /* Ensure slider content is always visible - FORCE SHOW */
    .rev_slider .slider-content-box,
    .tp-caption .slider-content-box,
    .slider-content-box,
    .tp-caption,
    .rev_slider .tp-caption {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }

    /* Fix layer positioning */
    .rev_slider li .tp-caption {
        margin-top: 0 !important;
        top: 50% !important;
    }

    /* FORCE HERO CARD TO SHOW */
    .slider-content-box {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: rgba(10, 22, 40, 0.9) !important;
        padding: 20px !important;
        border-radius: 10px !important;
        max-width: 90% !important;
        margin: 0 auto !important;
    }

    .slider-content-box h2,
    .slider-content-box p,
    .slider-content-box .more {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* ==========================================================================
   ENSURE NO HORIZONTAL SCROLL - FINAL OVERRIDE
   ========================================================================== */

html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
}

.site-container {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
}

* {
    max-width: 100vw;
}

/* ==========================================================================
   MOBILE HEADER BAR - Phone & Reviews (under main header)
   ========================================================================== */

/* Hide on desktop */
.mobile-header-bar {
    display: none;
}

/* Show on mobile and tablet */
@media (max-width: 992px) {
    /* REMOVE ALL BORDERS from header area - NO LINES except the one we want */
    .header,
    .header-container,
    .header-container .header,
    .header-container .vertical-align-table,
    .header-container .column-1-1,
    .header-top-bar-container,
    .header-top-bar,
    .menu-container,
    .mobile-menu-container,
    .site-container > .header-container {
        border: none !important;
        border-top: none !important;
        border-bottom: none !important;
        box-shadow: none !important;
    }

    .mobile-header-bar {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        padding: 12px 15px !important;
        background: #0a1628 !important;
        border-top: 3px solid #0d9488 !important;
        gap: 15px !important;
    }

    /* Phone button - left side - BIG & BOLD for older people */
    .mobile-header-phone {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        padding: 14px 20px !important;
        background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%) !important;
        color: #0a1628 !important;
        text-decoration: none !important;
        font-family: "Georgia", "Times New Roman", serif !important;
        font-weight: 900 !important;
        font-size: 1.3rem !important;
        letter-spacing: 0.5px !important;
        border-radius: 8px !important;
        white-space: nowrap !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 4px 15px rgba(13, 148, 136, 0.4) !important;
    }

    .mobile-header-phone:hover,
    .mobile-header-phone:active {
        background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%) !important;
        transform: scale(1.03) !important;
        box-shadow: 0 6px 20px rgba(13, 148, 136, 0.5) !important;
    }

    .mobile-header-phone .template-phone::before {
        color: #0a1628 !important;
        font-size: 1.4rem !important;
    }

    /* Reviews badge - right side - CLEAN & VISIBLE */
    .mobile-header-reviews {
        flex: 0 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Custom Review Badge */
    .review-badge {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        background: linear-gradient(135deg, #1a2a3a 0%, #0a1628 100%) !important;
        border: 2px solid #0d9488 !important;
        border-radius: 10px !important;
        padding: 10px 16px !important;
        min-width: 100px !important;
    }

    .review-stars {
        color: #ffd700 !important;
        font-size: 1.1rem !important;
        letter-spacing: 2px !important;
        line-height: 1 !important;
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.5) !important;
    }

    .review-text {
        color: #ffffff !important;
        font-size: 0.7rem !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        margin-top: 4px !important;
        white-space: nowrap !important;
    }
}

@media (max-width: 480px) {
    .mobile-header-bar {
        padding: 10px 12px !important;
        gap: 10px !important;
        flex-wrap: nowrap !important;
    }

    .mobile-header-phone {
        padding: 12px 14px !important;
        font-size: 1rem !important;
        gap: 6px !important;
        flex: 1 1 auto !important;
    }

    .mobile-header-phone .template-phone::before {
        font-size: 1rem !important;
    }

    .review-badge {
        padding: 8px 12px !important;
        min-width: 85px !important;
        border-radius: 8px !important;
    }

    .review-stars {
        font-size: 0.95rem !important;
        letter-spacing: 1px !important;
    }

    .review-text {
        font-size: 0.6rem !important;
        margin-top: 3px !important;
    }
}

@media (max-width: 380px) {
    .mobile-header-bar {
        padding: 8px 10px !important;
        gap: 8px !important;
    }

    .mobile-header-phone {
        padding: 10px 12px !important;
        font-size: 0.9rem !important;
        gap: 5px !important;
    }

    .mobile-header-phone .template-phone::before {
        font-size: 0.9rem !important;
    }

    .review-badge {
        padding: 6px 10px !important;
        min-width: 75px !important;
        border-width: 1px !important;
    }

    .review-stars {
        font-size: 0.85rem !important;
        letter-spacing: 0px !important;
    }

    .review-text {
        font-size: 0.55rem !important;
        margin-top: 2px !important;
    }
}

/* ==========================================================================
   MOBILE HEADER - FINAL COMPREHENSIVE FIX
   This section overrides ALL previous mobile header styles
   ========================================================================== */

/* ===== MOBILE BREAKPOINT (767px and below - phones only) ===== */
@media (max-width: 767px) {

    /* 1. TOP BAR - Hide completely on mobile (phone shows in sticky button) */
    .header-top-bar-container,
    .header-top-bar,
    .header-toggle {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
    }

    /* 2. MAIN HEADER CONTAINER - Full width, proper background */
    .header-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        background: #0a1628 !important;
        position: relative !important;
        z-index: 1000 !important;
    }

    .header-container .vertical-align-table,
    .header-container .column-1-1 {
        display: block !important;
        width: 100% !important;
        padding: 0 !important;
    }

    /* 3. HEADER - Flex layout for logo + hamburger */
    .header {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 15px !important;
        margin: 0 !important;
        background: #0a1628 !important;
        min-height: 60px !important;
        box-sizing: border-box !important;
        position: relative !important;
    }

    /* 4. LOGO - Left side, absolutely positioned */
    .header .logo {
        display: flex !important;
        align-items: center !important;
        position: absolute !important;
        left: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: auto !important;
        max-width: 60% !important;
        float: none !important;
        margin: 0 !important;
        padding: 0 !important;
        z-index: 50 !important;
    }

    .header .logo a {
        display: flex !important;
        align-items: center !important;
        text-decoration: none !important;
    }

    .header .logo .logo-text {
        font-size: 1.15rem !important;
        line-height: 1.1 !important;
        color: #ffffff !important;
        font-weight: 700 !important;
        letter-spacing: 0.02em !important;
    }

    .header .logo .logo-sub {
        font-size: 0.55rem !important;
        letter-spacing: 0.15em !important;
        color: #0d9488 !important;
        display: block !important;
    }

    .header .logo img {
        max-width: 130px !important;
        height: auto !important;
    }

    /* 5. HAMBURGER MENU BUTTON - Right side, absolutely positioned */
    .header .mobile-menu-switch {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 44px !important;
        height: 44px !important;
        padding: 8px !important;
        cursor: pointer !important;
        position: absolute !important;
        right: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        background: rgba(13, 148, 136, 0.1) !important;
        border-radius: 6px !important;
        border: 1px solid rgba(13, 148, 136, 0.3) !important;
        transition: all 0.3s ease !important;
        z-index: 100 !important;
    }

    .header .mobile-menu-switch:hover,
    .header .mobile-menu-switch:active {
        background: rgba(13, 148, 136, 0.2) !important;
    }

    .header .mobile-menu-switch .line {
        display: block !important;
        width: 22px !important;
        height: 2px !important;
        background: #0d9488 !important;
        margin: 3px 0 !important;
        border-radius: 2px !important;
        transition: all 0.3s ease !important;
    }

    /* 6. MENU CONTAINER - Hide desktop menu but allow mobile menu to show */
    .header .menu-container {
        position: static !important;
        width: 100% !important;
        order: 3 !important;
        float: none !important;
        display: block !important;
    }

    /* Hide the desktop navigation */
    .header .menu-container > nav > .sf-menu,
    .header .sf-menu {
        display: none !important;
    }

    /* 7. MOBILE MENU CONTAINER - Full width below header */
    /* Note: This container should NOT be hidden - the JS toggles .mobile-menu inside it */
    .mobile-menu-container {
        display: block !important;
        position: relative !important;
        width: 100% !important;
        max-width: 100vw !important;
        background: transparent !important;
        z-index: 9999 !important;
    }

    /* Mobile menu divider - hide as it's not needed */
    .mobile-menu-divider {
        display: none !important;
    }

    /* ============================================
       MOBILE MENU CLOSE BUTTON - Premium Design
       ============================================ */
    .mobile-menu-container .mobile-menu-close-btn {
        display: none;
        position: absolute !important;
        top: 12px !important;
        right: 15px !important;
        width: 44px !important;
        height: 44px !important;
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        border: 2px solid rgba(13, 148, 136, 0.6) !important;
        border-radius: 50% !important;
        cursor: pointer;
        z-index: 10000 !important;
        align-items: center;
        justify-content: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        opacity: 0;
        transform: scale(0.8) rotate(-90deg);
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-menu-container .mobile-menu-close-btn .close-icon {
        width: 22px !important;
        height: 22px !important;
        stroke: #0d9488 !important;
        stroke-width: 2.5 !important;
        transition: all 0.3s ease !important;
    }

    /* Hover & Active states */
    .mobile-menu-container .mobile-menu-close-btn:hover,
    .mobile-menu-container .mobile-menu-close-btn:active {
        background: rgba(255, 255, 255, 0.1) !important;
        border-color: #ffffff !important;
        transform: scale(1.1) !important;
    }

    .mobile-menu-container .mobile-menu-close-btn:hover .close-icon,
    .mobile-menu-container .mobile-menu-close-btn:active .close-icon {
        stroke: #ffffff !important;
    }

    /* Show close button when menu is open */
    .mobile-menu-container.menu-open .mobile-menu-close-btn {
        display: flex !important;
        opacity: 1 !important;
        transform: scale(1) rotate(0deg) !important;
        animation: closeButtonAppear 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards !important;
    }

    @keyframes closeButtonAppear {
        0% {
            opacity: 0;
            transform: scale(0.5) rotate(-180deg);
        }
        100% {
            opacity: 1;
            transform: scale(1) rotate(0deg);
        }
    }

    /* Make mobile menu relative for absolute positioning */
    .mobile-menu-container.menu-open {
        position: relative !important;
    }

    /* Add top padding to menu for close button space */
    .mobile-menu-container.menu-open .mobile-menu {
        padding-top: 60px !important;
    }

    /* 8. MOBILE MENU LIST - This is what JS toggles with slideToggle */
    /* Note: Use display: none WITHOUT !important so jQuery can override with inline style */
    .mobile-menu {
        display: none;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
        background: #1a1f2c !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
        border-top: 1px solid rgba(13, 148, 136, 0.3) !important;
        max-height: calc(100vh - 60px) !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }

    .mobile-menu > li {
        width: 100% !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        position: relative !important;
    }

    .mobile-menu > li > a {
        display: block !important;
        padding: 16px 20px !important;
        color: #ffffff !important;
        font-size: 1rem !important;
        font-weight: 500 !important;
        text-decoration: none !important;
        text-transform: uppercase !important;
        letter-spacing: 0.05em !important;
        transition: all 0.3s ease !important;
    }

    .mobile-menu > li > a:hover,
    .mobile-menu > li > a:active,
    .mobile-menu > li.selected > a {
        background: rgba(13, 148, 136, 0.15) !important;
        color: #0d9488 !important;
    }

    /* 9. MOBILE SUBMENU */
    .mobile-menu ul {
        display: none;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
        background: rgba(0, 0, 0, 0.3) !important;
    }

    .mobile-menu ul li {
        width: 100% !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    }

    .mobile-menu ul li:last-child {
        border-bottom: none !important;
    }

    .mobile-menu ul li a {
        display: block !important;
        padding: 14px 20px 14px 35px !important;
        color: #e0e0e0 !important;
        font-size: 0.9rem !important;
        font-weight: 400 !important;
        text-decoration: none !important;
        text-transform: none !important;
        transition: all 0.3s ease !important;
    }

    .mobile-menu ul li a:hover {
        background: rgba(13, 148, 136, 0.1) !important;
        color: #0d9488 !important;
    }

    /* 10. SUBMENU ARROWS - For collapsible submenus */
    .collapsible-mobile-submenus > li > a.template-arrow-menu {
        position: absolute !important;
        right: 10px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 44px !important;
        height: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        color: #0d9488 !important;
    }
}

/* ===== SMALL MOBILE (480px and below) ===== */
@media (max-width: 480px) {
    .header {
        padding: 10px 12px !important;
        min-height: 56px !important;
    }

    .header .logo {
        left: 12px !important;
        max-width: 60% !important;
    }

    .header .logo .logo-text {
        font-size: 1rem !important;
    }

    .header .logo .logo-sub {
        font-size: 0.5rem !important;
        letter-spacing: 0.1em !important;
    }

    .header .logo img {
        max-width: 110px !important;
    }

    .header .mobile-menu-switch {
        width: 40px !important;
        height: 40px !important;
        padding: 6px !important;
        right: 12px !important;
    }

    .header .mobile-menu-switch .line {
        width: 20px !important;
        margin: 2px 0 !important;
    }

    .mobile-menu > li > a {
        padding: 14px 16px !important;
        font-size: 0.95rem !important;
    }

    .mobile-menu ul li a {
        padding: 12px 16px 12px 30px !important;
        font-size: 0.85rem !important;
    }
}

/* ===== EXTRA SMALL MOBILE (380px and below) ===== */
@media (max-width: 380px) {
    .header {
        padding: 8px 10px !important;
        min-height: 52px !important;
    }

    .header .logo {
        left: 10px !important;
        max-width: 55% !important;
    }

    .header .logo .logo-text {
        font-size: 0.9rem !important;
    }

    .header .logo .logo-sub {
        font-size: 0.45rem !important;
    }

    .header .mobile-menu-switch {
        width: 36px !important;
        height: 36px !important;
        right: 10px !important;
    }
}

/* ==========================================================================
   iPAD / TABLET SPECIFIC FIXES (768px - 1024px)
   ========================================================================== */

@media (min-width: 768px) and (max-width: 1024px) {

    /* HERO SLIDER - Smaller font for iPad */
    .slider-content-box h2,
    .slider-content-box h2 a,
    .tp-caption h2,
    .revolution-slider h2 {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
        padding: 12px 18px !important;
    }

    .slider-content-box p,
    .tp-caption p {
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
        padding: 8px 18px !important;
    }

    .slider-content-box .more,
    .tp-caption .more {
        font-size: 0.85rem !important;
        padding: 10px 20px !important;
    }

    /* MOTION TEXT - Smaller on iPad */
    .motion-text-section .motion-text .letter {
        font-size: 2.8rem !important;
    }

    .motion-text-section .motion-subtitle {
        font-size: 0.75rem !important;
    }

    /* CARD TITLES - Make sure they show */
    .box-header,
    .services-list h3,
    .services-list h4,
    .feature-box h3,
    .feature-box h4,
    .icon-box h3,
    .icon-box h4,
    h3, h4 {
        overflow: visible !important;
        text-overflow: clip !important;
        white-space: normal !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 1.1rem !important;
    }

    /* Mobile header bar - adjust for iPad */
    .mobile-header-bar {
        display: flex !important;
        padding: 14px 25px !important;
        gap: 25px !important;
    }

    .mobile-header-phone {
        font-size: 1.4rem !important;
        padding: 16px 26px !important;
    }

    /* REVIEW BADGE - iPad Sizing */
    .review-badge {
        padding: 12px 20px !important;
        min-width: 120px !important;
        border-radius: 12px !important;
    }

    .review-stars {
        font-size: 1.3rem !important;
        letter-spacing: 3px !important;
    }

    .review-text {
        font-size: 0.8rem !important;
        margin-top: 5px !important;
        letter-spacing: 2px !important;
    }
}

/* ==========================================================================
   REVIEW BADGE - Custom Styled (Replaces Trustindex in mobile header)
   ========================================================================== */

/* Keep Trustindex widget styles for the main reviews section on page */
[class*="ti-widget"],
[class*="trustindex"] {
    max-width: 100% !important;
}

/* ==========================================================================
   PREMIUM EFFECTS - Phase 2: Enhanced Color Scheme & Effects
   ========================================================================== */

/* Premium Color Variables */
:root {
    --teal-gradient: linear-gradient(135deg, #0d9488 0%, #0d9488 50%, #0f766e 100%);
    --navy-deep: #050a12;
    --warm-white: #faf9f7;
    --teal-primary: #0d9488;
    --teal-light: #14b8a6;
    --navy-primary: #0a1628;
}

/* ==========================================================================
   PREMIUM HOVER EFFECTS
   ========================================================================== */

.premium-hover {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.premium-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(13, 148, 136, 0.3);
}

/* Card hover lift effect */
.service-item,
.project-box,
.team-member,
.feature-box,
.icon-box,
.blog-post,
.about-us-box,
.box {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-item:hover,
.project-box:hover,
.team-member:hover,
.feature-box:hover,
.icon-box:hover,
.blog-post:hover,
.about-us-box:hover,
.box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(13, 148, 136, 0.25);
}

/* ==========================================================================
   GOLD GLOW BUTTON EFFECT
   ========================================================================== */

.btn-glow,
.more.btn-glow,
a.more.btn-glow {
    animation: tealGlow 2s ease-in-out infinite;
    position: relative;
}

@keyframes tealGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(13, 148, 136, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(13, 148, 136, 0.8);
    }
}

/* Enhanced CTA buttons */
.cta-button,
.hero-cta,
.slider-content-box .more,
.announcement .more,
.primary-btn {
    transition: all 0.3s ease;
}

.cta-button:hover,
.hero-cta:hover,
.slider-content-box .more:hover,
.announcement .more:hover,
.primary-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(13, 148, 136, 0.5);
}

/* ==========================================================================
   SHIMMER EFFECT
   ========================================================================== */

.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ==========================================================================
   PARALLAX BACKGROUND SUPPORT
   ========================================================================== */

.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .parallax-bg {
        background-attachment: scroll;
    }
}

/* ==========================================================================
   ANIMATED COUNTER STYLES
   ========================================================================== */

.counter,
.counter-animate {
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    color: #0d9488;
}

.counter-box {
    text-align: center;
    padding: 30px 20px;
}

.counter-box .counter {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: "Georgia", "Times New Roman", serif;
    color: #0d9488;
    display: block;
    line-height: 1;
}

.counter-box .counter-suffix {
    font-size: 2rem;
    color: #0d9488;
}

.counter-box .counter-label {
    font-size: 1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
    font-weight: 600;
}

/* ==========================================================================
   TRUST BADGES SECTION
   ========================================================================== */

.trust-badges-section {
    background: linear-gradient(135deg, #0a1628 0%, #1a2a3a 100%);
    padding: 40px 0;
    border-top: 3px solid #0d9488;
    border-bottom: 1px solid rgba(13, 148, 136, 0.2);
}

.trust-badges-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.trust-badge {
    background: linear-gradient(135deg, #0a1628, #1a1f2c);
    border: 1px solid rgba(13, 148, 136, 0.3);
    border-radius: 12px;
    padding: 25px 30px;
    text-align: center;
    flex: 1 1 220px;
    max-width: 280px;
    min-width: 200px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    border-color: rgba(13, 148, 136, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(13, 148, 136, 0.15);
}

.trust-badge .counter {
    font-size: 2.8rem;
    font-weight: 900;
    color: #0d9488;
    font-family: "Georgia", "Times New Roman", serif;
    display: block;
    line-height: 1.2;
}

.trust-badge .counter-suffix {
    font-size: 2rem;
    color: #0d9488;
}

.trust-badge .badge-label {
    font-size: 0.85rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 8px;
    font-weight: 600;
    display: block;
}

.trust-badge .stars {
    color: #ffd700;
    font-size: 1.4rem;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* ==========================================================================
   ENHANCED CTA BANNER PREMIUM
   ========================================================================== */

.cta-banner-premium {
    background: linear-gradient(135deg, #0a1628 0%, #1a2a3a 50%, #0a1628 100%);
    padding: 60px 20px;
    text-align: center;
    border-top: 3px solid #0d9488;
    border-bottom: 3px solid #0d9488;
    position: relative;
    overflow: hidden;
}

.cta-banner-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner-premium h2 {
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 900;
    font-family: "Georgia", "Times New Roman", serif;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

.cta-banner-premium p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.cta-banner-premium .cta-btn {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    color: #0a1628;
    font-size: 1.3rem;
    font-weight: 900;
    font-family: "Georgia", "Times New Roman", serif;
    text-decoration: none;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    animation: tealGlow 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.cta-banner-premium .cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(13, 148, 136, 0.5);
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
}

/* Responsive CTA Banner */
@media (max-width: 768px) {
    .cta-banner-premium {
        padding: 40px 15px;
    }

    .cta-banner-premium h2 {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .cta-banner-premium p {
        font-size: 1rem;
    }

    .cta-banner-premium .cta-btn {
        font-size: 1.1rem;
        padding: 15px 35px;
    }
}

@media (max-width: 480px) {
    .cta-banner-premium h2 {
        font-size: 1.3rem;
    }

    .cta-banner-premium .cta-btn {
        font-size: 1rem;
        padding: 12px 25px;
        display: block;
        margin: 0 auto;
        max-width: 280px;
    }
}

/* Responsive Trust Badges */
@media (max-width: 768px) {
    .trust-badges-section {
        padding: 30px 0;
    }

    .trust-badges-row {
        gap: 15px;
    }

    .trust-badge {
        flex: 1 1 45%;
        max-width: none;
        min-width: 140px;
        padding: 20px 15px;
    }

    .trust-badge .counter {
        font-size: 2rem;
    }

    .trust-badge .badge-label {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .trust-badges-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .trust-badge {
        width: 100% !important;
        max-width: none !important;
        padding: 15px 10px !important;
    }

    .trust-badge-number {
        font-size: 2rem !important;
    }

    .trust-badge-label {
        font-size: 0.65rem !important;
    }
}

/* ==========================================================================
   MICRO-INTERACTIONS
   ========================================================================== */

/* Button hover: scale + glow */
.more,
button,
input[type="submit"],
.btn {
    transition: all 0.3s ease;
}

.more:hover,
button:hover,
input[type="submit"]:hover,
.btn:hover {
    transform: scale(1.02);
}

/* Link hover: underline draw animation */
.underline-draw {
    position: relative;
    text-decoration: none;
}

.underline-draw::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0d9488;
    transition: width 0.3s ease;
}

.underline-draw:hover::after {
    width: 100%;
}

/* Icon hover: rotate + color shift */
.icon-hover {
    transition: all 0.3s ease;
}

.icon-hover:hover {
    transform: rotate(5deg) scale(1.1);
    color: #0d9488;
}

/* ==========================================================================
   STAGGERED REVEAL ANIMATION (for JS)
   ========================================================================== */

.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay classes (applied via JS) */
.stagger-delay-1 { transition-delay: 0.1s; }
.stagger-delay-2 { transition-delay: 0.2s; }
.stagger-delay-3 { transition-delay: 0.3s; }
.stagger-delay-4 { transition-delay: 0.4s; }
.stagger-delay-5 { transition-delay: 0.5s; }
.stagger-delay-6 { transition-delay: 0.6s; }

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================================================
   PREMIUM SECTION STYLES - COST OF RENOVATION TO FOOTER
   Complete redesign for professional luxury appearance
   ========================================================================== */

/* ==========================================================================
   1. COST OF RENOVATION - ANNOUNCEMENT BANNER (PREMIUM REDESIGN)
   ========================================================================== */

.announcement.clearfix {
    background: linear-gradient(135deg, #0a1628 0%, #1a2a3a 50%, #0a1628 100%) !important;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #0d9488;
    border-bottom: 3px solid #0d9488;
    padding: 40px 0 !important;
}

.announcement.clearfix::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(13, 148, 136, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(13, 148, 136, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.announcement .columns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.announcement .column-3-4 {
    flex: 1;
}

.announcement .column-right.column-1-4 {
    flex: 0 0 auto;
}

.announcement .vertical-align-cell {
    display: flex;
    align-items: center;
    gap: 25px;
}

.announcement .vertical-align-cell::before {
    font-size: 3rem !important;
    color: #0d9488 !important;
    background: linear-gradient(135deg, #0d9488, #14b8a6) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    filter: drop-shadow(0 2px 10px rgba(13, 148, 136, 0.3));
}

.announcement h3 {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 0 8px 0 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.announcement p.description {
    font-family: 'Raleway', sans-serif !important;
    font-size: 1.1rem !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin: 0 !important;
    line-height: 1.5;
}

.announcement .more {
    display: inline-block !important;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #0d9488 100%) !important;
    background-size: 200% 100%;
    color: #0a1628 !important;
    padding: 16px 40px !important;
    font-family: 'Raleway', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 6px;
    border: none !important;
    transition: all 0.4s ease !important;
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.4);
    text-decoration: none !important;
}

.announcement .more:hover {
    background-position: 100% 0;
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 8px 30px rgba(13, 148, 136, 0.6) !important;
}

/* ==========================================================================
   2. OUR REMODELING SERVICES - PREMIUM CARDS
   ========================================================================== */

.gray.full-width.page-padding-top-section {
    background: linear-gradient(180deg, #f8f7f5 0%, #f0ede8 100%) !important;
}

.gray .box-header {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-weight: 700 !important;
    color: #0a1628 !important;
    position: relative;
    display: inline-block;
}

.gray .box-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0d9488, #14b8a6);
    margin: 15px auto 0;
}

.gray .description.align-center {
    color: #4a4a4a;
    font-size: 1.05rem;
    line-height: 1.8;
}

.services-list.clearfix {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 40px auto 0 !important;
}

.services-list li {
    background: #ffffff !important;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.services-list li:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(13, 148, 136, 0.25);
    border-color: rgba(13, 148, 136, 0.3);
}

.services-list li > a {
    display: block;
    position: relative;
    overflow: hidden;
}

.services-list li a img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.5s ease;
    display: block;
}

.services-list li:hover a img {
    transform: scale(1.08);
}

.services-list li > a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(10, 22, 40, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.services-list li:hover > a::after {
    opacity: 1;
}

.services-list li h4.box-header {
    padding: 25px 25px 10px !important;
    margin: 0 !important;
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #0a1628 !important;
}

.services-list li h4.box-header::after {
    display: none;
}

.services-list li h4.box-header a {
    color: #0a1628 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.services-list li:hover h4.box-header a {
    color: #0d9488 !important;
}

.services-list li > p {
    padding: 0 25px 25px !important;
    margin: 0 !important;
    font-family: 'Raleway', sans-serif !important;
    font-size: 0.95rem !important;
    color: #666 !important;
    line-height: 1.7;
    flex-grow: 1;
}

/* ==========================================================================
   3. RECENT PROJECTS - PREMIUM VIDEO GALLERY
   ========================================================================== */

/* Section Header Typography */
.row.full-width.page-margin-top-section > .row > h2.box-header {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif !important;
    font-size: 3rem !important;
    font-weight: 600 !important;
    letter-spacing: 4px !important;
    color: #1a2a3a !important;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.row.full-width.page-margin-top-section > .row > p.description {
    font-family: 'Montserrat', 'Raleway', sans-serif !important;
    font-size: 1.1rem !important;
    font-weight: 400;
    color: #5a6a7a !important;
    letter-spacing: 0.5px;
    line-height: 1.8;
}

.projects-list.clearfix {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin: 50px 0 0 !important;
    padding: 0 !important;
}

.projects-list li {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Video Card Container */
.projects-list li .video-card {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}

.projects-list li .video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.projects-list li:hover .video-card video {
    transform: scale(1.08);
}

/* Fallback for image links */
.projects-list li a {
    display: block;
    width: 100%;
    height: 100%;
}

.projects-list li a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.projects-list li:hover a img {
    transform: scale(1.12);
}

/* Overlay */
.projects-list li .view {
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 22, 40, 0.3) 0%,
        rgba(10, 22, 40, 0.6) 50%,
        rgba(10, 22, 40, 0.92) 100%
    );
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex !important;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 30px;
}

.projects-list li:hover .view {
    opacity: 1;
}

.projects-list li .view .vertical-align-table {
    width: 100%;
    height: auto;
    display: block;
}

.projects-list li .view .vertical-align-cell {
    display: block;
    text-align: center;
    padding: 25px;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.projects-list li:hover .view .vertical-align-cell {
    transform: translateY(0);
}

/* Project Title - Premium Typography */
.projects-list li .view p.description {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif !important;
    font-size: 1.6rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* Project CTA Button */
.projects-list li .view .more.simple {
    display: inline-block !important;
    background: transparent !important;
    border: 2px solid #0d9488 !important;
    color: #0d9488 !important;
    padding: 14px 35px !important;
    font-family: 'Montserrat', 'Raleway', sans-serif !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.projects-list li .view .more.simple:hover {
    background: #0d9488 !important;
    color: #0a1628 !important;
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4);
}

/* Play Icon Indicator */
.projects-list li .video-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(13, 148, 136, 0.9);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 5;
}

.projects-list li .video-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-left: 18px solid #0a1628;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 6;
}

.projects-list li:hover .video-card::after,
.projects-list li:hover .video-card::before {
    opacity: 0;
}

/* Explore Projects Bar */
.gray.full-width.padding-top-54 {
    background: linear-gradient(135deg, #0a1628 0%, #1a2a3a 100%) !important;
    padding: 35px 20px !important;
    border-top: 2px solid rgba(13, 148, 136, 0.3);
}

.gray.full-width.padding-top-54 h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin: 0;
}

.gray.full-width.padding-top-54 .button-label {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 1.4rem !important;
    font-weight: 600;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gray.full-width.padding-top-54 .more {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%) !important;
    color: #0a1628 !important;
    padding: 14px 35px !important;
    border-radius: 6px;
    font-weight: 700 !important;
    letter-spacing: 1.5px;
    border: none !important;
}

.gray.full-width.padding-top-54 .more:hover {
    box-shadow: 0 8px 30px rgba(13, 148, 136, 0.5);
    transform: translateY(-3px);
}

/* ==========================================================================
   4. ABOUT RIGHT CHOICE REMODELING - PREMIUM STYLING
   ========================================================================== */

/* Section Badge */
.section-badge {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #0d9488;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.15) 0%, rgba(13, 148, 136, 0.08) 100%);
    padding: 10px 25px;
    border-radius: 30px;
    border: 1px solid rgba(13, 148, 136, 0.3);
    margin: 0 auto 20px auto;
    text-transform: uppercase;
    text-align: center;
    width: fit-content;
}

/* About Title */
.about-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif !important;
    font-size: 3.2rem !important;
    font-weight: 600 !important;
    color: #0a1628 !important;
    letter-spacing: 4px !important;
    margin-bottom: 20px !important;
}

.about-subtitle {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.15rem !important;
    color: #5a6a7a !important;
    line-height: 1.9 !important;
    max-width: 800px;
    margin: 0 auto;
}

/* Video Wrapper */
.about-video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 25px 80px rgba(10, 22, 40, 0.25),
        0 10px 30px rgba(13, 148, 136, 0.15);
}

.about-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 400px;
}

.about-video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid rgba(13, 148, 136, 0.4);
    border-radius: 20px;
    pointer-events: none;
    z-index: 2;
}

/* Video Overlay Badge */
.video-overlay-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(26, 42, 58, 0.95) 100%);
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(13, 148, 136, 0.4);
    z-index: 3;
    backdrop-filter: blur(10px);
}

.badge-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #0d9488;
    line-height: 1;
}

.badge-text {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 5px;
}

/* About Intro */
.about-intro {
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(13, 148, 136, 0.2);
}

.about-intro-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif !important;
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    color: #0a1628 !important;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.about-intro-text {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.05rem !important;
    color: #5a6a7a !important;
    line-height: 1.9 !important;
}

/* About Features List with SVG Icons */
.about-features.svg-icons li {
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 25px 20px 25px 90px !important;
    border-left: 3px solid transparent;
    margin-left: 0;
    margin-bottom: 15px;
    border-radius: 0 12px 12px 0;
}

.about-features.svg-icons li::before {
    display: none !important;
}

.about-features.svg-icons li:hover {
    transform: translateX(10px);
    border-left-color: #0d9488;
    background: linear-gradient(135deg, #0a1628 0%, #1a2a3e 100%);
    box-shadow: 0 8px 30px rgba(10, 22, 40, 0.5);
}

/* SVG Icon Wrapper */
.feature-svg-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.15) 0%, rgba(13, 148, 136, 0.05) 100%);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid rgba(13, 148, 136, 0.3);
}

.feature-svg-icon svg {
    width: 36px;
    height: 36px;
    color: #0d9488;
    transition: all 0.4s ease;
}

.about-features.svg-icons li:hover .feature-svg-icon {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    border-color: #0d9488;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.5);
}

.about-features.svg-icons li:hover .feature-svg-icon svg {
    color: #0a1628;
    transform: scale(1.05);
}

.about-features.svg-icons li h4 {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif !important;
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    color: #0a1628 !important;
    margin-bottom: 10px;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.about-features.svg-icons li:hover h4 {
    color: #0d9488 !important;
}

.about-features.svg-icons li p {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.95rem !important;
    color: #5a6a7a !important;
    line-height: 1.8;
    margin: 0;
    transition: color 0.3s ease;
}

.about-features.svg-icons li:hover p {
    color: #14b8a6 !important;
}

/* Legacy About Features (non-SVG) */
.about-features li {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 20px 0 20px 70px !important;
    border-left: 3px solid transparent;
    margin-left: -15px;
    padding-left: 85px !important;
}

.about-features li:hover {
    transform: translateX(10px);
    border-left-color: #0d9488;
    background: linear-gradient(90deg, rgba(13, 148, 136, 0.08) 0%, transparent 100%);
}

.about-features li h4 {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: #0a1628 !important;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
}

.about-features li p {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 0.95rem !important;
    color: #5a6a7a !important;
    line-height: 1.8;
}

.about-features li::before {
    font-size: 2rem !important;
    color: #0d9488 !important;
    transition: all 0.4s ease;
    left: 15px !important;
}

.about-features li:hover::before {
    transform: scale(1.2) rotate(5deg);
    color: #0f766e !important;
}

/* SVG Icons Responsive */
@media (max-width: 768px) {
    .about-features.svg-icons li {
        padding: 20px 15px 20px 80px !important;
    }

    .feature-svg-icon {
        width: 50px;
        height: 50px;
        left: 8px;
    }

    .feature-svg-icon svg {
        width: 28px;
        height: 28px;
    }

    .about-features.svg-icons li h4 {
        font-size: 1.1rem !important;
    }
}

/* ==========================================================================
   NEW ABOUT SECTION - GRID LAYOUT WITH VIDEO AND FEATURES
   ========================================================================== */

/* Main Grid Container - Video Left, Features Right */
.about-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
    margin-bottom: 50px;
    align-items: start;
}

/* Video Highlight Box (Left Side) */
.about-video-highlight {
    background: #ffffff;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 15px 50px rgba(10, 22, 40, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
}

.about-video-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.15);
}

.video-highlight-inner {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.video-highlight-inner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-highlight-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #0a1628 0%, #1a2a3e 100%);
    padding: 15px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(10, 22, 40, 0.6);
    border: 2px solid #0d9488;
}

.badge-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d9488;
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #14b8a6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-highlight-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #0a1628;
    margin: 25px 25px 15px;
    line-height: 1.4;
}

.video-highlight-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #5a6a7a;
    line-height: 1.8;
    margin: 0 25px 25px;
}

/* Features Grid (Right Side) - 2x2 Grid */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Individual Feature Card */
.about-feature-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 25px;
    border: 2px solid rgba(13, 148, 136, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 5px 20px rgba(10, 22, 40, 0.05);
}

.about-feature-card:hover {
    transform: translateY(-5px);
    border-color: #0d9488;
    background: linear-gradient(135deg, #f9f8f6 0%, #ffffff 100%);
    box-shadow: 0 15px 40px rgba(13, 148, 136, 0.2);
}

/* SVG Icon Container - FIXES THE SIZE ISSUE */
.feature-card-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a1628 0%, #1a2a3a 100%);
    border-radius: 12px;
    border: 2px solid rgba(13, 148, 136, 0.3);
    transition: all 0.4s ease;
}

.about-feature-card:hover .feature-card-icon {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    border-color: #0d9488;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4);
}

/* SVG Styling - CONSTRAINS THE SVG SIZE */
.about-feature-card .feature-card-icon svg {
    width: 28px !important; max-width: 28px !important;
    height: 28px !important; max-height: 28px !important;
    color: #0d9488;
    transition: all 0.3s ease;
}

.about-feature-card:hover .feature-card-icon svg {
    color: #0a1628;
    transform: scale(1.05);
}

/* Feature Card Text */
.about-feature-card h4 {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #0a1628;
    margin-bottom: 12px;
    letter-spacing: 1.5px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.about-feature-card:hover h4 {
    color: #0d9488;
}

.about-feature-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #5a6a7a;
    line-height: 1.7;
    margin: 0;
    transition: color 0.3s ease;
}

.about-feature-card:hover p {
    color: #3a4a5a;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .about-main-grid {
        gap: 30px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-feature-card {
        padding: 25px 20px;
    }

    .feature-card-icon {
        width: 50px;
        height: 50px;
    }

    .about-feature-card .feature-card-icon svg {
        width: 24px !important; max-width: 24px !important;
        height: 24px !important; max-height: 24px !important;
    }

    .about-feature-card h4 {
        font-size: 1.05rem;
    }

    .about-feature-card p {
        font-size: 0.85rem;
    }

    .video-highlight-inner {
        height: 220px;
    }

    .video-highlight-badge {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
    }

    .badge-number {
        font-size: 2rem;
    }

    .badge-text {
        font-size: 0.75rem;
    }

    .video-highlight-title {
        font-size: 1.35rem;
        margin: 20px 20px 12px;
    }

    .video-highlight-text {
        font-size: 0.9rem;
        margin: 0 20px 20px;
    }
}

/* Statistics Counter Bar */
.about-stats-bar,
.about-stats-bar-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 70px;
    margin-bottom: 50px;
    padding: 50px 40px;
    background: linear-gradient(135deg, #0a1628 0%, #1a2a3a 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.3);
    position: relative;
    overflow: hidden;
}

.about-stats-bar::before,
.about-stats-bar-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d9488, #14b8a6, #0d9488);
}

.stat-item,
.stat-item-v2 {
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after,
.stat-item-v2:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(13, 148, 136, 0.3);
}

.stat-number,
.stat-number-v2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #0d9488;
    line-height: 1;
    display: inline;
}

.stat-plus,
.stat-plus-v2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d9488;
}

.stat-label,
.stat-label-v2 {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 10px;
    opacity: 0.9;
}

/* Legacy Support */
.page-margin-top-section > .row > .box-header {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    color: #0a1628 !important;
}

.page-margin-top-section .image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.page-margin-top-section .image-wrapper img.radius {
    border-radius: 12px;
    transition: transform 0.6s ease;
}

.page-margin-top-section .image-wrapper:hover img.radius {
    transform: scale(1.05);
}

.features-list li {
    transition: all 0.3s ease;
}

.features-list li:hover {
    transform: translateX(5px);
}

.features-list li h4 {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #0a1628 !important;
    margin-bottom: 10px;
}

.features-list li p {
    font-family: 'Raleway', sans-serif !important;
    color: #555 !important;
    line-height: 1.7;
}

.features-list li::before {
    color: #0d9488 !important;
    transition: all 0.3s ease;
}

.features-list li:hover::before {
    transform: scale(1.15);
    color: #0f766e !important;
}

/* About Section Responsive */
@media (max-width: 992px) {
    .about-stats-bar,
    .about-stats-bar-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    .stat-item:nth-child(2)::after,
    .stat-item-v2:nth-child(2)::after {
        display: none;
    }

    .about-title {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 768px) {
    .about-video-wrapper video {
        min-height: 300px;
    }

    .video-overlay-badge {
        bottom: 15px;
        left: 15px;
        padding: 15px 20px;
    }

    .badge-number {
        font-size: 2.2rem;
    }

    .about-title {
        font-size: 2rem !important;
        letter-spacing: 2px !important;
    }

    .about-subtitle {
        font-size: 1rem !important;
    }

    .about-subtitle br {
        display: none;
    }

    .about-intro-title {
        font-size: 1.5rem !important;
    }

    .stat-number,
    .stat-number-v2 {
        font-size: 2.5rem;
    }

    .stat-label,
    .stat-label-v2 {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .about-stats-bar,
    .about-stats-bar-v2 {
        grid-template-columns: 1fr 1fr;
        padding: 35px 25px;
        gap: 30px 20px;
    }

    .stat-item::after,
    .stat-item-v2::after {
        display: none !important;
    }

    .about-features li {
        padding-left: 65px !important;
    }
}

/* ==========================================================================
   5. TABS SECTION - PREMIUM STYLING
   ========================================================================== */

.tabs.no-scroll {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tabs-navigation {
    display: flex !important;
    gap: 10px;
    border-bottom: 2px solid #e8e6e3 !important;
    padding-bottom: 0 !important;
    margin-bottom: 30px !important;
}

.tabs-navigation li {
    flex: 1;
}

.tabs-navigation li a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 25px !important;
    font-family: 'Raleway', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666 !important;
    background: #f8f7f5 !important;
    border-radius: 8px 8px 0 0;
    border: 1px solid transparent;
    border-bottom: none;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.tabs-navigation li a::before {
    font-size: 1.3rem !important;
    color: #999 !important;
    transition: color 0.3s ease;
}

.tabs-navigation li a:hover,
.tabs-navigation li a.selected {
    background: #ffffff !important;
    color: #0a1628 !important;
    border-color: #e8e6e3;
    border-bottom-color: #ffffff;
    margin-bottom: -2px;
}

.tabs-navigation li a:hover::before,
.tabs-navigation li a.selected::before {
    color: #0d9488 !important;
}

.tabs > div:not(.tabs-navigation) {
    padding: 20px 0 0;
}

.tabs > div h4.box-header {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #0a1628 !important;
    margin-bottom: 20px;
}

.tabs > div h4.box-header::after {
    display: none;
}

.tabs > div p {
    font-family: 'Raleway', sans-serif !important;
    font-size: 1.05rem !important;
    color: #555 !important;
    line-height: 1.8;
}

/* ==========================================================================
   6. WHY CHOOSE - 3 COLUMN FEATURES PREMIUM
   ========================================================================== */

.padding-bottom-66 > .row > .column-1-3 {
    padding: 0 20px;
}

.padding-bottom-66 .features-list.big li {
    background: linear-gradient(135deg, #fafafa 0%, #f5f4f2 100%);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    height: 100%;
}

.padding-bottom-66 .features-list.big li:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(13, 148, 136, 0.2);
    border-color: rgba(13, 148, 136, 0.3);
    background: #ffffff;
}

.padding-bottom-66 .features-list.big li::before {
    font-size: 3rem !important;
    color: #0d9488 !important;
    display: block !important;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.padding-bottom-66 .features-list.big li:hover::before {
    transform: scale(1.15);
}

.padding-bottom-66 .features-list.big li .ornament {
    display: none;
}

.padding-bottom-66 .features-list.big li h4.box-header {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 1.3rem !important;
    margin-bottom: 15px;
}

.padding-bottom-66 .features-list.big li h4.box-header::after {
    display: none;
}

/* ==========================================================================
   7. TESTIMONIALS - PREMIUM STYLING
   ========================================================================== */

.parallax.parallax-1 {
    background: linear-gradient(135deg, #0a1628 0%, #1a2a3a 50%, #0a1628 100%) !important;
    position: relative;
}

.parallax.parallax-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(13, 148, 136, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(13, 148, 136, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonials-container .slider-control {
    background: rgba(13, 148, 136, 0.2) !important;
    border: 2px solid #0d9488 !important;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonials-container .slider-control:hover {
    background: #0d9488 !important;
}

.testimonials-container .slider-control::before {
    color: #0d9488 !important;
}

.testimonials-container .slider-control:hover::before {
    color: #0a1628 !important;
}

.testimonials-list li {
    text-align: center;
    padding: 20px 0;
}

.testimonials-list li::before {
    font-size: 2rem !important;
    color: #0d9488 !important;
    display: block;
    margin-bottom: 20px;
}

.testimonials-list li .ornament {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0d9488, #14b8a6);
    margin: 0 auto 25px;
}

.testimonials-list li p {
    font-family: 'Georgia', serif !important;
    font-size: 1.2rem !important;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.9;
    margin-bottom: 25px;
    position: relative;
}

.testimonials-list li p::before {
    content: '"' !important;
    font-size: 4rem;
    color: rgba(13, 148, 136, 0.3);
    position: absolute;
    top: -30px;
    left: -20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonials-list li .author {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 1.2rem !important;
    font-weight: 700;
    color: #0d9488 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.testimonials-list li .author-details {
    font-family: 'Raleway', sans-serif !important;
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    letter-spacing: 1px;
}

/* ==========================================================================
   8. WE WORK WITH - CLIENT LOGOS PREMIUM
   ========================================================================== */

.gray.full-width.page-padding-top-section.padding-bottom-66 {
    background: linear-gradient(180deg, #f8f7f5 0%, #f0ede8 100%) !important;
}

.our-clients-list-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.our-clients-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.our-clients-list li {
    flex: 0 0 auto;
    padding: 20px 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.our-clients-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(13, 148, 136, 0.2);
    border-color: rgba(13, 148, 136, 0.2);
}

.our-clients-list li img {
    height: 50px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.our-clients-list li:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ==========================================================================
   9. CUSTOMER REVIEWS SECTION (Trust Index)
   ========================================================================== */

#reviews-section {
    background: linear-gradient(180deg, #ffffff 0%, #fafaf8 100%);
    padding: 60px 0 !important;
}

#reviews-section .box-header {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    color: #0a1628 !important;
}

#reviews-section .description {
    font-family: 'Raleway', sans-serif !important;
    font-size: 1.1rem !important;
    color: #666 !important;
}

/* ==========================================================================
   10. GOOGLE MAP SECTION
   ========================================================================== */

#map-section {
    position: relative;
    border-top: 4px solid #0d9488;
}

#map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d9488, #14b8a6, #0d9488);
    z-index: 1;
}

#map-section iframe {
    display: block;
    filter: grayscale(20%) contrast(1.05);
    transition: filter 0.5s ease;
}

#map-section:hover iframe {
    filter: grayscale(0%) contrast(1);
}

/* ==========================================================================
   11. YELLOW CONTACT BAR - PREMIUM GOLD STYLING
   ========================================================================== */

.row.yellow.full-width {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #0d9488 100%) !important;
    padding: 50px 0 !important;
    position: relative;
    overflow: hidden;
}

.row.yellow.full-width::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.1) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.1) 75%);
    background-size: 20px 20px;
    opacity: 0.3;
    pointer-events: none;
}

.row.yellow.full-width .row {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.row.yellow.full-width .column-1-3 {
    flex: 0 0 auto;
    width: auto !important;
    float: none !important;
}

.contact-details-list li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-details-list li::before {
    font-size: 2rem !important;
    color: #0a1628 !important;
    opacity: 0.9;
}

.contact-details-list li p {
    font-family: 'Raleway', sans-serif !important;
    font-size: 1rem !important;
    color: #0a1628 !important;
    line-height: 1.6;
    margin: 0;
}

.contact-details-list li p a {
    color: #0a1628 !important;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.contact-details-list li p a:hover {
    opacity: 0.8;
}

/* ==========================================================================
   12. FOOTER - PREMIUM DARK STYLING
   ========================================================================== */

.row.gray.full-width.page-padding-top.padding-bottom-50 {
    background: linear-gradient(180deg, #0a1628 0%, #0d1a2d 100%) !important;
    padding: 70px 0 50px !important;
}

.row.gray.full-width.page-padding-top.padding-bottom-50 .row-4-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row.gray.full-width.page-padding-top.padding-bottom-50 .column-1-4 {
    width: 100% !important;
    float: none !important;
    padding: 0 !important;
}

.row.gray.full-width.page-padding-top.padding-bottom-50 h6.box-header {
    font-family: 'Playfair Display', Georgia, serif !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(13, 148, 136, 0.3);
    position: relative;
}

.row.gray.full-width.page-padding-top.padding-bottom-50 h6.box-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #0d9488;
}

.row.gray.full-width.page-padding-top.padding-bottom-50 p.description {
    font-family: 'Raleway', sans-serif !important;
    font-size: 0.95rem !important;
    color: rgba(255, 255, 255, 0.75) !important;
    line-height: 1.8;
}

/* Footer Social Icons */
.social-icons.yellow {
    display: flex;
    gap: 10px;
    margin-top: 20px !important;
}

.social-icons.yellow li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(13, 148, 136, 0.15) !important;
    border: 1px solid rgba(13, 148, 136, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons.yellow li a:hover {
    background: #0d9488 !important;
    border-color: #0d9488;
    transform: translateY(-3px);
}

.social-icons.yellow li a::before {
    color: #0d9488 !important;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.social-icons.yellow li a:hover::before {
    color: #0a1628 !important;
}

/* Footer Links List */
.list.margin-top-20 li {
    margin-bottom: 12px;
}

.list.margin-top-20 li a {
    font-family: 'Raleway', sans-serif !important;
    font-size: 0.95rem !important;
    color: rgba(255, 255, 255, 0.75) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.list.margin-top-20 li a:hover {
    color: #0d9488 !important;
    transform: translateX(5px);
}

.list.margin-top-20 li::before {
    color: #0d9488 !important;
}

/* Footer Service Areas Tags */
.taxonomies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.taxonomies li a {
    display: inline-block;
    padding: 8px 14px;
    background: rgba(13, 148, 136, 0.1);
    border: 1px solid rgba(13, 148, 136, 0.25);
    border-radius: 20px;
    font-family: 'Raleway', sans-serif !important;
    font-size: 0.8rem !important;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.taxonomies li a:hover {
    background: rgba(13, 148, 136, 0.25);
    border-color: #0d9488;
    color: #ffffff !important;
}

/* Footer Blog Posts */
.blog.small li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog.small li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.blog.small li .post-image {
    flex: 0 0 70px;
}

.blog.small li .post-image img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.blog.small li:hover .post-image img {
    transform: scale(1.05);
}

.blog.small li .post-content a {
    font-family: 'Raleway', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    line-height: 1.5;
    display: block;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.blog.small li .post-content a:hover {
    color: #0d9488 !important;
}

.blog.small li .post-details .date {
    font-family: 'Raleway', sans-serif !important;
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ==========================================================================
   13. COPYRIGHT BAR - PREMIUM STYLING
   ========================================================================== */

.row.align-center.padding-top-bottom-30 {
    background: #050a12 !important;
    padding: 25px 20px !important;
    border-top: 1px solid rgba(13, 148, 136, 0.2);
}

.row.align-center.padding-top-bottom-30 .copyright {
    font-family: 'Raleway', sans-serif !important;
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
}

.row.align-center.padding-top-bottom-30 .copyright a {
    color: #0d9488 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.row.align-center.padding-top-bottom-30 .copyright a:hover {
    color: #14b8a6 !important;
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS FOR ALL NEW PREMIUM SECTIONS
   ========================================================================== */

@media (max-width: 1024px) {
    .announcement .columns {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .announcement .vertical-align-cell {
        flex-direction: column;
        gap: 15px;
    }

    .services-list.clearfix {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-list.clearfix {
        grid-template-columns: repeat(2, 1fr);
    }

    .row.gray.full-width.page-padding-top.padding-bottom-50 .row-4-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .announcement h3 {
        font-size: 1.5rem !important;
    }

    .announcement p.description {
        font-size: 1rem !important;
    }

    .services-list.clearfix {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .services-list li a img {
        height: 200px;
    }

    .projects-list.clearfix {
        grid-template-columns: 1fr;
    }

    .tabs.no-scroll {
        padding: 25px 20px;
    }

    .tabs-navigation {
        flex-direction: column;
        gap: 8px;
    }

    .tabs-navigation li a {
        padding: 14px 20px !important;
    }

    .padding-bottom-66 > .row > .column-1-3 {
        width: 100% !important;
        float: none !important;
        margin-bottom: 20px;
    }

    .testimonials-container {
        padding: 0 20px;
    }

    .testimonials-list li p {
        font-size: 1rem !important;
    }

    .row.yellow.full-width .row {
        gap: 30px;
    }

    .row.gray.full-width.page-padding-top.padding-bottom-50 .row-4-4 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gray.full-width.padding-top-54 .button-label {
        font-size: 1.1rem !important;
    }
}

@media (max-width: 480px) {
    .announcement.clearfix {
        padding: 30px 15px !important;
    }

    .announcement h3 {
        font-size: 1.3rem !important;
        letter-spacing: 1px;
    }

    .announcement .more {
        padding: 14px 30px !important;
        font-size: 0.85rem !important;
    }

    .projects-list li .view p.description {
        font-size: 1.1rem !important;
    }

    .parallax.parallax-1 {
        padding: 50px 0 !important;
    }

    .testimonials-list li p::before {
        display: none;
    }
}

/* ==========================================================================
   PREMIUM SERVICES SECTION - COMPLETE REDESIGN WITH VIDEO
   ========================================================================== */

.premium-services-section {
    background: linear-gradient(135deg, #0a1628 0%, #0d1a2d 50%, #0a1628 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.premium-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(13, 148, 136, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(13, 148, 136, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.premium-services-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

/* Section Header */
.premium-services-header {
    text-align: center;
    margin-bottom: 70px;
}

.premium-services-header .section-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #0d9488;
    display: block;
    margin-bottom: 15px;
}

.premium-services-header .section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 25px 0;
    letter-spacing: 3px;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.divider-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #0d9488, transparent);
}

.divider-icon {
    font-size: 1.5rem;
    color: #0d9488;
}

.divider-icon::before {
    color: #0d9488 !important;
}

.premium-services-header .section-description {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Grid */
.premium-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 60px;
}

/* Service Card */
.premium-service-card {
    background: linear-gradient(145deg, #0f1d30 0%, #152438 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(13, 148, 136, 0.15);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.premium-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #0d9488, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(13, 148, 136, 0.15);
    border-color: rgba(13, 148, 136, 0.4);
}

.premium-service-card:hover::before {
    opacity: 1;
}

/* Service Card Media (Image + Video) */
.service-card-media {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.service-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.service-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.premium-service-card:hover .service-poster {
    opacity: 0;
}

.premium-service-card:hover .service-video {
    opacity: 1;
}

/* Service Card Overlay */
.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
        rgba(10, 22, 40, 0.3) 0%,
        rgba(10, 22, 40, 0.1) 40%,
        rgba(10, 22, 40, 0.6) 80%,
        rgba(10, 22, 40, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.4s ease;
}

.service-icon {
    font-size: 3.5rem;
    color: #0d9488;
    opacity: 0.9;
    transition: all 0.4s ease;
    text-shadow: 0 2px 20px rgba(13, 148, 136, 0.5);
}

.service-icon::before {
    color: #0d9488 !important;
}

.premium-service-card:hover .service-icon {
    transform: scale(1.1);
    opacity: 1;
}

.play-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(13, 148, 136, 0.2);
    border: 2px solid #0d9488;
    border-radius: 50%;
    font-size: 1rem;
    color: #0d9488;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
}

.premium-service-card:hover .play-indicator {
    opacity: 1;
    transform: scale(1);
}

/* Service Card Content */
.service-card-content {
    padding: 35px 30px;
    position: relative;
    background: linear-gradient(145deg, #0f1d30 0%, #152438 100%);
}

.service-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(13, 148, 136, 0.15);
    position: absolute;
    top: 20px;
    right: 25px;
    line-height: 1;
}

.service-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.premium-service-card:hover .service-title {
    color: #0d9488;
}

.service-description {
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin: 0 0 25px 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #0d9488;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #14b8a6;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(13, 148, 136, 0.15);
    border-radius: 50%;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.service-link:hover .link-arrow {
    background: #0d9488;
    color: #0a1628;
    transform: translateX(5px);
}

/* CTA Button */
.premium-services-cta {
    text-align: center;
}

.premium-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #0d9488 100%);
    background-size: 200% 100%;
    color: #0a1628;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(13, 148, 136, 0.3);
    position: relative;
    overflow: hidden;
}

.premium-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.premium-cta-button:hover::before {
    left: 100%;
}

.premium-cta-button:hover {
    background-position: 100% 0;
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(13, 148, 136, 0.5);
}

.cta-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.premium-cta-button:hover .cta-icon {
    transform: translateX(5px);
}

/* Responsive Styles for Premium Services */
@media (max-width: 1024px) {
    .premium-services-section {
        padding: 80px 0;
    }

    .premium-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .premium-services-header .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .premium-services-section {
        padding: 60px 0;
    }

    .premium-services-container {
        padding: 0 20px;
    }

    .premium-services-header {
        margin-bottom: 50px;
    }

    .premium-services-header .section-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .premium-services-header .section-description {
        font-size: 1rem;
    }

    .premium-services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card-media {
        height: 250px;
    }

    .service-card-content {
        padding: 30px 25px;
    }

    .service-number {
        font-size: 2.5rem;
        top: 15px;
        right: 20px;
    }

    .premium-cta-button {
        padding: 18px 40px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .premium-services-section {
        padding: 50px 0;
    }

    .premium-services-header .section-subtitle {
        font-size: 0.8rem;
        letter-spacing: 0.2em;
    }

    .premium-services-header .section-title {
        font-size: 1.6rem;
    }

    .divider-line {
        width: 50px;
    }

    .service-card-media {
        height: 220px;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .play-indicator {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }

    .service-card-content {
        padding: 25px 20px;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-description {
        font-size: 0.9rem;
    }

    .premium-cta-button {
        padding: 16px 35px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   24-HOUR RESPONSE GUARANTEE BANNER
   ========================================================================== */

.response-guarantee {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #0f766e 100%);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.3);
    position: relative;
    overflow: hidden;
}

.response-guarantee::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmerSlide 3s ease-in-out infinite;
}

.response-guarantee .guarantee-icon {
    font-size: 2rem;
    color: #0a1628;
    flex-shrink: 0;
}

.response-guarantee .guarantee-text {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    color: #0a1628;
    font-weight: 500;
    text-align: center;
}

.response-guarantee .guarantee-text strong {
    font-weight: 700;
    display: block;
    font-size: 1.25rem;
    margin-bottom: 3px;
}

@media (max-width: 768px) {
    .response-guarantee {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .response-guarantee .guarantee-icon {
        font-size: 2.5rem;
    }

    .response-guarantee .guarantee-text {
        font-size: 1rem;
    }
}

/* ==========================================================================
   TRUST CREDENTIALS SECTION (Compact Version)
   ========================================================================== */

.trust-credentials {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    margin: 30px 0;
    border: 1px solid rgba(10, 22, 40, 0.08);
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.credential-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.credential-item .credential-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    border-radius: 50%;
    color: #0a1628;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.credential-item span {
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0a1628;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .trust-credentials {
        gap: 15px;
        padding: 20px 15px;
    }

    .credential-item {
        flex: 1 1 calc(50% - 15px);
        min-width: 140px;
        padding: 12px;
        justify-content: center;
    }

    .credential-item .credential-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .credential-item span {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .credential-item {
        flex: 1 1 100%;
    }
}

/* ==========================================================================
   TWO-STEP CONTACT FORM
   ========================================================================== */

.multi-step-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-step {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.form-step.active {
    display: block;
}

.step-indicator {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0d9488;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-indicator::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #0d9488, transparent);
}

.form-step h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    color: #0a1628;
    margin-bottom: 10px;
}

.form-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
}

.form-step input[type="text"],
.form-step input[type="email"],
.form-step input[type="tel"],
.form-step select,
.form-step textarea {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-step input:focus,
.form-step select:focus,
.form-step textarea:focus {
    border-color: #0d9488;
    outline: none;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

.form-step select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c5a47e' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-step textarea {
    min-height: 120px;
    resize: vertical;
}

.next-step-btn,
.submit-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    color: #0a1628;
    border: none;
    border-radius: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.next-step-btn:hover,
.submit-btn:hover {
    background: linear-gradient(135deg, #0f766e 0%, #a8855d 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4);
}

.back-step-btn {
    width: 100%;
    padding: 14px 20px;
    background: transparent;
    color: #666;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.back-step-btn:hover {
    border-color: #0d9488;
    color: #0d9488;
}

/* Success Modal */
.success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 22, 40, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.success-modal.active {
    display: flex;
}

.modal-content {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    position: relative;
    animation: slideUp 0.4s ease;
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.modal-content h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    color: #0a1628;
    margin-bottom: 15px;
}

.modal-content p {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.modal-cta {
    display: inline-block;
    padding: 16px 35px;
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    color: #0a1628;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.modal-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: #666;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #e0e0e0;
    color: #333;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   FORM STEP INDICATOR (Visual Progress)
   ========================================================================== */

.form-step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #666;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.step-item.active .step-number {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    color: #0a1628;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.4);
}

.step-item.completed .step-number {
    background: #28a745;
    color: #ffffff;
}

.step-item.completed .step-number::after {
    content: '\2713';
    position: absolute;
}

.step-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.step-item.active .step-label {
    color: #0d9488;
}

.step-item.completed .step-label {
    color: #28a745;
}

.step-line {
    flex: 1;
    height: 3px;
    background: #e0e0e0;
    margin: 0 20px;
    margin-bottom: 28px;
    border-radius: 3px;
    position: relative;
    max-width: 100px;
}

/* Form Step Header */
.form-step-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-step-header h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    color: #0a1628;
    margin-bottom: 10px;
}

.form-step-header .form-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    color: #666;
    margin-bottom: 0;
}

/* Input Error State */
.input-error {
    border-color: #dc3545 !important;
    background-color: #fff8f8 !important;
}

.input-error:focus {
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15) !important;
}

/* Shake Animation */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.shake {
    animation: shake 0.5s ease;
}

/* Modal Overlay */
.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

/* Modal Subtitle */
.modal-subtitle {
    font-size: 0.95rem !important;
    color: #999 !important;
    margin-bottom: 15px !important;
}

/* ==========================================================================
   BEFORE/AFTER COMPARISON SLIDER
   ========================================================================== */

.before-after-slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    cursor: ew-resize;
}

.before-after-slider img {
    display: block;
    width: 100%;
    height: auto;
}

.ba-before,
.ba-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ba-after {
    position: relative;
}

.ba-before {
    clip-path: inset(0 50% 0 0);
    z-index: 2;
}

.ba-before img,
.ba-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #ffffff;
    z-index: 10;
    cursor: ew-resize;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.ba-handle::before,
.ba-handle::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
}

.ba-handle::before {
    top: 50%;
    margin-top: -25px;
    border-width: 10px 8px 10px 0;
    border-color: transparent #ffffff transparent transparent;
    margin-left: -12px;
}

.ba-handle::after {
    top: 50%;
    margin-top: -25px;
    border-width: 10px 0 10px 8px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 4px;
}

.ba-handle-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.ba-handle-circle::before {
    content: '\2194';
    font-size: 1.5rem;
    color: #0d9488;
    font-weight: bold;
}

.before-after-slider.dragging {
    cursor: grabbing;
}

.ba-label {
    position: absolute;
    bottom: 20px;
    padding: 8px 16px;
    background: rgba(10, 22, 40, 0.85);
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    z-index: 5;
}

.ba-label-before {
    left: 20px;
}

.ba-label-after {
    right: 20px;
}

/* Responsive Before/After */
@media (max-width: 768px) {
    .before-after-slider {
        margin: 20px auto;
        border-radius: 8px;
    }

    .ba-handle-circle {
        width: 40px;
        height: 40px;
    }

    .ba-label {
        padding: 6px 12px;
        font-size: 0.75rem;
        bottom: 10px;
    }

    .ba-label-before {
        left: 10px;
    }

    .ba-label-after {
        right: 10px;
    }
}

/* Two-Step Form Responsive */
@media (max-width: 768px) {
    .form-step-indicator {
        margin-bottom: 30px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .step-label {
        font-size: 0.7rem;
    }

    .step-line {
        max-width: 60px;
        margin: 0 10px;
    }

    .form-step-header h3 {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   CONTACT PAGE HERO SECTION
   ========================================================================== */

.contact-hero-section {
    position: relative;
    background: linear-gradient(135deg, #0a1628 0%, #1a2a3a 50%, #0a1628 100%);
    background-image: url('../images/slider/image_01.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(26, 42, 58, 0.88) 50%, rgba(10, 22, 40, 0.92) 100%);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-hero-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.7;
}

.contact-hero-cta {
    margin-bottom: 40px;
}

.contact-hero-cta .more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 1.1rem;
}

.contact-hero-cta .template-phone {
    font-size: 1.2rem;
}

.contact-hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0d9488;
    background: rgba(13, 148, 136, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(13, 148, 136, 0.3);
}

.badge-icon {
    font-size: 1.1rem;
}

/* Contact Hero Responsive */
@media (max-width: 768px) {
    .contact-hero-section {
        padding: 60px 0;
        background-attachment: scroll;
    }

    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .contact-hero-cta .more {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .contact-hero-badges {
        gap: 15px;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 8px 15px;
    }
}

/* ==========================================================================
   RECENT PROJECTS VIDEO GALLERY - RESPONSIVE
   ========================================================================== */

@media (max-width: 1200px) {
    .projects-list.clearfix {
        grid-template-columns: repeat(2, 1fr);
    }

    .row.full-width.page-margin-top-section > .row > h2.box-header {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 768px) {
    .projects-list.clearfix {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px !important;
    }

    .projects-list li {
        aspect-ratio: 16/10;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .projects-list li .video-card video,
    .projects-list li a img {
        border-radius: 12px;
    }

    .row.full-width.page-margin-top-section > .row > h2.box-header {
        font-size: 2rem !important;
        letter-spacing: 2px !important;
    }

    .row.full-width.page-margin-top-section > .row > p.description {
        font-size: 1rem !important;
        padding: 0 20px;
    }

    .row.full-width.page-margin-top-section > .row > p.description br {
        display: none;
    }

    .projects-list li .view p.description {
        font-size: 1.3rem !important;
        letter-spacing: 2px;
    }

    .projects-list li .view .more.simple {
        padding: 12px 25px !important;
        font-size: 0.7rem !important;
    }

    .gray.full-width.padding-top-54 .button-label {
        font-size: 1.1rem !important;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .row.full-width.page-margin-top-section > .row > h2.box-header {
        font-size: 1.6rem !important;
    }

    .projects-list li .view p.description {
        font-size: 1.1rem !important;
    }
}

/* ==========================================================================
   WHAT WE OFFER - PREMIUM REDESIGNED SECTION
   ========================================================================== */

.what-we-offer-premium {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    z-index: 1;
}

/* Video Background */
.offer-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.offer-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.offer-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.94) 0%, rgba(26, 42, 58, 0.92) 100%);
}

/* Content Wrapper */
.offer-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Section Header */
.offer-header {
    text-align: center;
    margin-bottom: 50px;
}

.offer-badge {
    display: inline-block;
    font-family: 'Montserrat', 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #0d9488;
    background: rgba(13, 148, 136, 0.1);
    border: 1px solid rgba(13, 148, 136, 0.4);
    padding: 12px 30px;
    border-radius: 50px;
    margin-bottom: 25px;
}

.offer-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.15em;
    margin: 0;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.offer-title-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #0d9488, #14b8a6);
    margin: 25px auto 0;
    border-radius: 2px;
}

/* Tab Navigation */
.offer-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.offer-tab-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: transparent;
    border: 2px solid rgba(13, 148, 136, 0.4);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Montserrat', 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.offer-tab-btn:hover {
    border-color: #0d9488;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(13, 148, 136, 0.2);
}

.offer-tab-btn.active {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    border-color: transparent;
    color: #0a1628;
    box-shadow: 0 10px 40px rgba(13, 148, 136, 0.4);
}

.offer-tab-icon {
    width: 22px;
    height: 22px;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.offer-tab-btn.active .offer-tab-icon {
    transform: scale(1.1);
}

/* Tab Panels */
.offer-tab-panels {
    position: relative;
}

.offer-panel {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.offer-panel.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.1em;
    margin: 0 0 40px 0;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
}

.panel-footer {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(13, 148, 136, 0.3);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Services Video Grid - 3x2 Layout */
.services-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.service-video-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #0a1628;
    border: 1px solid rgba(13, 148, 136, 0.2);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    aspect-ratio: 16/10;
}

.service-video-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(13, 148, 136, 0.6);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(13, 148, 136, 0.2);
}

.service-video-card .video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.service-video-card .video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-video-card:hover .video-wrapper video {
    transform: scale(1.1);
}

.service-video-card .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
        transparent 0%,
        transparent 40%,
        rgba(10, 22, 40, 0.7) 70%,
        rgba(10, 22, 40, 0.95) 100%);
    transition: all 0.4s ease;
}

.service-video-card:hover .video-overlay {
    background: linear-gradient(180deg,
        rgba(13, 148, 136, 0.1) 0%,
        transparent 30%,
        rgba(10, 22, 40, 0.6) 70%,
        rgba(10, 22, 40, 0.9) 100%);
}

.service-video-card .video-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    z-index: 2;
    transform: translateY(10px);
    opacity: 0.9;
    transition: all 0.4s ease;
}

.service-video-card:hover .video-label {
    transform: translateY(0);
    opacity: 1;
}

.service-video-card .video-label h4 {
    font-family: 'Montserrat', 'Raleway', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 8px 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.service-video-card .video-label p {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0d9488;
    letter-spacing: 0.03em;
    margin: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* Services Video Grid Responsive */
@media (max-width: 992px) {
    .services-video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-video-card {
        aspect-ratio: 16/11;
    }
}

@media (max-width: 768px) {
    .services-video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .service-video-card .video-label {
        padding: 20px;
    }

    .service-video-card .video-label h4 {
        font-size: 0.95rem;
    }

    .service-video-card .video-label p {
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .services-video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-video-card {
        aspect-ratio: 16/9;
    }

    .service-video-card .video-label {
        padding: 25px;
    }

    .service-video-card .video-label h4 {
        font-size: 1.1rem;
    }

    .service-video-card .video-label p {
        font-size: 0.85rem;
    }
}

.service-card-mini {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(13, 148, 136, 0.2);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s ease;
}

.service-card-mini:hover {
    background: rgba(13, 148, 136, 0.1);
    border-color: rgba(13, 148, 136, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.2) 0%, rgba(212, 182, 142, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-card-mini:hover .service-card-icon {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    transform: scale(1.1);
}

.service-card-icon svg {
    width: 28px;
    height: 28px;
    stroke: #0d9488;
    transition: stroke 0.3s ease;
}

.service-card-mini:hover .service-card-icon svg {
    stroke: #0a1628;
}

.service-card-mini h4 {
    font-family: 'Montserrat', 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
    margin: 0 0 12px 0;
    text-transform: uppercase;
}

.service-card-mini p {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Guarantee Grid */
.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(13, 148, 136, 0.2);
    border-radius: 16px;
    padding: 25px 30px;
    transition: all 0.4s ease;
}

.guarantee-item:hover {
    background: rgba(13, 148, 136, 0.1);
    border-color: rgba(13, 148, 136, 0.5);
    transform: translateX(10px);
}

.guarantee-item.featured {
    grid-column: 1 / -1;
    justify-content: center;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.15) 0%, rgba(212, 182, 142, 0.1) 100%);
    border-color: rgba(13, 148, 136, 0.4);
}

.guarantee-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-icon svg {
    width: 24px;
    height: 24px;
    stroke: #0a1628;
}

.guarantee-text h4 {
    font-family: 'Montserrat', 'Raleway', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0d9488;
    margin: 0 0 8px 0;
    letter-spacing: 0.03em;
}

.guarantee-text p {
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

/* Process Timeline */
.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 30px;
    position: relative;
    padding-bottom: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-number {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0a1628;
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4);
    position: relative;
    z-index: 2;
}

.timeline-connector {
    position: absolute;
    left: 35px;
    top: 70px;
    width: 2px;
    height: calc(100% - 70px);
    background: linear-gradient(180deg, #0d9488, rgba(13, 148, 136, 0.3));
}

.timeline-item:last-child .timeline-connector {
    display: none;
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(13, 148, 136, 0.2);
    border-radius: 16px;
    padding: 25px 30px;
    transition: all 0.4s ease;
}

.timeline-item:hover .timeline-content {
    background: rgba(13, 148, 136, 0.1);
    border-color: rgba(13, 148, 136, 0.5);
    transform: translateX(10px);
}

.timeline-content h4 {
    font-family: 'Montserrat', 'Raleway', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0d9488;
    margin: 0 0 10px 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.timeline-content p {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.7;
}

/* Section Badge (kept for other uses) */
.section-badge {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #0d9488;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.15) 0%, rgba(212, 182, 142, 0.1) 100%);
    border: 1px solid rgba(13, 148, 136, 0.3);
    padding: 10px 25px;
    border-radius: 30px;
    margin-bottom: 30px;
    text-align: center;
    width: 100%;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive - What We Offer Premium */
@media (max-width: 992px) {
    .what-we-offer-premium {
        padding: 70px 0;
    }

    .offer-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .guarantee-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .timeline-connector {
        display: none;
    }

    .timeline-content {
        width: 100%;
    }

    .timeline-item:hover .timeline-content {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .what-we-offer-premium {
        padding: 50px 0;
    }

    .offer-content-wrapper {
        padding: 0 20px;
    }

    .offer-title {
        font-size: 2rem;
        letter-spacing: 0.08em;
    }

    .offer-tabs-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .offer-tab-btn {
        justify-content: center;
        padding: 15px 25px;
        font-size: 0.85rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-card-mini {
        padding: 25px 20px;
    }

    .panel-title {
        font-size: 1.5rem;
    }

    .guarantee-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .guarantee-item:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .offer-badge {
        font-size: 0.65rem;
        padding: 10px 20px;
    }

    .offer-title {
        font-size: 1.6rem;
    }

    .offer-tab-btn {
        padding: 12px 20px;
        font-size: 0.8rem;
    }

    .offer-tab-icon {
        width: 18px;
        height: 18px;
    }

    .service-card-icon {
        width: 50px;
        height: 50px;
    }

    .service-card-icon svg {
        width: 22px;
        height: 22px;
    }

    .service-card-mini h4 {
        font-size: 0.9rem;
    }

    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* Premium Tabs Enhanced */
.premium-tabs.enhanced {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(13, 148, 136, 0.2);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.premium-tabs.enhanced .tabs-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    border-bottom: 2px solid rgba(13, 148, 136, 0.2);
    padding-bottom: 25px;
}

.premium-tabs.enhanced .tabs-navigation li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.premium-tabs.enhanced .tabs-navigation li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 30px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.premium-tabs.enhanced .tabs-navigation li a::before {
    display: none !important;
}

.premium-tabs.enhanced .tabs-navigation li a:hover,
.premium-tabs.enhanced .tabs-navigation li.ui-state-active a {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.2) 0%, rgba(212, 182, 142, 0.15) 100%);
    border-color: rgba(13, 148, 136, 0.5);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(13, 148, 136, 0.2);
}

.premium-tabs.enhanced .tabs-navigation li.ui-state-active a::after {
    content: '';
    position: absolute;
    bottom: -27px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #0d9488, #14b8a6);
    border-radius: 2px;
}

/* Tab SVG Icons */
.tab-svg-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: #0d9488;
    transition: all 0.3s ease;
}

.tab-svg-icon svg {
    width: 40px;
    height: 40px;
}

.premium-tabs.enhanced .tabs-navigation li a:hover .tab-svg-icon,
.premium-tabs.enhanced .tabs-navigation li.ui-state-active a .tab-svg-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(13, 148, 136, 0.5));
}

/* Tab Label */
.tab-label {
    font-family: 'Montserrat', 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Tab Content Panels */
.tab-content-panel {
    padding: 30px 20px;
}

.tab-content-panel h4.box-header {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 0.05em;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.tab-content-enhanced {
    max-width: 900px;
    margin: 0 auto;
}

/* Service List Styled */
.service-list-styled {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.service-list-styled li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.service-list-styled li:hover {
    background: rgba(13, 148, 136, 0.1);
    border-color: rgba(13, 148, 136, 0.3);
    transform: translateX(5px);
}

.list-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    color: #0a1628;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50%;
}

.tab-description {
    font-family: 'Raleway', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid rgba(13, 148, 136, 0.2);
    margin-top: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
}

/* Guarantee Badges */
.guarantee-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.15) 0%, rgba(212, 182, 142, 0.1) 100%);
    border: 1px solid rgba(13, 148, 136, 0.3);
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.guarantee-badge:hover {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.25) 0%, rgba(212, 182, 142, 0.2) 100%);
    border-color: rgba(13, 148, 136, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.2);
}

.badge-icon {
    font-size: 1.3rem;
}

.badge-text {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.02em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.process-step:hover {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.12) 0%, rgba(212, 182, 142, 0.08) 100%);
    border-color: rgba(13, 148, 136, 0.4);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(13, 148, 136, 0.15);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    color: #0a1628;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.4);
}

.step-content h5 {
    font-family: 'Montserrat', 'Raleway', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #0d9488;
    margin: 0 0 8px 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.step-content p {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
}

/* ==========================================================================
   WHY CHOOSE US - PREMIUM SECTION WITH VIDEO BACKGROUND
   ========================================================================== */

.why-choose-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding-top: 80px !important;
}

/* Why Choose Section without video - solid background */
.why-choose-section.no-video {
    background: linear-gradient(165deg, #f8f9fa 0%, #ffffff 50%, #f5f5f5 100%);
}

/* Centered Content Container */
.why-choose-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 30px;
}

.why-choose-content-centered .section-badge {
    margin-bottom: 20px;
}

.why-choose-content-centered .premium-section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 40px;
}

/* 15+ Years Highlight */
.years-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
    padding: 30px 50px;
    background: linear-gradient(135deg, #0a1628 0%, #1a2a3a 100%);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(10, 22, 40, 0.3);
}

.years-number {
    display: flex;
    align-items: baseline;
}

.years-number .number {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 6rem;
    font-weight: 700;
    color: #0d9488;
    line-height: 1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.years-number .plus {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-left: 5px;
}

.years-text {
    text-align: left;
    border-left: 3px solid rgba(13, 148, 136, 0.5);
    padding-left: 20px;
}

.years-label {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.years-word {
    display: block;
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Stats Row */
.why-choose-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid rgba(10, 22, 40, 0.1);
    border-bottom: 1px solid rgba(10, 22, 40, 0.1);
}

.stat-block {
    text-align: center;
}

.stat-num {
    display: block;
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    color: #0a1628;
    line-height: 1;
}

.stat-text {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 8px;
    line-height: 1.3;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(10, 22, 40, 0.15);
}

/* Promise Box */
.promise-box {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, rgba(212, 182, 142, 0.05) 100%);
    border: 2px solid rgba(13, 148, 136, 0.3);
    border-radius: 16px;
    padding: 35px 40px;
    margin: 40px 0;
}

.promise-box h3 {
    font-family: 'Montserrat', 'Raleway', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #0d9488;
    letter-spacing: 0.15em;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.promise-box p {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    line-height: 1.8;
    margin: 0;
}

/* Three Pillars */
.three-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.pillar {
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(10, 22, 40, 0.05);
    transition: all 0.4s ease;
}

.pillar:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(13, 148, 136, 0.3);
}

.pillar-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #0a1628 0%, #1a2a3a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-icon svg {
    width: 36px;
    height: 36px;
    stroke: #0d9488;
}

.pillar h4 {
    font-family: 'Montserrat', 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #0a1628;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0 0 12px 0;
}

.pillar p {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Service Areas Compact */
.service-areas-compact {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(10, 22, 40, 0.1);
}

.areas-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #0a1628;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.areas-list {
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #666;
    letter-spacing: 0.02em;
}

/* Responsive - Why Choose Section */
@media (max-width: 992px) {
    .why-choose-content-centered .premium-section-title {
        font-size: 2rem;
    }

    .years-highlight {
        padding: 25px 35px;
    }

    .years-number .number {
        font-size: 4.5rem;
    }

    .years-number .plus {
        font-size: 2.5rem;
    }

    .years-word {
        font-size: 1.6rem;
    }

    .three-pillars {
        gap: 20px;
    }

    .pillar {
        padding: 25px 15px;
    }
}

@media (max-width: 768px) {
    .why-choose-content-centered {
        padding: 0 20px;
    }

    .why-choose-content-centered .premium-section-title {
        font-size: 1.7rem;
    }

    .why-choose-content-centered .premium-section-title br {
        display: none;
    }

    .years-highlight {
        flex-direction: column;
        gap: 15px;
        padding: 30px 25px;
    }

    .years-text {
        border-left: none;
        border-top: 2px solid rgba(13, 148, 136, 0.3);
        padding-left: 0;
        padding-top: 15px;
        text-align: center;
    }

    .years-number .number {
        font-size: 5rem;
    }

    .years-word {
        font-size: 1.4rem;
    }

    .why-choose-stats {
        flex-wrap: wrap;
        gap: 25px 40px;
    }

    .stat-divider {
        display: none;
    }

    .stat-num {
        font-size: 2.5rem;
    }

    .promise-box {
        padding: 25px 20px;
    }

    .promise-box p {
        font-size: 1rem;
    }

    .three-pillars {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pillar {
        padding: 25px 30px;
    }

    .areas-list {
        font-size: 0.85rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .why-choose-content-centered .premium-section-title {
        font-size: 1.5rem;
    }

    .years-number .number {
        font-size: 4rem;
    }

    .years-number .plus {
        font-size: 2rem;
    }

    .years-label {
        font-size: 0.75rem;
    }

    .years-word {
        font-size: 1.2rem;
    }

    .stat-num {
        font-size: 2rem;
    }

    .stat-text {
        font-size: 0.75rem;
    }
}

.why-choose-section .section-video-bg .video-overlay.why-choose-overlay {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 248, 248, 0.9) 100%);
}

/* Premium Section Title */
.premium-section-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #0a1628;
    text-align: center;
    margin: 0 0 20px 0;
    letter-spacing: 0.08em;
    position: relative;
}

.premium-section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #0d9488, #14b8a6);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Premium Section Subtitle */
.premium-section-subtitle {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #5a6a7a;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

/* Why Choose Cards Container */
.why-choose-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
}

/* Why Choose Card */
.why-choose-card {
    background: #ffffff;
    border: 1px solid rgba(10, 22, 40, 0.08);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10, 22, 40, 0.06);
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #0d9488, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Card Hover Effect - Blue Background + Gold Font */
.why-choose-card:hover {
    background: linear-gradient(135deg, #0a1628 0%, #1a2a3e 100%);
    border-color: rgba(13, 148, 136, 0.4);
    box-shadow: 0 15px 40px rgba(10, 22, 40, 0.35);
    transform: translateY(-10px);
}

.why-choose-card:hover::before {
    opacity: 1;
}

/* Card SVG Icon */
.card-svg-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.12) 0%, rgba(212, 182, 142, 0.08) 100%);
    border-radius: 50%;
    color: #0d9488;
    transition: all 0.5s ease;
}

.card-svg-icon svg {
    width: 64px;
    height: 64px;
}

.why-choose-card:hover .card-svg-icon {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    color: #0a1628;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4);
}

/* Card Title */
.why-choose-card h4 {
    font-family: 'Montserrat', 'Raleway', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0a1628;
    margin: 0 0 18px 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.4s ease;
}

.why-choose-card:hover h4 {
    color: #0d9488 !important;
}

/* Card Description */
.why-choose-card p {
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #5a6a7a;
    line-height: 1.75;
    margin: 0;
    transition: color 0.4s ease;
}

.why-choose-card:hover p {
    color: #14b8a6 !important;
}

/* ==========================================================================
   RESPONSIVE - WHAT WE OFFER & WHY CHOOSE US
   ========================================================================== */

@media (max-width: 1200px) {
    .premium-tabs.enhanced .tabs-navigation {
        gap: 15px;
    }

    .premium-tabs.enhanced .tabs-navigation li a {
        padding: 15px 20px;
    }

    .premium-section-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 992px) {
    .premium-tabs.enhanced {
        padding: 30px 20px;
    }

    .premium-tabs.enhanced .tabs-navigation {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .premium-tabs.enhanced .tabs-navigation li a {
        flex-direction: row;
        justify-content: flex-start;
        padding: 15px 20px;
    }

    .premium-tabs.enhanced .tabs-navigation li.ui-state-active a::after {
        display: none;
    }

    .tab-svg-icon {
        width: 40px;
        height: 40px;
    }

    .tab-svg-icon svg {
        width: 30px;
        height: 30px;
    }

    .service-list-styled {
        grid-template-columns: 1fr;
    }

    .why-choose-cards {
        flex-direction: column;
    }

    .why-choose-cards .column.column-1-3 {
        width: 100% !important;
        margin-right: 0 !important;
        margin-bottom: 20px;
    }

    .why-choose-card {
        padding: 35px 25px;
    }

    .premium-section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .section-badge {
        font-size: 0.7rem;
        padding: 8px 18px;
    }

    .premium-tabs.enhanced {
        padding: 25px 15px;
        border-radius: 12px;
    }

    .tab-content-panel h4.box-header {
        font-size: 1.4rem;
    }

    .guarantee-badges {
        flex-direction: column;
        align-items: stretch;
    }

    .guarantee-badge {
        justify-content: center;
    }

    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .why-choose-section {
        padding-top: 60px !important;
    }

    .premium-section-title {
        font-size: 1.7rem;
        letter-spacing: 0.04em;
    }

    .premium-section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }

    .card-svg-icon {
        width: 75px;
        height: 75px;
    }

    .card-svg-icon svg {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .premium-tabs.enhanced .tabs-navigation li a {
        padding: 12px 15px;
    }

    .tab-label {
        font-size: 0.75rem;
    }

    .tab-content-panel {
        padding: 20px 10px;
    }

    .tab-content-panel h4.box-header {
        font-size: 1.2rem;
    }

    .service-list-styled li {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .process-step {
        padding: 15px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1.2rem;
    }

    .step-content h5 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .premium-section-title {
        font-size: 1.4rem;
    }

    .why-choose-card {
        padding: 30px 20px;
    }

    .why-choose-card h4 {
        font-size: 1rem;
    }

    .why-choose-card p {
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   PREMIUM PARALLAX SECTIONS
   ========================================================================== */

/* Parallax-2 - After Services Section */
.parallax.parallax-2 {
    background: linear-gradient(135deg, #0a1628 0%, #1a2a3a 100%);
    background-image: url('../images/background/bg5.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.parallax.parallax-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(26, 42, 58, 0.88) 100%);
    z-index: -1;
}

/* Parallax-3 - Before What We Offer Section */
.parallax.parallax-3 {
    background: linear-gradient(135deg, #0a1628 0%, #1a2a3a 100%);
    background-image: url('../images/background/bg1.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.parallax.parallax-3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.9) 0%, rgba(26, 42, 58, 0.85) 100%);
    z-index: -1;
}

/* Parallax Content Centered */
.parallax-content-centered {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
}

/* Parallax Badge */
.parallax-badge {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #0d9488;
    background: rgba(13, 148, 136, 0.15);
    border: 1px solid rgba(13, 148, 136, 0.4);
    padding: 10px 25px;
    border-radius: 30px;
    margin-bottom: 25px;
}

/* Parallax Heading */
.parallax-heading {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.5);
    margin: 0 0 20px 0;
    line-height: 1.2;
}

/* Parallax Subtext */
.parallax-subtext {
    font-family: 'Raleway', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #0d9488;
    letter-spacing: 0.08em;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
    margin: 0 0 35px 0;
}

/* Parallax CTA */
.parallax-cta {
    margin-top: 20px;
}

.parallax-button {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #0a1628 !important;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #0d9488 100%);
    background-size: 200% 100%;
    padding: 18px 45px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 25px rgba(13, 148, 136, 0.4);
    border: 2px solid transparent;
}

.parallax-button:hover {
    background-position: 100% 0;
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(13, 148, 136, 0.5);
    color: #0a1628 !important;
}

.parallax-button.secondary {
    background: transparent;
    border: 2px solid #0d9488;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.parallax-button.secondary:hover {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    color: #0a1628 !important;
    box-shadow: 0 10px 30px rgba(13, 148, 136, 0.4);
}

/* Parallax Responsive */
@media (max-width: 1200px) {
    .parallax-heading {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .parallax-heading {
        font-size: 2.5rem;
        letter-spacing: 0.08em;
    }

    .parallax-subtext {
        font-size: 1.1rem;
    }

    .parallax-content-centered {
        padding: 30px 15px;
    }
}

@media (max-width: 768px) {
    .parallax.parallax-2,
    .parallax.parallax-3 {
        background-attachment: scroll; /* Disable fixed parallax on mobile */
    }

    .parallax-heading {
        font-size: 2rem;
        letter-spacing: 0.05em;
    }

    .parallax-subtext {
        font-size: 1rem;
        letter-spacing: 0.03em;
    }

    .parallax-badge {
        font-size: 0.75rem;
        padding: 8px 18px;
    }

    .parallax-button {
        padding: 15px 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .parallax-heading {
        font-size: 1.6rem;
        letter-spacing: 0.03em;
    }

    .parallax-subtext {
        font-size: 0.9rem;
    }

    .parallax-button {
        padding: 12px 25px;
        font-size: 0.8rem;
    }

    .parallax-content-centered {
        padding: 20px 10px;
    }
}

/* ==========================================================================
   MOBILE WORKERS GRID - Phone Only Section
   ========================================================================== */

/* Hide on desktop - Show only on mobile */
.mobile-workers-section {
    display: none;
}

@media (max-width: 768px) {
    .mobile-workers-section {
        display: block;
        padding: 60px 20px;
        background: linear-gradient(135deg, #0a1628 0%, #1a2a3a 100%);
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        margin-right: calc(-50vw + 50%) !important;
        box-sizing: border-box;
    }

    .mobile-workers-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .mobile-workers-badge {
        display: inline-block;
        font-family: 'Montserrat', 'Raleway', sans-serif;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: #0d9488;
        background: rgba(13, 148, 136, 0.1);
        border: 1px solid rgba(13, 148, 136, 0.4);
        padding: 10px 20px;
        border-radius: 30px;
        margin-bottom: 15px;
    }

    .mobile-workers-title {
        font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
        font-size: 2rem;
        font-weight: 700;
        color: #ffffff;
        letter-spacing: 0.1em;
        margin: 0 0 15px 0;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    }

    .mobile-workers-intro {
        font-family: 'Raleway', sans-serif;
        font-size: 0.9rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.6;
        margin: 0;
        padding: 0 10px;
    }

    .mobile-workers-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 100%;
        perspective: 1000px;
    }

    /* Flip Card Container */
    .mobile-worker-card {
        position: relative;
        border-radius: 12px;
        aspect-ratio: 3/4;
        cursor: pointer;
        transform-style: preserve-3d;
        transition: transform 0.6s ease;
    }

    .mobile-worker-card .card-inner {
        position: relative;
        width: 100%;
        height: 100%;
        transform-style: preserve-3d;
        transition: transform 0.6s ease;
    }

    .mobile-worker-card.flipped .card-inner {
        transform: rotateY(180deg);
    }

    /* Card Front */
    .mobile-worker-card .card-front {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
        border-radius: 12px;
        overflow: hidden;
        background: #152438;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(13, 148, 136, 0.2);
    }

    .mobile-worker-card .card-front img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mobile-worker-card .card-front .worker-label {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 25px 10px 15px;
        background: linear-gradient(180deg, transparent 0%, rgba(10, 22, 40, 0.95) 100%);
        text-align: center;
    }

    .mobile-worker-card .worker-label .worker-name {
        display: block;
        font-family: 'Montserrat', 'Raleway', sans-serif;
        font-size: 0.9rem;
        font-weight: 800;
        color: #ffffff;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        margin-bottom: 4px;
    }

    .mobile-worker-card .worker-label .worker-role {
        display: block;
        font-family: 'Raleway', sans-serif;
        font-size: 0.7rem;
        font-weight: 600;
        color: #0d9488;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    /* Card Back */
    .mobile-worker-card .card-back {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        backface-visibility: hidden;
        transform: rotateY(180deg);
        border-radius: 12px;
        overflow: hidden;
        background: linear-gradient(165deg, #152438 0%, #0a1628 100%);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        border: 2px solid rgba(13, 148, 136, 0.5);
        padding: 20px 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        box-sizing: border-box;
    }

    .mobile-worker-card .card-back h4 {
        font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
        font-size: 1.3rem;
        font-weight: 700;
        color: #ffffff;
        margin: 0 0 6px 0;
        letter-spacing: 0.03em;
    }

    .mobile-worker-card .card-back .worker-title {
        font-family: 'Raleway', sans-serif;
        font-size: 0.7rem;
        font-weight: 700;
        color: #0d9488;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        margin: 0 0 15px 0;
    }

    .mobile-worker-card .card-back .worker-stats {
        display: flex;
        justify-content: center;
        gap: 25px;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(13, 148, 136, 0.3);
    }

    .mobile-worker-card .card-back .worker-stats span {
        font-family: 'Raleway', sans-serif;
        font-size: 0.65rem;
        color: rgba(255, 255, 255, 0.7);
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .mobile-worker-card .card-back .worker-stats span strong {
        display: block;
        font-family: 'Montserrat', sans-serif;
        font-size: 1.4rem;
        font-weight: 800;
        color: #0d9488;
        margin-bottom: 3px;
    }

    .mobile-worker-card .card-back .worker-bio {
        font-family: 'Raleway', sans-serif;
        font-size: 0.75rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
        margin: 0;
        font-style: italic;
    }

    .mobile-workers-footer {
        text-align: center;
        font-family: 'Raleway', sans-serif;
        font-size: 0.75rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.5);
        margin-top: 20px;
        letter-spacing: 0.05em;
    }
}

@media (max-width: 480px) {
    .mobile-workers-section {
        padding: 50px 15px;
    }

    .mobile-workers-grid {
        gap: 10px;
    }

    .mobile-worker-card {
        aspect-ratio: 3/4;
    }

    .mobile-worker-card .card-front,
    .mobile-worker-card .card-back {
        border-radius: 10px;
    }

    .mobile-workers-title {
        font-size: 1.7rem;
    }

    .mobile-workers-intro {
        font-size: 0.8rem;
    }

    .mobile-worker-card .worker-label .worker-name {
        font-size: 0.85rem;
    }

    .mobile-worker-card .worker-label .worker-role {
        font-size: 0.65rem;
    }

    .mobile-worker-card .card-back {
        padding: 18px 12px;
    }

    .mobile-worker-card .card-back h4 {
        font-size: 1.15rem;
    }

    .mobile-worker-card .card-back .worker-title {
        font-size: 0.6rem;
        margin-bottom: 12px;
    }

    .mobile-worker-card .card-back .worker-stats {
        gap: 20px;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }

    .mobile-worker-card .card-back .worker-stats span {
        font-size: 0.55rem;
    }

    .mobile-worker-card .card-back .worker-stats span strong {
        font-size: 1.2rem;
    }

    .mobile-worker-card .card-back .worker-bio {
        font-size: 0.7rem;
        line-height: 1.5;
    }

    .mobile-workers-footer {
        font-size: 0.65rem;
    }
}

/* ==========================================================================
   SECTION SPACING - ORGANIZED LAYOUT
   ========================================================================== */

/* Full Width Sections - Stretch to Edge of Page */
.row.full-width,
.parallax.parallax-2,
.parallax.parallax-3,
.what-we-offer-premium,
.about-stats-bar,
.section-divider {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    box-sizing: border-box !important;
    position: relative !important;
}

/* Ensure video backgrounds stretch fully */
.what-we-offer-premium .offer-video-bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
}

.what-we-offer-premium .offer-video-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
}

/* Section Divider Element */
.section-divider {
    padding: 50px 0;
    text-align: center;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
}

.section-divider .divider-line {
    display: inline-block;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #0d9488, transparent);
    border-radius: 2px;
    position: relative;
}

.section-divider .divider-line::before,
.section-divider .divider-line::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #0d9488;
    border-radius: 50%;
}

.section-divider .divider-line::before {
    left: 0;
}

.section-divider .divider-line::after {
    right: 0;
}

/* Dark theme divider (after dark sections) */
.section-divider.dark {
    background: linear-gradient(180deg, #0a1628 0%, #1a2a3a 50%, #0a1628 100%);
}

.section-divider.dark .divider-line {
    background: linear-gradient(90deg, transparent, rgba(13, 148, 136, 0.7), transparent);
}

.section-divider.dark .divider-line::before,
.section-divider.dark .divider-line::after {
    background: #0d9488;
}

/* Responsive Divider */
@media (max-width: 768px) {
    .section-divider {
        padding: 35px 0;
    }

    .section-divider .divider-line {
        width: 80px;
        height: 3px;
    }

    .section-divider .divider-line::before,
    .section-divider .divider-line::after {
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 480px) {
    .section-divider {
        padding: 25px 0;
    }

    .section-divider .divider-line {
        width: 60px;
    }
}

/* About Stats Bar - Spacing & Styling */
.about-stats-bar {
    margin-bottom: 80px !important;
    border-radius: 0 !important;
    padding-left: 5% !important;
    padding-right: 5% !important;
}

/* Parallax Section 3 - Vertical Spacing */
.parallax.parallax-3 {
    margin-top: 40px !important;
    margin-bottom: 80px !important;
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

/* What We Offer Section - Space Above */
.what-we-offer-premium {
    margin-top: 60px !important;
}

/* Create visual separator before parallax */
.parallax.parallax-3::after {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(13, 148, 136, 0.5), transparent);
    display: none; /* Can enable for decorative line */
}

/* Section container spacing */
.about-section-premium {
    padding-bottom: 60px !important;
}

/* Responsive Spacing */
@media (max-width: 992px) {
    .about-stats-bar {
        margin-bottom: 60px !important;
        padding-left: 4% !important;
        padding-right: 4% !important;
    }

    .parallax.parallax-3 {
        margin-top: 30px !important;
        margin-bottom: 60px !important;
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }

    .what-we-offer-premium {
        margin-top: 40px !important;
    }

    .section-divider {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .about-stats-bar {
        margin-bottom: 50px !important;
        padding-left: 3% !important;
        padding-right: 3% !important;
    }

    .parallax.parallax-3 {
        margin-top: 20px !important;
        margin-bottom: 50px !important;
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .what-we-offer-premium {
        margin-top: 30px !important;
    }

    .section-divider {
        padding: 30px 0;
    }
}

@media (max-width: 480px) {
    .about-stats-bar {
        margin-bottom: 40px !important;
    }

    .parallax.parallax-3 {
        margin-top: 15px !important;
        margin-bottom: 40px !important;
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .what-we-offer-premium {
        margin-top: 20px !important;
    }
}

/* ============================================================
   WHY CHOOSE US ULTRA - PREMIUM HIGH-CTR SECTION
   ============================================================ */

.why-choose-ultra {
    position: relative;
    background: linear-gradient(135deg, #0a1628 0%, #0d1f35 50%, #0a1628 100%);
    padding: 100px 0 80px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    overflow: hidden;
}

.why-choose-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(13, 148, 136, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(13, 148, 136, 0.05) 0%, transparent 40%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(13, 148, 136, 0.02) 40px,
            rgba(13, 148, 136, 0.02) 80px
        );
    pointer-events: none;
}

.why-choose-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Section Header */
.wcu-header {
    text-align: center;
    margin-bottom: 60px;
}

.wcu-badge-row {
    margin-bottom: 20px;
}

.wcu-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.2), rgba(13, 148, 136, 0.1));
    border: 1px solid rgba(13, 148, 136, 0.4);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #0d9488;
    text-transform: uppercase;
}

.wcu-badge svg {
    color: #0d9488;
}

.wcu-title {
    font-family: 'Oswald', 'Bebas Neue', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.wcu-title .gold {
    color: #0d9488;
    text-shadow: 0 0 30px rgba(13, 148, 136, 0.3);
}

.wcu-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.wcu-subtitle .hide-mobile {
    display: inline;
}

/* Giant Stats Bar */
.wcu-stats-mega {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(13, 148, 136, 0.2);
    border-radius: 16px;
    padding: 40px 50px;
    margin-bottom: 50px;
    backdrop-filter: blur(10px);
}

.stat-mega-item {
    text-align: center;
    flex: 1;
    max-width: 180px;
}

.stat-mega-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-family: 'Oswald', 'Bebas Neue', sans-serif;
}

.stat-mega-number .stat-count {
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.stat-mega-number .stat-plus {
    font-size: 36px;
    font-weight: 700;
    color: #0d9488;
    margin-left: 2px;
}

.stat-mega-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    margin-top: 8px;
    line-height: 1.4;
}

.stat-mega-divider {
    height: 60px;
    color: rgba(13, 148, 136, 0.3);
}

/* Trust Badges Row */
.wcu-trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(13, 148, 136, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 130px;
}

.trust-badge-item:hover {
    background: rgba(13, 148, 136, 0.1);
    border-color: rgba(13, 148, 136, 0.4);
    transform: translateY(-3px);
}

.trust-badge-item svg {
    width: 42px;
    height: 42px;
    color: #0d9488;
}

.trust-badge-item span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    text-transform: uppercase;
    line-height: 1.4;
}

/* Value Propositions Grid */
.wcu-value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.value-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(13, 148, 136, 0.2);
    border-radius: 16px;
    padding: 40px 30px 35px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0d9488, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover {
    background: linear-gradient(180deg, rgba(13, 148, 136, 0.1), rgba(255, 255, 255, 0.03));
    border-color: rgba(13, 148, 136, 0.4);
    transform: translateY(-5px);
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    margin-bottom: 20px;
}

.value-icon svg {
    width: 56px;
    height: 56px;
    color: #0d9488;
}

.value-card h3 {
    font-family: 'Oswald', 'Bebas Neue', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px;
    letter-spacing: 1px;
}

.value-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0 0 20px;
}

.value-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 148, 136, 0.1);
    border: 1px solid rgba(13, 148, 136, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #0d9488;
}

.value-guarantee svg {
    color: #0d9488;
}

/* Inline CTA */
.wcu-inline-cta {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.15), rgba(13, 148, 136, 0.05));
    border: 1px solid rgba(13, 148, 136, 0.3);
    border-radius: 20px;
    padding: 40px 50px;
    text-align: center;
}

.cta-content {
    margin-bottom: 25px;
}

.cta-content h3 {
    font-family: 'Oswald', 'Bebas Neue', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px;
}

.cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0d9488, #0f766e);
    color: #0a1628;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.3);
}

.btn-cta-primary:hover {
    background: linear-gradient(135deg, #d4b48e, #0d9488);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(13, 148, 136, 0.4);
    color: #0a1628;
}

.btn-cta-primary svg {
    color: #0a1628;
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #ffffff;
    padding: 16px 32px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
}

.cta-micro {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* ============================================================
   MEGA CTA BANNER - HIGH CONVERSION
   ============================================================ */

.mega-cta-banner {
    position: relative;
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 50%, #a78860 100%);
    padding: 60px 0;
    overflow: hidden;
}

.mega-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.mega-cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 20px,
            rgba(255, 255, 255, 0.05) 20px,
            rgba(255, 255, 255, 0.05) 40px
        );
}

.mega-cta-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.mega-cta-left {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
}

.guarantee-seal {
    flex-shrink: 0;
}

.seal-badge {
    position: relative;
    width: 90px;
    height: 90px;
    animation: pulse-seal 3s ease-in-out infinite;
}

.seal-outer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid #0a1628;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.seal-outer::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 2px dashed #0a1628;
    border-radius: 50%;
    opacity: 0.5;
}

.seal-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.seal-percent {
    font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #0a1628;
    line-height: 1;
    display: block;
}

.seal-text {
    font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;
    color: #0a1628;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
    display: block;
}

@keyframes pulse-seal {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.mega-cta-text h2 {
    font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #0a1628;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.mega-cta-text p {
    font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(10, 22, 40, 0.85);
    margin: 0;
    line-height: 1.7;
    max-width: 480px;
}

.mega-cta-text p strong {
    color: #0a1628;
    font-weight: 700;
}

.mega-cta-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.mega-cta-urgency {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.15);
    padding: 8px 18px;
    border-radius: 20px;
    animation: urgency-pulse 2s ease-in-out infinite;
}

@keyframes urgency-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.02); }
}

.urgency-icon {
    font-size: 18px;
    line-height: 1;
}

.urgency-text {
    font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #0a1628;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.mega-cta-button {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #0a1628;
    color: #ffffff;
    padding: 18px 35px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.mega-cta-button.pulse {
    animation: button-pulse 2s ease-in-out infinite;
}

@keyframes button-pulse {
    0%, 100% {
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 0 8px rgba(10, 22, 40, 0.2);
    }
}

.mega-cta-button:hover {
    background: #132842;
    transform: translateY(-3px);
    color: #ffffff;
}

.mega-cta-button .btn-icon svg {
    color: #0d9488;
}

.mega-cta-button .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mega-cta-button .btn-label {
    font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    opacity: 0.85;
    text-transform: uppercase;
}

.mega-cta-button .btn-number {
    font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
}

.mega-cta-note {
    font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(10, 22, 40, 0.7);
    margin: 0;
    letter-spacing: 0.5px;
}

/* ============================================================
   RESPONSIVE STYLES FOR ULTRA SECTIONS
   ============================================================ */

@media (max-width: 1024px) {
    .wcu-title {
        font-size: 46px;
    }

    .wcu-stats-mega {
        gap: 25px;
        padding: 35px 30px;
    }

    .stat-mega-number .stat-count {
        font-size: 52px;
    }

    .stat-mega-number .stat-plus {
        font-size: 30px;
    }

    .mega-cta-content {
        flex-direction: column;
        text-align: center;
    }

    .mega-cta-left {
        flex-direction: column;
    }

    .mega-cta-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .why-choose-ultra {
        padding: 70px 0 60px !important;
    }

    .wcu-header {
        margin-bottom: 40px;
    }

    .wcu-title {
        font-size: 36px;
        letter-spacing: 1px;
    }

    .wcu-subtitle {
        font-size: 16px;
    }

    .wcu-subtitle .hide-mobile {
        display: none;
    }

    .wcu-stats-mega {
        flex-wrap: wrap;
        gap: 20px;
        padding: 25px 20px;
    }

    .stat-mega-item {
        flex: 0 0 calc(50% - 15px);
        max-width: none;
    }

    .stat-mega-divider {
        display: none;
    }

    .stat-mega-number .stat-count {
        font-size: 44px;
    }

    .stat-mega-number .stat-plus {
        font-size: 24px;
    }

    .wcu-trust-badges {
        gap: 15px;
        margin-bottom: 40px;
    }

    .trust-badge-item {
        flex: 0 0 calc(33.333% - 15px);
        min-width: 100px;
        padding: 15px;
    }

    .trust-badge-item svg {
        width: 32px;
        height: 32px;
    }

    .trust-badge-item span {
        font-size: 9px;
    }

    .wcu-value-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-card {
        padding: 30px 25px;
    }

    .wcu-inline-cta {
        padding: 30px 25px;
    }

    .cta-content h3 {
        font-size: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .mega-cta-banner {
        padding: 40px 0;
    }

    .mega-cta-text h2 {
        font-size: 28px;
    }

    .seal-badge {
        width: 75px;
        height: 75px;
    }

    .seal-percent {
        font-size: 18px;
    }

    .seal-text {
        font-size: 8px;
    }
}

@media (max-width: 480px) {
    .why-choose-ultra {
        padding: 50px 0 40px !important;
    }

    .why-choose-inner {
        padding: 0 15px;
    }

    .wcu-title {
        font-size: 28px;
    }

    .wcu-badge {
        font-size: 10px;
        padding: 6px 14px;
    }

    .wcu-stats-mega {
        padding: 20px 15px;
    }

    .stat-mega-number .stat-count {
        font-size: 36px;
    }

    .stat-mega-number .stat-plus {
        font-size: 20px;
    }

    .stat-mega-label {
        font-size: 10px;
    }

    .trust-badge-item {
        flex: 0 0 calc(50% - 10px);
    }

    .value-card h3 {
        font-size: 20px;
    }

    .cta-content h3 {
        font-size: 20px;
    }

    .mega-cta-content {
        padding: 0 20px;
    }

    .mega-cta-text h2 {
        font-size: 22px;
    }

    .mega-cta-text p {
        font-size: 14px;
    }

    .seal-badge {
        width: 65px;
        height: 65px;
    }

    .seal-percent {
        font-size: 16px;
    }

    .seal-text {
        font-size: 7px;
        letter-spacing: 0.5px;
    }

    .mega-cta-button {
        padding: 14px 25px;
        width: 100%;
        justify-content: center;
    }

    .mega-cta-button .btn-number {
        font-size: 18px;
    }
}

/* ============================================================
   ANIMATED COUNTER SCRIPT HELPER
   ============================================================ */

.stat-count {
    transition: none;
}

/* Floating Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background: linear-gradient(135deg, #0a1628, #132842);
    padding: 12px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-sticky-cta.visible {
    transform: translateY(0);
}

.mobile-sticky-cta .sticky-cta-content {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.mobile-sticky-cta .sticky-btn-call,
.mobile-sticky-cta .sticky-btn-quote {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-sticky-cta .sticky-btn-call {
    background: linear-gradient(135deg, #0d9488, #0f766e);
    color: #0a1628;
}

.mobile-sticky-cta .sticky-btn-quote {
    background: transparent;
    border: 2px solid #0d9488;
    color: #0d9488;
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }
    body {
        padding-bottom: 70px;
    }
}

/* ============================================================
   TESTIMONIALS PREMIUM SECTION - FIXED LAYOUT
   ============================================================ */

.testimonials-premium-section {
    background: linear-gradient(180deg, #0a1628 0%, #0d1f35 50%, #0a1628 100%);
    padding: 80px 0 90px !important;
    position: relative;
    overflow: visible !important;
}

.testimonials-premium-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(13, 148, 136, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(13, 148, 136, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-premium-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Section Header */
.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 25px;
    border-radius: 30px;
    margin-bottom: 25px;
    font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
}

.google-rating-badge svg {
    flex-shrink: 0;
}

.google-rating-badge .rating-text {
    font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
}

.google-rating-badge .rating-text strong {
    color: #FFD700;
    font-size: 20px;
    font-weight: 800;
}

.google-rating-badge .reviews-count {
    font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    padding-left: 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonials-title {
    font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.testimonials-title .gold {
    color: #0d9488;
}

.testimonials-subtitle {
    font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Hide carousel controls - using static grid */
.testimonials-grid-wrapper {
    position: relative;
    padding: 0;
}

.testimonials-grid-wrapper .slider-control {
    display: none !important;
}

/* Premium Testimonial Cards - Static Grid */
.testimonials-premium {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    width: 100% !important;
    height: auto !important;
    position: static !important;
}

.testimonial-card-premium {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(13, 148, 136, 0.25);
    border-radius: 16px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: static !important;
    transform: none !important;
    width: auto !important;
    height: auto !important;
    min-height: auto;
}

.testimonial-card-premium:hover {
    background: linear-gradient(180deg, rgba(13, 148, 136, 0.12), rgba(255, 255, 255, 0.05));
    border-color: rgba(13, 148, 136, 0.5);
    transform: translateY(-5px) !important;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Star Rating */
.star-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 18px;
}

.star-rating svg {
    width: 18px;
    height: 18px;
    filter: drop-shadow(0 1px 3px rgba(255, 215, 0, 0.3));
}

/* Quote */
.testimonial-card-premium blockquote {
    font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0 0 20px;
    flex-grow: 1;
    quotes: none;
}

.testimonial-card-premium blockquote::before,
.testimonial-card-premium blockquote::after {
    content: none;
}

.testimonial-card-premium blockquote strong {
    color: #0d9488;
    font-weight: 600;
}

/* Author Info */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(13, 148, 136, 0.2);
}

.author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(13, 148, 136, 0.4);
    background: #0a1628;
}

.author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-grow: 1;
}

.author-name {
    font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-type {
    font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #0d9488;
}

.location {
    font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(52, 168, 83, 0.15);
    border: 1px solid rgba(52, 168, 83, 0.3);
    padding: 5px 10px;
    border-radius: 15px;
    font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #34A853;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.verified-badge svg {
    width: 12px;
    height: 12px;
    color: #34A853;
}

/* Testimonials CTA */
.testimonials-cta {
    text-align: center;
    margin-top: 45px;
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #0a1628;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: 'Raleway', 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.google-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    color: #0a1628;
}

.testimonials-footnote {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 15px 0 0;
}

/* Responsive Testimonials */
@media (max-width: 992px) {
    .testimonials-premium-section {
        padding: 60px 0 70px !important;
    }

    .testimonials-title {
        font-size: 34px;
        letter-spacing: 2px;
    }

    .testimonials-grid-wrapper {
        padding: 0;
    }

    .testimonials-premium {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }

    .testimonial-card-premium:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .testimonials-premium-section {
        padding: 50px 0 60px !important;
    }

    .testimonials-premium-inner {
        padding: 0 20px;
    }

    .testimonials-header {
        margin-bottom: 35px;
    }

    .google-rating-badge {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        padding: 12px 20px;
    }

    .google-rating-badge .reviews-count {
        padding-left: 0;
        border-left: none;
        width: 100%;
        text-align: center;
    }

    .testimonials-title {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .testimonials-subtitle {
        font-size: 14px;
    }

    .testimonials-grid-wrapper {
        padding: 0;
    }

    .testimonials-premium {
        grid-template-columns: 1fr !important;
        gap: 18px;
    }

    .testimonial-card-premium:nth-child(3) {
        max-width: none;
    }

    .testimonial-author {
        flex-wrap: nowrap;
    }

    .verified-badge {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .testimonials-premium-inner {
        padding: 0 15px;
    }

    .testimonials-title {
        font-size: 24px;
        letter-spacing: 1.5px;
    }

    .testimonial-card-premium {
        padding: 22px 18px;
    }

    .testimonial-card-premium blockquote {
        font-size: 14px;
    }

    .author-photo {
        width: 50px;
        height: 50px;
    }

    .google-review-btn {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================
   PREMIUM PARTNERS SECTION - 3 ROW ANIMATED
   ========================================= */

.partners-premium-section {
    background: linear-gradient(135deg, #0a1628 0%, #1a2d47 50%, #0a1628 100%);
    padding: 80px 0 60px;
    overflow: hidden;
    position: relative;
}

.partners-premium-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(13, 148, 136, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(13, 148, 136, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.partners-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header Styles */
.partners-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.partners-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.2) 0%, rgba(13, 148, 136, 0.1) 100%);
    border: 1px solid rgba(13, 148, 136, 0.4);
    color: #0d9488;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.partners-title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 15px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.partners-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    font-weight: 400;
    margin: 0;
}

/* Logo Slider Rows */
.logo-slider-row {
    position: relative;
    margin-bottom: 25px;
    overflow: hidden;
}

.logo-slider-row::before,
.logo-slider-row::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 10;
    pointer-events: none;
}

.logo-slider-row::before {
    left: 0;
    background: linear-gradient(90deg, #0a1628 0%, transparent 100%);
}

.logo-slider-row::after {
    right: 0;
    background: linear-gradient(-90deg, #0a1628 0%, transparent 100%);
}

/* Horizontal Tracks */
.logo-track {
    display: flex;
    gap: 40px;
    padding: 15px 0;
}

.track-left {
    animation: slideLeft 35s linear infinite;
}

.track-right {
    animation: slideRight 35s linear infinite;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes slideRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Horizontal Logo Items */
.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.4s ease;
}

.logo-item:hover {
    background: rgba(13, 148, 136, 0.1);
    border-color: rgba(13, 148, 136, 0.3);
    transform: scale(1.05);
}

.brand-logo {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    transition: all 0.4s ease;
    text-transform: uppercase;
}

.logo-item:hover .brand-logo {
    color: #0d9488;
}

/* Vertical Slider Row */
.slider-vertical {
    height: 180px;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0 40px;
    margin-bottom: 25px;
}

.slider-vertical::before,
.slider-vertical::after {
    display: none;
}

.logo-track-vertical {
    display: flex;
    justify-content: center;
    gap: 25px;
    width: 100%;
    max-width: 1200px;
}

.vertical-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: slideUp 12s linear infinite;
    flex: 1;
    max-width: 200px;
}

.vertical-column:nth-child(2) {
    animation-delay: -2s;
}

.vertical-column:nth-child(3) {
    animation-delay: -4s;
}

.vertical-column:nth-child(4) {
    animation-delay: -6s;
}

.vertical-column:nth-child(5) {
    animation-delay: -8s;
}

@keyframes slideUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

/* Vertical Logo Items */
.logo-item-v {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.4s ease;
    min-height: 55px;
}

.logo-item-v:hover {
    background: rgba(13, 148, 136, 0.12);
    border-color: rgba(13, 148, 136, 0.35);
}

.brand-logo-v {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
    text-align: center;
    transition: all 0.4s ease;
    text-transform: uppercase;
}

.logo-item-v:hover .brand-logo-v {
    color: #0d9488;
}

/* Stats Section */
.partners-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
    padding: 0 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    color: #0d9488;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #0d9488 0%, #f4d03f 50%, #0d9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(13, 148, 136, 0.5), transparent);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .partners-title {
        font-size: 34px;
    }

    .partners-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 34px;
    }

    .slider-vertical {
        height: 150px;
    }

    .logo-track-vertical {
        gap: 15px;
    }

    .vertical-column {
        max-width: 160px;
    }

    .brand-logo-v {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .partners-premium-section {
        padding: 60px 0 50px;
    }

    .partners-title {
        font-size: 28px;
    }

    .partners-subtitle {
        font-size: 16px;
    }

    .logo-track {
        gap: 25px;
    }

    .logo-item {
        padding: 12px 20px;
    }

    .brand-logo {
        font-size: 14px;
        letter-spacing: 1.5px;
    }

    .slider-vertical {
        height: 130px;
        padding: 0 15px;
    }

    .logo-track-vertical {
        gap: 10px;
    }

    .vertical-column:nth-child(4),
    .vertical-column:nth-child(5) {
        display: none;
    }

    .vertical-column {
        max-width: none;
        flex: 1;
    }

    .partners-stats {
        flex-wrap: wrap;
        gap: 25px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 0 0 calc(33.333% - 20px);
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .partners-premium-section {
        padding: 50px 0 40px;
    }

    .partners-badge {
        font-size: 10px;
        letter-spacing: 2px;
        padding: 6px 15px;
    }

    .partners-title {
        font-size: 24px;
    }

    .partners-subtitle {
        font-size: 14px;
    }

    .logo-slider-row::before,
    .logo-slider-row::after {
        width: 50px;
    }

    .logo-item {
        padding: 10px 15px;
    }

    .brand-logo {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .slider-vertical {
        height: 110px;
    }

    .vertical-column:nth-child(3) {
        display: none;
    }

    .brand-logo-v {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .logo-item-v {
        padding: 10px 12px;
        min-height: 45px;
    }
}

/* Pause animations on hover */
.logo-slider-row:hover .logo-track,
.slider-vertical:hover .vertical-column {
    animation-play-state: paused;
}

/* ============================================
   PARTNERS SECTION - IMAGE LOGO STYLES
   ============================================ */

/* Logo images in horizontal sliders */
.logo-item img {
    max-height: 50px;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(10deg);
    opacity: 1;
    transform: scale(1.1);
}

/* Logo images in vertical sliders */
.logo-item-v img {
    max-height: 40px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-item-v:hover img {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(10deg);
    opacity: 1;
    transform: scale(1.15);
}

/* Ensure proper centering for images */
.logo-item, .logo-item-v {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile responsive logo sizes */
@media (max-width: 768px) {
    .logo-item img {
        max-height: 35px;
        max-width: 100px;
    }
    
    .logo-item-v img {
        max-height: 30px;
        max-width: 80px;
    }
}

@media (max-width: 480px) {
    .logo-item img {
        max-height: 28px;
        max-width: 80px;
    }
    
    .logo-item-v img {
        max-height: 24px;
        max-width: 60px;
    }
}

/* ============================================
   PARTNERS SECTION - FIXED IMAGE LOGO STYLES
   ============================================ */

/* Override previous filter - show logos in full color */
.logo-item img,
.logo-item-v img {
    filter: none !important;
    opacity: 1 !important;
    background: white;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Logo images in horizontal sliders */
.logo-item img {
    max-height: 60px;
    max-width: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.4);
}

/* Logo images in vertical sliders */
.logo-item-v img {
    max-height: 50px;
    max-width: 130px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-item-v:hover img {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.4);
}

/* Mobile responsive logo sizes */
@media (max-width: 768px) {
    .logo-item img {
        max-height: 45px;
        max-width: 120px;
        padding: 8px 12px;
    }

    .logo-item-v img {
        max-height: 40px;
        max-width: 100px;
        padding: 6px 10px;
    }
}

/* ==========================================================================
   SERVICE AREA MAP SECTION - Premium Redesign
   ========================================================================== */

.service-area-section {
    padding: 0;
    margin: 0;
    position: relative;
}

.service-area-bg {
    background: linear-gradient(180deg, #f8f8f8 0%, #f5f5f5 100%);
    padding: 80px 0 0 0;
}

/* Section Label */
.service-area-section .section-label {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #0d9488;
    margin-bottom: 15px;
    position: relative;
    padding: 0 50px;
}

.service-area-section .section-label::before,
.service-area-section .section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 35px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #0d9488);
}

.service-area-section .section-label::before {
    left: 0;
    background: linear-gradient(90deg, transparent, #0d9488);
}

.service-area-section .section-label::after {
    right: 0;
    background: linear-gradient(90deg, #0d9488, transparent);
}

/* Service Area Badges Container */
.service-area-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 0 20px;
    max-width: 900px;
    margin: 0 auto;
}

/* Individual Area Badge */
.area-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.area-badge::before {
    content: '\e0ab';
    font-family: 'Streamline';
    font-size: 12px;
    margin-right: 8px;
    color: #0d9488;
    transition: all 0.3s ease;
}

.area-badge:hover {
    border-color: #0d9488;
    background: linear-gradient(135deg, #fdfbf8 0%, #ffffff 100%);
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.25);
    transform: translateY(-2px);
    color: #0a1628;
}

.area-badge:hover::before {
    transform: scale(1.2);
    color: #b8935f;
}

/* Map Container */
.map-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Map Frame with Navy Border */
.map-frame {
    position: relative;
    background: #0a1628;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(10, 22, 40, 0.2);
}

/* Gold Accent Bar at Top */
.map-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d9488, #14b8a6, #0d9488);
    z-index: 2;
}

/* Map Inner Container */
.map-frame .map-inner {
    padding: 15px 15px 12px 15px;
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 8px;
    filter: grayscale(20%) contrast(1.05);
    transition: filter 0.5s ease;
}

.map-frame:hover iframe {
    filter: grayscale(0%) contrast(1);
}

/* Floating Info Card */
.map-info-card {
    position: absolute;
    top: 45px;
    left: 55px;
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    max-width: 280px;
    z-index: 10;
    border-left: 4px solid #0d9488;
}

.map-info-card .info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.4);
}

.map-info-card .info-icon::before {
    content: '\e0ab';
    font-family: 'Streamline';
    font-size: 22px;
    color: #ffffff;
}

.map-info-card h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0a1628;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.map-info-card .trust-credentials {
    list-style: none;
    padding: 0;
    margin: 0;
}

.map-info-card .trust-credentials li {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    color: #666;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.map-info-card .trust-credentials li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.map-info-card .trust-credentials li::before {
    content: '\e0d4';
    font-family: 'Streamline';
    font-size: 14px;
    color: #0d9488;
    margin-right: 10px;
}

/* Service Area CTA Section */
.service-area-cta {
    background: linear-gradient(135deg, #0a1628 0%, #1a2a3a 100%);
    padding: 40px 50px;
    border-radius: 12px;
    text-align: center;
    margin: 0 30px;
    position: relative;
    overflow: hidden;
}

.service-area-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0d9488, transparent);
}

.service-area-cta .cta-text {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 25px 0;
}

.service-area-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-area-cta .more.active {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    color: #0a1628;
    font-weight: 700;
    padding: 14px 35px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.4);
}

.service-area-cta .more.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(13, 148, 136, 0.5);
}

.service-area-cta .more.style-2 {
    background: transparent;
    color: #ffffff;
    font-weight: 600;
    padding: 14px 35px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.service-area-cta .more.style-2:hover {
    border-color: #0d9488;
    color: #0d9488;
    background: rgba(13, 148, 136, 0.1);
}

/* Bottom Spacing for CTA */
.service-area-section .cta-row {
    padding-bottom: 60px;
    background: #f5f5f5;
}

/* Glow Animation for Primary Button */
@keyframes btnGlow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(13, 148, 136, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(13, 148, 136, 0.6);
    }
}

.btn-glow {
    animation: btnGlow 2s ease-in-out infinite;
}

/* Badge Entrance Animation */
@keyframes badgeFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.area-badge {
    animation: badgeFadeIn 0.5s ease-out forwards;
}

.area-badge:nth-child(1) { animation-delay: 0.05s; }
.area-badge:nth-child(2) { animation-delay: 0.1s; }
.area-badge:nth-child(3) { animation-delay: 0.15s; }
.area-badge:nth-child(4) { animation-delay: 0.2s; }
.area-badge:nth-child(5) { animation-delay: 0.25s; }
.area-badge:nth-child(6) { animation-delay: 0.3s; }
.area-badge:nth-child(7) { animation-delay: 0.35s; }
.area-badge:nth-child(8) { animation-delay: 0.4s; }
.area-badge:nth-child(9) { animation-delay: 0.45s; }
.area-badge:nth-child(10) { animation-delay: 0.5s; }

/* ==========================================================================
   SERVICE AREA MAP - RESPONSIVE STYLES
   ========================================================================== */

/* Tablet (992px and below) */
@media (max-width: 992px) {
    .service-area-bg {
        padding: 60px 0 0 0;
    }

    .map-info-card {
        position: relative;
        top: auto;
        left: auto;
        max-width: 100%;
        margin: 0 30px 30px 30px;
    }

    .map-frame iframe {
        height: 380px;
    }

    .service-area-cta {
        padding: 35px 40px;
    }

    .service-area-cta .cta-text {
        font-size: 18px;
    }
}

/* Mobile Landscape (768px and below) */
@media (max-width: 768px) {
    .service-area-bg {
        padding: 50px 0 0 0;
    }

    .service-area-section .section-label {
        font-size: 12px;
        padding: 0 40px;
    }

    .service-area-section .section-label::before,
    .service-area-section .section-label::after {
        width: 25px;
    }

    .service-area-badges {
        gap: 10px;
        padding: 0 15px;
    }

    .area-badge {
        padding: 8px 16px;
        font-size: 13px;
    }

    .map-container {
        padding: 0 15px;
    }

    .map-info-card {
        margin: 0 15px 25px 15px;
        padding: 20px;
    }

    .map-info-card h4 {
        font-size: 16px;
    }

    .map-frame .map-inner {
        padding: 12px 12px 10px 12px;
    }

    .map-frame iframe {
        height: 300px;
        border-radius: 6px;
    }

    .service-area-cta {
        margin: 0 15px;
        padding: 30px 25px;
    }

    .service-area-cta .cta-text {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .service-area-cta .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .service-area-cta .more.active,
    .service-area-cta .more.style-2 {
        width: 100%;
        padding: 12px 30px;
        font-size: 13px;
    }

    .service-area-section .cta-row {
        padding-bottom: 50px;
    }
}

/* Mobile Portrait (480px and below) */
@media (max-width: 480px) {
    .service-area-bg {
        padding: 40px 0 0 0;
    }

    .service-area-section h2.box-header {
        font-size: 24px !important;
    }

    .service-area-section .description {
        font-size: 14px;
        padding: 0 10px;
    }

    .service-area-badges {
        gap: 8px;
        padding: 0 10px;
    }

    .area-badge {
        padding: 7px 14px;
        font-size: 12px;
    }

    .area-badge::before {
        font-size: 10px;
        margin-right: 6px;
    }

    .map-container {
        padding: 0 10px;
    }

    .map-info-card {
        margin: 0 10px 20px 10px;
        padding: 18px;
    }

    .map-info-card .info-icon {
        width: 45px;
        height: 45px;
    }

    .map-info-card .info-icon::before {
        font-size: 18px;
    }

    .map-info-card h4 {
        font-size: 15px;
    }

    .map-info-card .trust-credentials li {
        font-size: 12px;
    }

    .map-frame .map-inner {
        padding: 10px 10px 8px 10px;
    }

    .map-frame iframe {
        height: 250px;
    }

    .service-area-cta {
        margin: 0 10px;
        padding: 25px 20px;
        border-radius: 10px;
    }

    .service-area-cta .cta-text {
        font-size: 15px;
    }

    .service-area-section .cta-row {
        padding-bottom: 40px;
    }
}

/* ============================================
   PREMIUM CTA BANNER
   Premium call-to-action section with gold accents and SVG icons
   ============================================ */

.premium-cta-banner {
    background: linear-gradient(135deg, #0a1628 0%, #152238 50%, #1a2a3a 100%);
    position: relative;
    padding: 60px 0;
    margin: 0;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/* Gold accent line at top */
.premium-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #0d9488 15%, #e8d4b8 50%, #0d9488 85%, transparent 100%);
}

/* Gold accent line at bottom */
.premium-cta-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #0d9488 15%, #e8d4b8 50%, #0d9488 85%, transparent 100%);
}

/* Inner container */
.premium-cta-banner .cta-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Content flex layout */
.premium-cta-banner .cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* Text side styling */
.premium-cta-banner .cta-text-side {
    flex: 1;
}

.premium-cta-banner .cta-text-side h3 {
    font-family: 'Montserrat', 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif;
    color: #ffffff;
    font-size: 34px;
    font-weight: 700;
    margin: 0 0 12px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.premium-cta-banner .cta-text-side p {
    font-family: 'Inter', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin: 0 0 24px 0;
    line-height: 1.6;
}

/* Trust badges with SVG icons */
.premium-cta-banner .cta-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.premium-cta-banner .trust-badge {
    font-family: 'Montserrat', 'Inter', 'Helvetica Neue', Arial, sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0d9488;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 18px;
    background: rgba(13, 148, 136, 0.08);
    border: 1px solid rgba(13, 148, 136, 0.25);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.premium-cta-banner .trust-badge:hover {
    background: rgba(13, 148, 136, 0.15);
    border-color: rgba(13, 148, 136, 0.4);
    transform: translateY(-2px);
}

.premium-cta-banner .trust-badge svg {
    flex-shrink: 0;
    stroke: #0d9488;
}

/* Button side styling */
.premium-cta-banner .cta-button-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0;
}

/* Primary button - Gold gradient with glow and SVG icon */
.premium-cta-banner .cta-btn-primary {
    font-family: 'Montserrat', 'Inter', 'Helvetica Neue', Arial, sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #0d9488 100%);
    background-size: 200% 200%;
    color: #0a1628;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.4), 0 0 40px rgba(13, 148, 136, 0.15);
    transition: all 0.4s ease;
    animation: ctaGlow 3s ease-in-out infinite;
    border: none;
}

.premium-cta-banner .cta-btn-primary svg {
    flex-shrink: 0;
    stroke: #0a1628;
}

@keyframes ctaGlow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(13, 148, 136, 0.4), 0 0 40px rgba(13, 148, 136, 0.15);
        background-position: 0% 50%;
    }
    50% {
        box-shadow: 0 6px 30px rgba(13, 148, 136, 0.55), 0 0 60px rgba(13, 148, 136, 0.25);
        background-position: 100% 50%;
    }
}

.premium-cta-banner .cta-btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px rgba(13, 148, 136, 0.6), 0 0 80px rgba(13, 148, 136, 0.3);
    background-position: 100% 50%;
}

/* Secondary button - White outline with SVG phone icon */
.premium-cta-banner .cta-btn-secondary {
    font-family: 'Montserrat', 'Inter', 'Helvetica Neue', Arial, sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.premium-cta-banner .cta-btn-secondary svg {
    flex-shrink: 0;
    stroke: #ffffff;
    transition: stroke 0.3s ease;
}

.premium-cta-banner .cta-btn-secondary:hover {
    border-color: #0d9488;
    color: #0d9488;
    background: rgba(13, 148, 136, 0.1);
    transform: translateY(-2px);
}

.premium-cta-banner .cta-btn-secondary:hover svg {
    stroke: #0d9488;
}

/* Responsive - Tablet */
@media (max-width: 992px) {
    .premium-cta-banner {
        padding: 50px 0;
    }

    .premium-cta-banner .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 35px;
    }

    .premium-cta-banner .cta-text-side h3 {
        font-size: 30px;
    }

    .premium-cta-banner .cta-text-side p {
        font-size: 17px;
    }

    .premium-cta-banner .cta-trust-badges {
        justify-content: center;
    }

    .premium-cta-banner .cta-button-side {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 15px;
    }

    .premium-cta-banner .cta-btn-primary,
    .premium-cta-banner .cta-btn-secondary {
        min-width: 240px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .premium-cta-banner {
        padding: 45px 0;
    }

    .premium-cta-banner .cta-inner {
        padding: 0 20px;
    }

    .premium-cta-banner .cta-content {
        gap: 30px;
    }

    .premium-cta-banner .cta-text-side h3 {
        font-size: 26px;
    }

    .premium-cta-banner .cta-text-side p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .premium-cta-banner .cta-trust-badges {
        gap: 12px;
    }

    .premium-cta-banner .trust-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .premium-cta-banner .trust-badge svg {
        width: 16px;
        height: 16px;
    }

    .premium-cta-banner .cta-button-side {
        flex-direction: column;
        width: 100%;
    }

    .premium-cta-banner .cta-btn-primary,
    .premium-cta-banner .cta-btn-secondary {
        width: 100%;
        min-width: unset;
        padding: 16px 28px;
    }

    .premium-cta-banner .cta-btn-primary {
        font-size: 14px;
    }

    .premium-cta-banner .cta-btn-secondary {
        font-size: 14px;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .premium-cta-banner {
        padding: 35px 0;
    }

    .premium-cta-banner .cta-inner {
        padding: 0 15px;
    }

    .premium-cta-banner .cta-text-side h3 {
        font-size: 22px;
    }

    .premium-cta-banner .cta-text-side p {
        font-size: 15px;
    }

    .premium-cta-banner .cta-trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .premium-cta-banner .trust-badge {
        width: 100%;
        justify-content: center;
    }

    .premium-cta-banner .cta-btn-primary,
    .premium-cta-banner .cta-btn-secondary {
        padding: 14px 24px;
        font-size: 13px;
    }

    .premium-cta-banner .cta-btn-primary svg,
    .premium-cta-banner .cta-btn-secondary svg {
        width: 16px;
        height: 16px;
    }
}

/* ============================================
   PREMIUM COST OF RENOVATION SECTION
   ============================================ */

.premium-cost-section {
    position: relative;
    background: linear-gradient(135deg, #0a1628 0%, #152238 50%, #1a2a3a 100%);
    padding: 80px 0;
    overflow: hidden;
}

/* Background Pattern */
.premium-cost-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(13, 148, 136, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(13, 148, 136, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Gold Accent Line at Top */
.premium-cost-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #0d9488 20%, #14b8a6 50%, #0d9488 80%, transparent 100%);
}

.premium-cost-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Section Header */
.cost-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.cost-section-header .section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.15) 0%, rgba(13, 148, 136, 0.05) 100%);
    border: 2px solid rgba(13, 148, 136, 0.3);
    border-radius: 50%;
    margin-bottom: 25px;
}

.cost-section-header .section-icon svg {
    width: 36px;
    height: 36px;
    color: #0d9488;
}

.cost-section-header .section-subtitle {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #0d9488;
    margin-bottom: 15px;
}

.cost-section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    letter-spacing: 1px;
}

.cost-section-header .section-description {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Calculator Cards Grid */
.cost-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Individual Calculator Card */
.cost-calculator-card {
    position: relative;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(13, 148, 136, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
}

.cost-calculator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d9488, #14b8a6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.cost-calculator-card:hover {
    transform: translateY(-10px);
    border-color: rgba(13, 148, 136, 0.5);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(13, 148, 136, 0.15);
}

.cost-calculator-card:hover::before {
    transform: scaleX(1);
}

/* Card Icon */
.cost-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.2) 0%, rgba(13, 148, 136, 0.08) 100%);
    border: 2px solid rgba(13, 148, 136, 0.3);
    border-radius: 50%;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.cost-card-icon svg {
    width: 40px;
    height: 40px;
    color: #0d9488;
    transition: transform 0.4s ease;
}

.cost-calculator-card:hover .cost-card-icon {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    border-color: #0d9488;
    transform: scale(1.1);
}

.cost-calculator-card:hover .cost-card-icon svg {
    color: #0a1628;
    transform: scale(1.1);
}

/* Card Title */
.cost-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 15px 0;
    letter-spacing: 0.5px;
}

/* Price Range */
.cost-price-range {
    margin-bottom: 20px;
}

.cost-price-range .price-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.cost-price-range .price-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #0d9488;
    line-height: 1;
}

.cost-price-range .price-unit {
    font-size: 16px;
    font-weight: 500;
    color: rgba(13, 148, 136, 0.7);
}

/* Card Description */
.cost-card-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Card Features List */
.cost-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.cost-card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cost-card-features li:last-child {
    border-bottom: none;
}

.cost-card-features li svg {
    width: 16px;
    height: 16px;
    color: #0d9488;
    flex-shrink: 0;
}

/* Card CTA Button */
.cost-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    border: 2px solid rgba(13, 148, 136, 0.5);
    border-radius: 50px;
    color: #0d9488;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cost-card-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.cost-card-btn:hover {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    border-color: #0d9488;
    color: #0a1628;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(13, 148, 136, 0.3);
}

.cost-card-btn:hover svg {
    transform: translateX(4px);
}

/* Main CTA Section */
.cost-main-cta {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cost-main-cta .cta-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.cost-main-cta .cta-text strong {
    color: #0d9488;
}

.cost-main-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 45px;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #0d9488 100%);
    background-size: 200% 200%;
    border: none;
    border-radius: 50px;
    color: #0a1628;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 30px rgba(13, 148, 136, 0.4);
    transition: all 0.4s ease;
    animation: costGlow 3s ease-in-out infinite;
}

@keyframes costGlow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(13, 148, 136, 0.4);
    }
    50% {
        box-shadow: 0 10px 40px rgba(13, 148, 136, 0.6), 0 0 60px rgba(13, 148, 136, 0.2);
    }
}

.cost-main-cta-btn:hover {
    background-position: 100% 0;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(13, 148, 136, 0.5);
}

.cost-main-cta-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cost-main-cta-btn:hover svg {
    transform: translateX(5px);
}

/* Trust Indicators */
.cost-trust-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.cost-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.cost-trust-item svg {
    width: 20px;
    height: 20px;
    color: #0d9488;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .cost-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .premium-cost-section {
        padding: 60px 0;
    }

    .premium-cost-inner {
        padding: 0 20px;
    }

    .cost-section-header h2 {
        font-size: 32px;
    }

    .cost-section-header .section-description {
        font-size: 15px;
    }

    .cost-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .cost-calculator-card:last-child {
        grid-column: span 1;
        max-width: none;
    }

    .cost-calculator-card {
        padding: 35px 25px;
    }

    .cost-trust-row {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .premium-cost-section {
        padding: 50px 0;
    }

    .cost-section-header .section-icon {
        width: 70px;
        height: 70px;
    }

    .cost-section-header .section-icon svg {
        width: 30px;
        height: 30px;
    }

    .cost-section-header h2 {
        font-size: 26px;
    }

    .cost-card-icon {
        width: 80px;
        height: 80px;
    }

    .cost-card-icon svg {
        width: 35px;
        height: 35px;
    }

    .cost-price-range .price-value {
        font-size: 28px;
    }

    .cost-main-cta-btn {
        padding: 16px 35px;
        font-size: 14px;
    }

    .cost-trust-row {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* ============================================
   PREMIUM SERVICE CARDS
   Modern card design for services listing
   ============================================ */

/* Services grid container */
.services-list.premium-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Individual service card */
.services-list.premium-cards > li,
.premium-service-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(10, 22, 40, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    display: flex;
    flex-direction: column;
}

.services-list.premium-cards > li:hover,
.premium-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(10, 22, 40, 0.15);
}

/* Card image container */
.premium-service-card .card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.services-list.premium-cards > li > a:first-child {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.services-list.premium-cards > li > a:first-child img,
.premium-service-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.services-list.premium-cards > li:hover > a:first-child img,
.premium-service-card:hover .card-image img {
    transform: scale(1.08);
}

/* Image overlay */
.services-list.premium-cards > li > a:first-child::after,
.premium-service-card .card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.7) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.services-list.premium-cards > li:hover > a:first-child::after,
.premium-service-card:hover .card-image::after {
    opacity: 1;
}

/* Gold accent bar */
.services-list.premium-cards > li::before,
.premium-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d9488, #14b8a6, #0d9488);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 10;
}

.services-list.premium-cards > li:hover::before,
.premium-service-card:hover::before {
    transform: scaleX(1);
}

/* Card content area */
.premium-service-card .card-content {
    padding: 28px 28px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.services-list.premium-cards > li {
    padding-bottom: 0;
}

.services-list.premium-cards > li h3.box-header,
.services-list.premium-cards > li h3,
.premium-service-card .card-title {
    font-family: 'Montserrat', 'Plus Jakarta Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0a1628;
    margin: 24px 24px 12px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.services-list.premium-cards > li h3.box-header::after {
    display: none;
}

.services-list.premium-cards > li h3.box-header a,
.premium-service-card .card-title a {
    color: #0a1628;
    text-decoration: none;
    transition: color 0.3s ease;
}

.services-list.premium-cards > li:hover h3.box-header a,
.premium-service-card:hover .card-title a {
    color: #0d9488;
}

.services-list.premium-cards > li p,
.premium-service-card .card-description {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #5a6a7a;
    margin: 0 24px 20px;
    flex: 1;
}

/* Learn more link */
.premium-service-card .card-link,
.services-list.premium-cards > li .card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #0d9488;
    text-decoration: none;
    margin: auto 24px 24px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.premium-service-card .card-link svg,
.services-list.premium-cards > li .card-link svg {
    width: 18px;
    height: 18px;
    stroke: #0d9488;
    transition: transform 0.3s ease;
}

.premium-service-card:hover .card-link,
.services-list.premium-cards > li:hover .card-link {
    color: #0a1628;
}

.premium-service-card:hover .card-link svg,
.services-list.premium-cards > li:hover .card-link svg {
    transform: translateX(5px);
    stroke: #0a1628;
}

/* Category badge */
.premium-service-card .card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 14px;
    border-radius: 6px;
    z-index: 5;
}

/* Icon indicator */
.premium-service-card .card-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
    z-index: 5;
}

.premium-service-card .card-icon svg {
    width: 24px;
    height: 24px;
    stroke: #0a1628;
}

.premium-service-card:hover .card-icon {
    opacity: 1;
    transform: scale(1);
}

/* Responsive - Tablet */
@media (max-width: 992px) {
    .services-list.premium-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .services-list.premium-cards > li h3.box-header,
    .premium-service-card .card-title {
        font-size: 20px;
        margin: 20px 20px 10px;
    }

    .services-list.premium-cards > li p,
    .premium-service-card .card-description {
        font-size: 14px;
        margin: 0 20px 16px;
    }

    .premium-service-card .card-link,
    .services-list.premium-cards > li .card-link {
        margin: auto 20px 20px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .services-list.premium-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-list.premium-cards > li,
    .premium-service-card {
        border-radius: 12px;
    }

    .services-list.premium-cards > li > a:first-child {
        aspect-ratio: 16/9;
    }

    .services-list.premium-cards > li h3.box-header,
    .premium-service-card .card-title {
        font-size: 20px;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .services-list.premium-cards {
        gap: 16px;
    }

    .services-list.premium-cards > li h3.box-header,
    .premium-service-card .card-title {
        font-size: 18px;
        margin: 16px 16px 8px;
    }

    .services-list.premium-cards > li p,
    .premium-service-card .card-description {
        font-size: 14px;
        margin: 0 16px 14px;
    }

    .premium-service-card .card-link,
    .services-list.premium-cards > li .card-link {
        margin: auto 16px 16px;
        font-size: 12px;
    }

    .premium-service-card .card-badge {
        font-size: 10px;
        padding: 6px 10px;
        top: 12px;
        left: 12px;
    }
}

/* =====================================================
   PREMIUM FOOTER STYLES - SVG Icons
   ===================================================== */

/* Footer Contact Bar */
.footer-contact-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 25px 0;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    margin-bottom: 40px;
    border-radius: 8px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #0a1628;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    color: #152238;
    transform: translateY(-2px);
}

.footer-contact-item svg {
    flex-shrink: 0;
    stroke: #0a1628;
    transition: all 0.3s ease;
}

.footer-contact-item:hover svg {
    stroke: #152238;
    transform: scale(1.1);
}

/* Footer Social Icons */
.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(13, 148, 136, 0.1);
    border: 2px solid rgba(13, 148, 136, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: #0d9488;
    border-color: #0d9488;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.35);
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
    fill: #0d9488;
    transition: all 0.3s ease;
}

.footer-social-link:hover svg {
    fill: #0a1628;
}

/* Footer Services List */
.footer-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-services-list li:hover {
    transform: translateX(5px);
}

.footer-services-list li svg {
    flex-shrink: 0;
    stroke: #0d9488;
    transition: all 0.3s ease;
}

.footer-services-list li:hover svg {
    stroke: #14b8a6;
    transform: translateX(3px);
}

.footer-services-list li a {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-services-list li a:hover {
    color: #0d9488;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-contact-bar {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px 15px;
    }

    .footer-contact-item {
        font-size: 14px;
    }

    .footer-social-icons {
        gap: 12px;
    }

    .footer-social-link {
        width: 40px;
        height: 40px;
    }

    .footer-social-link svg {
        width: 18px;
        height: 18px;
    }

    .footer-services-list li a {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer-contact-bar {
        gap: 15px;
        padding: 18px 12px;
        border-radius: 6px;
    }

    .footer-contact-item {
        font-size: 13px;
        gap: 10px;
    }

    .footer-contact-item svg {
        width: 18px;
        height: 18px;
    }

    .footer-social-link {
        width: 38px;
        height: 38px;
    }

    .footer-social-link svg {
        width: 16px;
        height: 16px;
    }
}

/* =====================================================
   SCROLL TO TOP BUTTON - SVG Icon
   ===================================================== */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(13, 148, 136, 0.5);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
    stroke: #0a1628;
    transition: all 0.3s ease;
}

.scroll-top:hover svg {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .scroll-top {
        width: 44px;
        height: 44px;
        bottom: 20px;
        right: 20px;
    }

    .scroll-top svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .scroll-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }

    .scroll-top svg {
        width: 18px;
        height: 18px;
    }
}

/* =====================================================
   HEADER TOGGLE BUTTON - SVG Icon
   ===================================================== */

.header-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(13, 148, 136, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.header-toggle:hover {
    background: rgba(13, 148, 136, 0.2);
}

.header-toggle svg {
    stroke: #0d9488;
    transition: all 0.3s ease;
}

.header-toggle:hover svg {
    stroke: #14b8a6;
}

.header-toggle.active svg {
    transform: rotate(180deg);
}

/* ==========================================================================
   STICKY HEADER & VERTICAL ALIGNMENT FIX
   Added: January 2026
   ========================================================================== */

/* ===== STICKY HEADER ===== */
.site-container {
    padding-top: 0;
}

/* Wrapper for premium top bar + header */
.sticky-header-wrapper {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* When scrolled, add shadow */
.sticky-header-wrapper.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* ===== HEADER VERTICAL ALIGNMENT (Center from top to bottom) ===== */
.header-container {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 20px !important;
    min-height: 80px !important;
    background: #0a1628 !important;
}

.header-container .vertical-align-table {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 50px !important;
    height: auto !important;
    min-height: auto !important;
}

.header.clearfix {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 15px 0 !important;
}

/* Logo vertical centering */
.header .logo.vertical-align-cell {
    display: flex !important;
    align-items: center !important;
    vertical-align: middle !important;
    height: auto !important;
}

.header .logo a {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    text-decoration: none !important;
}

/* Menu container vertical centering */
.menu-container.clearfix.vertical-align-cell {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    vertical-align: middle !important;
    height: auto !important;
    margin-top: 0 !important;
}

/* Mobile menu switch vertical centering */
.mobile-menu-switch.vertical-align-cell {
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    vertical-align: middle !important;
    height: auto !important;
    padding: 10px !important;
}

/* ===== DESKTOP STYLES (768px+) ===== */
@media screen and (min-width: 768px) {
    .header-container {
        min-height: 80px !important;
        overflow: visible !important;
    }

    .header.clearfix {
        padding: 12px 0 !important;
        overflow: visible !important;
    }

    .menu-container.clearfix.vertical-align-cell {
        display: flex !important;
        overflow: visible !important;
    }

    /* Hide mobile menu elements on desktop */
    .mobile-menu-switch.vertical-align-cell {
        display: none !important;
    }

    .mobile-menu-container {
        display: none !important;
    }

    .mobile-menu {
        display: none !important;
    }

    .mobile-menu-divider {
        display: none !important;
    }

    /* Desktop navigation menu */
    .sf-menu {
        display: flex !important;
        align-items: center !important;
        overflow: visible !important;
    }

    .sf-menu li {
        overflow: visible !important;
    }

    .sf-menu li a {
        display: flex !important;
        align-items: center !important;
        height: 100% !important;
    }

    /* Dropdown menus - no scroll */
    .sf-menu li ul {
        overflow: visible !important;
        max-height: none !important;
    }
}

/* ===== MOBILE STYLES (< 768px) ===== */
@media screen and (max-width: 767px) {

    /* CRITICAL: Site container needs no top padding/margin */
    .site-container {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    /* Hide premium-top-bar on mobile - info shows in mobile-header-bar */
    .premium-top-bar {
        display: none !important;
        height: 0 !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Sticky header on mobile with SLOW MOTION effect */
    .sticky-header-wrapper {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 99999 !important;
        overflow: visible !important;
        background: #0a1628 !important;
        /* SLOW transition - 0.6 seconds with smooth easing */
        -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease !important;
        -moz-transition: -moz-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease !important;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease !important;
        will-change: transform;
        -webkit-transform: translateY(0) translateZ(0);
        -moz-transform: translateY(0);
        transform: translateY(0) translateZ(0);
    }

    /* Push content below fixed header - first element after header only */
    .sticky-header-wrapper + .revolution-slider-container,
    .sticky-header-wrapper + .forcefullwidth_wrapper_tp_banner,
    .sticky-header-wrapper + .hero-section,
    .sticky-header-wrapper + .page-header,
    .sticky-header-wrapper + .content-container,
    .sticky-header-wrapper + main {
        margin-top: 60px !important;
    }

    /* If slider wrapper is created by Revolution Slider, don't double margin */
    .forcefullwidth_wrapper_tp_banner .revolution-slider-container {
        margin-top: 0 !important;
    }

    /* When scrolled past threshold - add shadow */
    .sticky-header-wrapper.scrolled {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35) !important;
    }

    /* HIDE header with SLOW slide up animation */
    .sticky-header-wrapper.header-hidden {
        -webkit-transform: translateY(-100%) translateZ(0) !important;
        -moz-transform: translateY(-100%) !important;
        transform: translateY(-100%) translateZ(0) !important;
        box-shadow: none !important;
    }

    /* SHOW header with SLOW slide down animation */
    .sticky-header-wrapper.header-visible {
        -webkit-transform: translateY(0) translateZ(0) !important;
        -moz-transform: translateY(0) !important;
        transform: translateY(0) translateZ(0) !important;
    }

    .header-container {
        min-height: auto !important;
        padding: 10px 15px !important;
        position: relative !important;
        overflow: visible !important;
    }

    /* Reset the vertical-align-table to simple block */
    .header-container .vertical-align-table {
        display: block !important;
        padding: 0 !important;
        overflow: visible !important;
        width: 100% !important;
    }

    /* Header row: logo left, hamburger right */
    .header.clearfix {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        padding: 5px 0 !important;
        position: relative !important;
        overflow: visible !important;
    }

    /* Logo on mobile - left side */
    .header .logo.vertical-align-cell {
        display: block !important;
        flex: 0 1 auto !important;
        order: 1 !important;
    }

    .header .logo .logo-text {
        font-size: 20px !important;
        line-height: 1.1 !important;
    }

    .header .logo .logo-sub {
        font-size: 10px !important;
        letter-spacing: 0.15em !important;
    }

    /* Hamburger menu button - RIGHT side */
    .mobile-menu-switch.vertical-align-cell {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 0 0 44px !important;
        width: 44px !important;
        height: 44px !important;
        padding: 8px !important;
        background: rgba(13, 148, 136, 0.15) !important;
        border-radius: 8px !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        position: absolute !important;
        right: 0 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 100 !important;
        margin: 0 !important;
    }

    .mobile-menu-switch.vertical-align-cell:hover,
    .mobile-menu-switch.vertical-align-cell:active {
        background: rgba(13, 148, 136, 0.25) !important;
    }

    .mobile-menu-switch .line {
        display: block !important;
        width: 24px !important;
        height: 3px !important;
        background: #0d9488 !important;
        border-radius: 2px !important;
        margin: 3px 0 !important;
        transition: all 0.3s ease !important;
    }

    .mobile-menu-switch .line:first-child {
        margin-top: 0 !important;
    }

    .mobile-menu-switch .line:last-child {
        margin-bottom: 0 !important;
    }

    /* Hide desktop menu nav (sf-menu) on mobile */
    .menu-container.clearfix.vertical-align-cell > nav:first-child {
        display: none !important;
    }

    /* Menu container - full width below header */
    .menu-container.clearfix.vertical-align-cell {
        display: block !important;
        width: 100% !important;
        order: 3 !important;
        margin-top: 0 !important;
        padding: 0 !important;
        position: static !important;
    }

    /* Mobile menu container - full width */
    .mobile-menu-container {
        width: 100% !important;
        display: block !important;
    }

    /* Mobile menu divider */
    .mobile-menu-divider {
        display: none;
        height: 1px;
        background: rgba(13, 148, 136, 0.2);
    }

    /* Mobile menu styles - the actual menu that slides */
    .mobile-menu {
        display: none;
        width: 100% !important;
        background: #0a1628 !important;
        border-top: 1px solid rgba(13, 148, 136, 0.2) !important;
        padding: 10px 0 !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
        max-height: calc(100vh - 150px) !important;
        overflow-y: auto !important;
        list-style: none !important;
        margin: 0 !important;
    }

    .mobile-menu.active {
        display: block !important;
    }

    .mobile-menu li a {
        display: block !important;
        padding: 14px 20px !important;
        color: rgba(255, 255, 255, 0.9) !important;
        background: transparent !important;
        font-family: 'Montserrat', sans-serif !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        border-bottom: 1px solid rgba(13, 148, 136, 0.1) !important;
        transition: all 0.3s ease !important;
    }

    .mobile-menu li a:hover,
    .mobile-menu li.selected a {
        color: #0d9488 !important;
        background: rgba(13, 148, 136, 0.1) !important;
    }

    .mobile-menu li ul a {
        padding-left: 35px !important;
        font-size: 13px !important;
        color: rgba(255, 255, 255, 0.75) !important;
    }

    .mobile-menu li ul ul a {
        padding-left: 50px !important;
        font-size: 12px !important;
    }

    /* Mobile menu divider */
    .mobile-menu-divider {
        display: none !important;
    }
}

/* ===== SMALL MOBILE (< 480px) ===== */
@media screen and (max-width: 479px) {
    .header-container {
        min-height: 60px !important;
        padding: 0 12px !important;
    }

    .header.clearfix {
        padding: 8px 0 !important;
    }

    .header .logo .logo-text {
        font-size: 17px !important;
    }

    .header .logo .logo-sub {
        font-size: 8px !important;
        letter-spacing: 0.1em !important;
    }

    .mobile-menu-switch.vertical-align-cell {
        width: 40px !important;
        height: 40px !important;
        padding: 6px !important;
    }

    .mobile-menu-switch .line {
        width: 22px !important;
        height: 2px !important;
        margin: 3px auto !important;
    }
}

/* ==========================================================================
   DESKTOP MENU - FINAL OVERRIDE (768px and above)
   This section ensures desktop menu works correctly without scrollbars
   and hides all mobile menu elements on desktop screens.
   Uses native Superfish positioning (top: -999em hidden, top: 48px visible)
   ========================================================================== */
@media screen and (min-width: 768px) {
    /* CRITICAL: Header container must be above slider (which often has z-index 1000+) */
    .header-container {
        position: relative !important;
        z-index: 9999 !important;
        overflow: visible !important;
    }

    /* Ensure vertical-align-table allows dropdown overflow */
    .header-container .vertical-align-table {
        overflow: visible !important;
    }

    /* Ensure header uses flexbox layout */
    .header.clearfix {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        overflow: visible !important;
        position: relative !important;
        z-index: 9999 !important;
    }

    /* Menu container - flex end aligned, override float/clear from responsive.css */
    .menu-container,
    .menu-container.clearfix.vertical-align-cell {
        display: flex !important;
        flex: 1 1 auto !important;
        justify-content: flex-end !important;
        align-items: center !important;
        overflow: visible !important;
        max-width: none !important;
        width: auto !important;
        margin-top: 0 !important;
        float: none !important;
        clear: none !important;
        position: relative !important;
        z-index: 9999 !important;
    }

    /* Desktop navigation - ensure visible, override float from responsive.css */
    .menu-container nav {
        display: block !important;
        overflow: visible !important;
        float: none !important;
        position: relative !important;
        z-index: 9999 !important;
    }

    /* Superfish menu container */
    .sf-menu {
        display: block !important;
        overflow: visible !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 9999 !important;
    }

    /* Menu items - float left as Superfish expects */
    .sf-menu > li {
        float: left !important;
        position: relative !important;
        overflow: visible !important;
        z-index: 9999 !important;
    }

    /* CRITICAL: Override overflow:hidden from style.css line 602 */
    .sf-menu li {
        overflow: visible !important;
    }

    /* Ensure hover state allows overflow */
    .sf-menu li:hover,
    .sf-menu li.sfHover {
        overflow: visible !important;
    }

    /* Dropdown menus - hidden by default (positioned off-screen) */
    .sf-menu li ul,
    .sf-menu > li > ul,
    .sf-menu li ul li ul {
        position: absolute !important;
        top: -999em !important;
        left: 0 !important;
        overflow: visible !important;
        max-height: none !important;
        height: auto !important;
        width: 218px !important;
        z-index: 10000 !important;
        background: #fff !important;
        border: 1px solid #E2E6E7 !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
    }

    /* Show dropdown on hover - bring from -999em to 48px */
    .sf-menu li:hover > ul,
    .sf-menu li.sfHover > ul {
        top: 48px !important;
        left: 5px !important;
        overflow: visible !important;
        z-index: 10001 !important;
    }

    /* Second level dropdown - show to the right */
    .sf-menu li li:hover > ul,
    .sf-menu li li.sfHover > ul {
        top: -1px !important;
        left: 218px !important;
    }

    /* Dropdown item styling */
    .sf-menu li ul li {
        float: none !important;
        width: 100% !important;
        overflow: visible !important;
    }

    .sf-menu li ul li a {
        display: block !important;
        padding: 13px 20px !important;
        color: #444 !important;
        background: #fff !important;
        border-top: 1px solid #E2E6E7 !important;
        font-size: 14px !important;
        line-height: 1.4 !important;
        white-space: nowrap !important;
    }

    .sf-menu li ul li:first-child a {
        border-top: none !important;
    }

    .sf-menu li ul li a:hover {
        color: #0d9488 !important;
        background: #f9f9f9 !important;
    }

    /* HIDE all mobile menu elements on desktop */
    .mobile-menu-switch,
    .mobile-menu-switch.vertical-align-cell,
    .header .mobile-menu-switch,
    a.mobile-menu-switch {
        display: none !important;
        visibility: hidden !important;
    }

    .mobile-menu-container,
    .mobile-menu-divider,
    .mobile-menu,
    ul.mobile-menu,
    nav .mobile-menu {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
    }

    /* Hide mobile header bar on desktop */
    .mobile-header-bar {
        display: none !important;
    }
}

/* ==========================================================================
   FLOATING ACTION BUTTONS - Fixed Size Icons
   ========================================================================== */

.floating-action-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(13, 148, 136, 0.6);
}

.floating-btn svg {
    width: 24px !important;
    height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.btn-phone {
    background: linear-gradient(135deg, #0a1628 0%, #1a2a3a 100%);
}

.btn-phone:hover {
    background: linear-gradient(135deg, #1a2a3a 0%, #2a3a4a 100%);
}

.btn-form {
    background: linear-gradient(135deg, #0a1628 0%, #1a2a3a 100%);
}

.btn-form:hover {
    background: linear-gradient(135deg, #1a2a3a 0%, #2a3a4a 100%);
}

.btn-top {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.btn-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 768px) {
    .floating-action-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
    }

    .floating-btn svg {
        width: 20px !important;
        height: 20px !important;
        max-width: 20px !important;
        max-height: 20px !important;
    }
}

@media (max-width: 480px) {
    .floating-action-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .floating-btn {
        width: 45px;
        height: 45px;
    }

    .floating-btn svg {
        width: 18px !important;
        height: 18px !important;
        max-width: 18px !important;
        max-height: 18px !important;
    }
}


/* ==========================================================================
   GLOBAL SVG CONSTRAINTS - Prevent Oversizing
   ========================================================================== */

/* Ensure all SVG elements are constrained */
svg {
    max-width: 100%;
    max-height: 100%;
}

/* Specific SVG containers should constrain their content */
.feature-card-icon svg,
.card-icon-wrapper svg,
.floating-btn svg,
.cost-card-icon svg,
.section-icon svg {
    display: block;
}

/* Fix any flex container SVG issues */
.premium-stack-card svg,
.about-feature-card svg,
    width: 88% !important; 
}
.skill-fill[data-percentage="85"] { 
    width: 85% !important; 
}


/* ==========================================================================
   LAYOUT FIXES - Ensure Proper Box Model & Overflow
   ========================================================================== */

.what-we-do-section {
    overflow: hidden;
}

.what-we-do-container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.what-we-do-column {
    box-sizing: border-box;
    overflow: hidden;
}

.what-we-do-image {
    box-sizing: border-box;
}

/* Ensure premium cards don't overflow */
.premium-stacked-cards {
    box-sizing: border-box;
    overflow: hidden;
}

.premium-stack-card {
    box-sizing: border-box;
    max-width: 100%;
}

/* Fix content wrapper sizing */
.what-we-do-content {
    box-sizing: border-box;
    width: 100%;
}

/* Fix list items */
.what-we-do-list {
    box-sizing: border-box;
    width: 100%;
}

.what-we-do-list li {
    box-sizing: border-box;
}


/* Enhanced Skill Bars Visibility */
.skills-progress {
    width: 100%;
    display: block;
    margin-top: 20px;
}

.skill-item {
    width: 100%;
    margin-bottom: 25px;
    display: block;
}

.skill-item:last-child {
    margin-bottom: 0;
}

.skill-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 12px !important;
}

.skill-name {
    font-family: 'Raleway', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
}

.skill-percent {
    font-family: 'Raleway', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #0d9488 !important;
}

/* Shimmer animation for skill bars */
@keyframes shimmerSlide {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}


/* ========================================
   PREMIUM SERVICE CARDS - SERVICES PAGE
   ======================================== */

.premium-service-cards-container {
	padding: 80px 0;
	max-width: 1400px;
	margin: 0 auto;
}

.premium-service-header {
	text-align: center;
	margin-bottom: 60px;
}

.premium-service-header .section-subtitle {
	display: block;
	color: #0d9488;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.premium-service-header .section-title {
	font-size: 42px;
	font-weight: 700;
	color: #0a1628;
	margin-bottom: 20px;
	line-height: 1.2;
}

.premium-service-header .section-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin: 25px 0;
}

.premium-service-header .divider-line {
	width: 80px;
	height: 2px;
	background: linear-gradient(90deg, transparent, #0d9488, transparent);
}

.premium-service-header .divider-icon {
	color: #0d9488;
	flex-shrink: 0;
}

.premium-service-header .section-description {
	font-size: 16px;
	color: #666;
	line-height: 1.7;
	max-width: 700px;
	margin: 0 auto;
}

/* Service Cards Grid */
.premium-service-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	padding: 0 20px;
}

.premium-service-card {
	background: #fff;
	border-radius: 16px;
	padding: 40px 30px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(13, 148, 136, 0.15);
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.premium-service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #0d9488, #14b8a6);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.premium-service-card:hover::before {
	transform: scaleX(1);
}

.premium-service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(13, 148, 136, 0.25);
	border-color: #0d9488;
}

/* Icon Wrapper */
/* Icon Wrapper */
.premium-service-cards-container .card-icon-wrapper {
	margin-bottom: 25px;
	display: flex;
	justify-content: center;
	overflow: hidden;
}

.premium-service-cards-container .card-icon {
	width: 60px !important;
	height: 60px !important;
	background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(13, 148, 136, 0.05)) !important;
	border-radius: 12px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	color: #0d9488 !important;
	transition: all 0.4s ease !important;
	border: 2px solid rgba(13, 148, 136, 0.2) !important;
	position: relative !important;
	opacity: 1 !important;
	transform: none !important;
	bottom: auto !important;
	right: auto !important;
	flex-shrink: 0 !important;
	overflow: hidden !important;
}

.premium-service-card:hover .card-icon {
	background: linear-gradient(135deg, #0d9488, #14b8a6) !important;
	color: #fff !important;
	transform: scale(1.1) rotate(5deg) !important;
	box-shadow: 0 8px 20px rgba(13, 148, 136, 0.3) !important;
}

.premium-service-cards-container .card-icon svg {
	width: 36px !important;
	height: 36px !important;
	max-width: 36px !important;
	max-height: 36px !important;
	transition: all 0.3s ease !important;
	display: block !important;
	flex-shrink: 0 !important;
}

.premium-service-cards-container .premium-service-card:hover .card-icon svg {
	filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3)) !important;
}

/* Card Content */
.premium-service-cards-container .card-title {
	font-size: 24px;
	font-weight: 700;
	color: #0a1628;
	margin-bottom: 15px;
	line-height: 1.3;
	text-align: center;
}

.premium-service-cards-container .card-description {
	font-size: 15px;
	color: #666;
	line-height: 1.7;
	margin-bottom: 25px;
	text-align: center;
	flex-grow: 1;
}

/* Card Features List */
.premium-service-cards-container .card-features {
	list-style: none;
	padding: 0;
	margin: 0 0 25px 0;
	border-top: 1px solid rgba(13, 148, 136, 0.15);
	padding-top: 20px;
}

.premium-service-cards-container .card-features li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: #555;
	margin-bottom: 10px;
	padding-left: 5px;
}

.premium-service-cards-container .card-features li:last-child {
	margin-bottom: 0;
}

.premium-service-cards-container .card-features li svg {
	width: 14px;
	height: 14px;
	color: #0d9488;
	flex-shrink: 0;
}

/* CTA Button */
.premium-service-cards-container .card-cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 24px;
	background: linear-gradient(135deg, #0a1628, #1a2840);
	color: #fff;
	text-decoration: none;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	margin-top: auto;
}

.premium-service-cards-container .card-cta:hover {
	background: transparent;
	color: #0d9488;
	border-color: #0d9488;
	transform: translateX(4px);
}

.premium-service-cards-container .card-cta svg {
	width: 18px;
	height: 18px;
	transition: transform 0.3s ease;
}

.premium-service-cards-container .card-cta:hover svg {
	transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1200px) {
	.premium-service-cards-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.premium-service-cards-container {
		padding: 50px 0;
	}

	.premium-service-header .section-title {
		font-size: 32px;
	}

	.premium-service-cards-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 0 15px;
	}

	.premium-service-card {
		padding: 30px 20px;
	}

	.premium-service-cards-container .card-title {
		font-size: 22px;
	}

	.premium-service-cards-container .card-description {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.premium-service-header .section-title {
		font-size: 28px;
	}

	.premium-service-cards-container .card-icon {
		width: 54px !important;
		height: 54px !important;
	}

	.premium-service-cards-container .card-icon svg {
		width: 32px !important;
		height: 32px !important;
		max-width: 32px !important;
		max-height: 32px !important;
	}
}


/* ========================================
   LOCATION PAGES - HOUSTON DOWNTOWN PREMIUM REDESIGN
   RESPONSIVE FOR PC, IPAD, PHONE
   ======================================== */

/* ========== LOCATION HERO SECTION ========== */
.location-hero-section {
	position: relative;
	min-height: 500px;
	background: linear-gradient(135deg, #0a1628 0%, #1a2840 50%, #2a3850 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 80px 20px;
	overflow: hidden;
}

/* Hero Background Video */
.hero-background-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.location-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(10, 22, 40, 0.85) 0%,
		rgba(10, 22, 40, 0.7) 50%,
		rgba(10, 22, 40, 0.85) 100%
	);
	z-index: 1;
	pointer-events: none;
}

.location-hero-content {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	width: 100%;
	text-align: center;
}

.hero-breadcrumb {
	font-size: 14px;
	color: #0d9488;
	margin-bottom: 20px;
	font-weight: 500;
}

.hero-breadcrumb a {
	color: #0d9488;
	text-decoration: none;
	transition: color 0.3s;
}

.hero-breadcrumb a:hover {
	color: #fff;
}

.hero-breadcrumb .separator {
	margin: 0 10px;
	opacity: 0.5;
}

.hero-breadcrumb .current {
	color: #fff;
}

.location-hero-title {
	font-size: 56px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 15px;
	line-height: 1.2;
}

.location-hero-subtitle {
	font-size: 20px;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 40px;
	font-weight: 300;
}

.hero-stats-bar {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.hero-stat {
	display: flex;
	align-items: center;
	gap: 15px;
	background: rgba(255, 255, 255, 0.1);
	padding: 15px 25px;
	border-radius: 12px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(13, 148, 136, 0.2);
}

.hero-stat .stat-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #0d9488, #14b8a6);
	border-radius: 8px;
	flex-shrink: 0;
}

.hero-stat .stat-icon svg {
	width: 22px;
	height: 22px;
	color: #fff;
}

.hero-stat .stat-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.hero-stat .stat-number {
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	line-height: 1;
	margin-bottom: 4px;
}

.hero-stat .stat-label {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.7);
	font-weight: 500;
	white-space: nowrap;
}

.hero-cta-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.hero-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 32px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.hero-btn svg {
	width: 20px;
	height: 20px;
}

.hero-btn-primary {
	background: linear-gradient(135deg, #0d9488, #14b8a6);
	color: #fff;
}

.hero-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(13, 148, 136, 0.4);
}

.hero-btn-secondary {
	background: transparent;
	color: #fff;
	border-color: #fff;
}

.hero-btn-secondary:hover {
	background: #fff;
	color: #0a1628;
}

/* ========== LOCATION INTRO SECTION ========== */
.location-intro-section {
	padding: 80px 20px;
	background: #fff;
}

.location-intro-container {
	max-width: 1200px;
	margin: 0 auto;
}

.intro-content {
	text-align: center;
}

.section-label {
	display: inline-block;
	color: #0d9488;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.section-title {
	font-size: 42px;
	font-weight: 700;
	color: #0a1628;
	margin-bottom: 20px;
	line-height: 1.2;
}

.section-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin: 25px 0 30px;
}

.divider-line {
	width: 80px;
	height: 2px;
	background: linear-gradient(90deg, transparent, #0d9488, transparent);
}

.divider-icon {
	width: 32px;
	height: 32px;
	color: #0d9488;
	flex-shrink: 0;
}

.intro-description {
	font-size: 16px;
	line-height: 1.8;
	color: #666;
	max-width: 900px;
	margin: 0 auto 50px;
}

.intro-features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-top: 50px;
}

.intro-feature {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 25px;
	background: #f9f9f9;
	border-radius: 12px;
	transition: all 0.3s ease;
}

.intro-feature:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	background: #fff;
}

.intro-feature .feature-icon {
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(13, 148, 136, 0.05));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	border: 2px solid rgba(13, 148, 136, 0.2);
}

.intro-feature .feature-icon svg {
	width: 32px;
	height: 32px;
	color: #0d9488;
}

.intro-feature h4 {
	font-size: 18px;
	font-weight: 700;
	color: #0a1628;
	margin-bottom: 10px;
}

.intro-feature p {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
}

/* ========== LOCATION SERVICES SECTION ========== */
.location-services-section {
	padding: 80px 20px;
	background: linear-gradient(180deg, #f9f9f9 0%, #fff 100%);
}

.services-section-container {
	max-width: 1200px;
	margin: 0 auto;
}

.services-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-description {
	font-size: 16px;
	color: #666;
	max-width: 700px;
	margin: 15px auto 0;
}

.services-cards-grid {
	display: grid !important;
	grid-template-columns: repeat(2, 1fr) !important;
	gap: 40px !important;
	margin-top: 50px !important;
}

.location-service-card {
	background: #fff !important;
	border-radius: 16px !important;
	overflow: hidden !important;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
	border: 1px solid rgba(13, 148, 136, 0.15) !important;
	display: flex !important;
	flex-direction: column !important;
}

.location-service-card:hover {
	transform: translateY(-12px) !important;
	box-shadow: 0 16px 50px rgba(13, 148, 136, 0.25) !important;
	border-color: rgba(13, 148, 136, 0.4) !important;
}

.location-service-card .service-card-image-wrapper {
	position: relative !important;
	height: 220px !important;
	overflow: hidden !important;
	background: #f5f5f5 !important;
	border-radius: 8px 8px 0 0 !important;
}

.location-service-card .service-card-image-wrapper picture {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	position: relative !important;
	z-index: 10 !important;
}

.location-service-card .service-card-image-wrapper img {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
	transform-origin: center center !important;
	position: relative !important;
	z-index: 10 !important;
	visibility: visible !important;
	opacity: 1 !important;
}

.location-service-card:hover .service-card-image-wrapper img {
	transform: scale(1.15) !important;
}

.location-card-overlay {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	background: linear-gradient(135deg, rgba(10, 22, 40, 0.85), rgba(13, 148, 136, 0.7)) !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	opacity: 0 !important;
	visibility: hidden !important;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
	z-index: 20 !important;
	pointer-events: none !important;
}

.location-service-card:hover .location-card-overlay {
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: auto !important;
}

.location-card-overlay svg {
	width: 80px !important;
	height: 80px !important;
	color: #fff !important;
	filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3)) !important;
	animation: iconPulse 2s ease-in-out infinite !important;
}

@keyframes iconPulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.1); }
}

.location-service-card .service-card-content {
	padding: 30px !important;
	background: #ffffff !important;
}

.location-service-card .service-card-title {
	font-size: 24px !important;
	font-weight: 600 !important;
	color: #0a1628 !important;
	margin-bottom: 15px !important;
	background: transparent !important;
	letter-spacing: 0.5px !important;
	font-family: 'Raleway', Arial, sans-serif !important;
	line-height: 1.3 !important;
}

.location-service-card .service-card-description {
	font-size: 15px !important;
	line-height: 1.7 !important;
	color: #666 !important;
	margin-bottom: 20px !important;
	background: transparent !important;
}

.location-service-card .service-card-features {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 0 25px 0 !important;
	border-top: 1px solid rgba(13, 148, 136, 0.15) !important;
	padding-top: 20px !important;
	background: transparent !important;
}

.location-service-card .service-card-features li {
	font-size: 14px !important;
	color: #555 !important;
	padding-left: 20px !important;
	margin-bottom: 10px !important;
	position: relative !important;
	background: transparent !important;
}

.location-service-card .service-card-features li::before {
	content: '✓' !important;
	position: absolute !important;
	left: 0 !important;
	color: #0d9488 !important;
	font-weight: 700 !important;
}

.location-service-card .service-card-link {
	display: inline-flex !important;
	align-items: center !important;
	gap: 8px !important;
	color: #0d9488 !important;
	text-decoration: none !important;
	font-weight: 600 !important;
	font-size: 15px !important;
	transition: all 0.3s ease !important;
	background: transparent !important;
}

.location-service-card .service-card-link:hover {
	gap: 12px !important;
	color: #0a1628 !important;
}

.location-service-card .service-card-link svg {
	width: 18px !important;
	height: 18px !important;
}

/* ========== WHY CHOOSE US SECTION ========== */
.location-why-section {
	padding: 80px 20px;
	background: #0a1628;
	color: #fff;
}

.why-section-container {
	max-width: 1200px;
	margin: 0 auto;
}

.why-content-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.why-left .section-label,
.why-left .section-title {
	color: #fff;
	text-align: left;
}

.why-left .section-label {
	color: #0d9488;
}

.why-description {
	font-size: 16px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 30px;
}

.why-stats-row {
	display: flex;
	gap: 30px;
	margin-bottom: 40px;
}

.why-stat {
	text-align: center;
}

.why-stat .stat-value {
	display: block;
	font-size: 36px;
	font-weight: 700;
	color: #0d9488;
	margin-bottom: 5px;
}

.why-stat .stat-label {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
}

.why-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 32px;
	background: linear-gradient(135deg, #0d9488, #14b8a6);
	color: #fff;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.why-cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(13, 148, 136, 0.4);
}

.why-cta-btn svg {
	width: 18px;
	height: 18px;
}

.why-features-list {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.why-feature-item {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	padding: 25px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	border-left: 3px solid #0d9488;
	transition: all 0.3s ease;
}

.why-feature-item:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateX(5px);
}

.why-feature-item .feature-number {
	font-size: 32px;
	font-weight: 700;
	color: #0d9488;
	line-height: 1;
	flex-shrink: 0;
}

.why-feature-item h3,
.why-feature-item h4 {
	font-size: 18px !important;
	font-weight: 700 !important;
	color: #fff !important;
	margin-bottom: 8px !important;
	background: transparent !important;
}

.why-feature-item p {
	font-size: 14px !important;
	color: rgba(255, 255, 255, 0.7) !important;
	line-height: 1.6 !important;
	background: transparent !important;
}

/* ========== REVIEWS SECTION ========== */
.location-reviews-section {
	padding: 80px 20px;
	background: #fff;
}

.reviews-section-container {
	max-width: 1200px;
	margin: 0 auto;
}

.reviews-header {
	text-align: center;
	margin-bottom: 50px;
}

.trustindex-widget {
	max-width: 1000px;
	margin: 0 auto;
}

/* ========== MAP SECTION ========== */
.location-map-section {
	padding: 80px 20px;
	background: #f9f9f9;
}

.map-section-container {
	max-width: 1200px;
	margin: 0 auto;
}

.map-header {
	text-align: center;
	margin-bottom: 40px;
}

.service-area-badges {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-bottom: 40px;
}

.area-badge {
	display: inline-block;
	padding: 10px 20px;
	background: #fff;
	color: #0a1628;
	text-decoration: none;
	border-radius: 25px;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease;
	border: 2px solid #ddd;
}

.area-badge:hover,
.area-badge.active {
	background: linear-gradient(135deg, #0d9488, #14b8a6);
	color: #fff;
	border-color: #0d9488;
	transform: translateY(-2px);
}

.map-wrapper {
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	margin-bottom: 40px;
}

.map-cta {
	text-align: center;
}

.map-cta .cta-text {
	font-size: 24px;
	font-weight: 600;
	color: #0a1628;
	margin-bottom: 25px;
}

.cta-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.cta-btn {
	display: inline-block;
	padding: 16px 32px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.cta-primary {
	background: linear-gradient(135deg, #0d9488, #14b8a6);
	color: #fff;
}

.cta-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(13, 148, 136, 0.4);
}

.cta-secondary {
	background: transparent;
	color: #0a1628;
	border: 2px solid #0a1628;
}

.cta-secondary:hover {
	background: #0a1628;
	color: #fff;
}

/* ========================================
   FOOTER RESPONSIVE LAYOUT
   ======================================== */
.row-4-4 {
	display: flex !important;
	flex-wrap: wrap !important;
	justify-content: space-between !important;
	gap: 30px !important;
}

.row-4-4 .column-1-4 {
	flex: 1 1 calc(25% - 25px) !important;
	min-width: 220px !important;
	box-sizing: border-box !important;
}

/* ========================================
   FOOTER TRUSTINDEX WIDGET CONTAINMENT
   ======================================== */
footer .column-1-4 > div[style*="background: #fff"] {
	max-width: 100% !important;
	overflow: hidden !important;
	box-sizing: border-box !important;
}

footer .trustindex-widget,
footer .trustindex-widget * {
	max-width: 100% !important;
	overflow: hidden !important;
	box-sizing: border-box !important;
}

footer .trustindex-widget iframe,
footer .trustindex-widget > div,
footer .trustindex-widget img {
	max-width: 100% !important;
	width: 100% !important;
	height: auto !important;
	box-sizing: border-box !important;
}

/* ========================================
   RESPONSIVE - TABLET (iPAD)
   ======================================== */
@media (max-width: 1024px) {
	.location-hero-title {
		font-size: 48px;
	}
	
	.hero-stats-bar {
		gap: 20px;
	}
	
	.hero-stat {
		padding: 12px 20px;
	}
	
	.intro-features-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
	
	.services-cards-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
	
	.why-content-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.why-left {
		text-align: center;
	}
	
	.why-left .section-label,
	.why-left .section-title {
		text-align: center;
	}
	
	.why-stats-row {
		justify-content: center;
	}

	/* Footer Tablet Layout - 2 columns */
	.row-4-4 .column-1-4 {
		flex: 1 1 calc(50% - 15px) !important;
		min-width: 280px !important;
		margin-bottom: 30px !important;
	}
}

/* ========================================
   RESPONSIVE - MOBILE (PHONE)
   ======================================== */
@media (max-width: 768px) {
	/* Keep video visible on mobile */
	.hero-background-video {
		display: block;
		object-fit: cover;
	}

	.location-hero-section {
		min-height: auto;
		padding: 60px 20px;
	}

	.location-hero-title {
		font-size: 36px;
	}

	.location-hero-subtitle {
		font-size: 16px;
		margin-bottom: 30px;
	}
	
	.hero-stats-bar {
		flex-direction: column;
		gap: 15px;
		margin-bottom: 30px;
		align-items: center;
	}

	.hero-stat {
		width: 100%;
		max-width: 320px;
		justify-content: flex-start;
	}

	.hero-stat .stat-content {
		align-items: flex-start !important;
		text-align: left !important;
	}
	
	.hero-cta-buttons {
		flex-direction: column;
		width: 100%;
	}
	
	.hero-btn {
		width: 100%;
		justify-content: center;
	}
	
	.location-intro-section,
	.location-services-section,
	.location-why-section,
	.location-reviews-section,
	.location-map-section {
		padding: 50px 10px;
	}
	
	.section-title {
		font-size: 32px;
	}
	
	.intro-features-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.services-cards-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.service-card-image-wrapper {
		height: 200px;
	}
	
	.service-card-content {
		padding: 30px 25px;
	}
	
	.why-stats-row {
		flex-direction: column;
		gap: 20px;
	}
	
	.why-feature-item {
		flex-direction: column;
		text-align: center;
	}
	
	.why-feature-item .feature-number {
		font-size: 28px;
	}
	
	.service-area-badges {
		gap: 8px;
	}
	
	.area-badge {
		font-size: 13px;
		padding: 8px 16px;
	}
	
	.map-wrapper iframe {
		height: 300px !important;
	}
	
	.cta-buttons {
		flex-direction: column;
		width: 100%;
	}
	
	.cta-btn {
		width: 100%;
		text-align: center;
	}
	
	.map-cta .cta-text {
		font-size: 20px;
	}

	/* Footer Mobile Optimization */
	footer .column-1-4 {
		width: 100% !important;
		float: none !important;
		margin-right: 0 !important;
		margin-bottom: 35px !important;
		padding-left: 20px !important;
		padding-right: 20px !important;
	}

	footer .column-1-4:nth-child(2n) {
		clear: none !important;
	}

	footer .column-1-4 h3 {
		font-size: 18px !important;
		margin-bottom: 20px !important;
	}
}

@media (max-width: 480px) {
	.location-hero-title {
		font-size: 28px;
	}
	
	.section-title {
		font-size: 26px;
	}
	
	.hero-stat .stat-number {
		font-size: 20px;
	}
	
	.hero-stat .stat-label {
		font-size: 11px;
	}
	
	.service-card-title {
		font-size: 26px !important;
		font-weight: 600 !important;
		letter-spacing: 0.5px !important;
		line-height: 1.3 !important;
	}
	
	.why-stat .stat-value {
		font-size: 28px;
	}

	/* Footer Mobile Optimization */
	footer .column-1-4 {
		width: 100% !important;
		float: none !important;
		margin-right: 0 !important;
		margin-bottom: 35px !important;
		padding-left: 20px !important;
		padding-right: 20px !important;
	}

	footer .column-1-4:nth-child(2n) {
		clear: none !important;
	}

	footer .column-1-4 h3 {
		font-size: 18px !important;
		margin-bottom: 20px !important;
	}

	footer .column-1-4 a {
		font-size: 14px !important;
	}

	footer .column-1-4 small {
		font-size: 12px !important;
	}

	/* Footer Trustindex Widget - Keep it contained */
	footer .trustindex-widget {
		max-width: 100% !important;
		overflow: hidden !important;
	}

	footer .trustindex-widget iframe {
		max-width: 100% !important;
		width: 100% !important;
	}
}


/* ==========================================================================
   FAQ SECTION STYLING
   ========================================================================== */

.location-faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header .section-label {
    display: inline-block;
    color: #f5c11e;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.faq-header .section-title {
    font-size: 36px;
    color: #0a1628;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Raleway', Arial, sans-serif;
}

.faq-header .section-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.faq-accordion {
    margin-bottom: 50px;
}

.faq-item {
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: #0a1628;
    font-family: 'Raleway', Arial, sans-serif;
    line-height: 1.4;
    padding-right: 20px;
}

.faq-icon {
    flex-shrink: 0;
    stroke: #f5c11e;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.faq-cta {
    text-align: center;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.faq-cta .cta-text {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    margin-bottom: 25px;
}

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

.faq-cta .cta-btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
}

.faq-cta .cta-primary {
    background: #f5c11e;
    color: #0a1628;
}

.faq-cta .cta-primary:hover {
    background: #e5b10e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 193, 30, 0.3);
}

.faq-cta .cta-secondary {
    background: #0a1628;
    color: #ffffff;
}

.faq-cta .cta-secondary:hover {
    background: #1a2638;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 22, 40, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .location-faq-section {
        padding: 50px 0;
    }

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

    .faq-question {
        padding: 20px;
    }

    .faq-question-text {
        font-size: 16px;
    }

    .faq-question[aria-expanded="true"] + .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-answer p {
        font-size: 15px;
    }

    .faq-cta {
        padding: 30px 20px;
    }

    .faq-cta .cta-text {
        font-size: 16px;
    }

    .faq-cta .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .faq-cta .cta-btn {
        width: 100%;
        text-align: center;
    }
}
