
/* Contact page styles removed - using default theme styles only */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

* {
    -webkit-tap-highlight-color: transparent;
}

/* Performance optimizations */
.hero__bg,
.navbar,
.service-card,
.testimonial-card,
.blog-card,
.value-card,
.gallery__item {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Staggered entrance animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Premium hover effects */
.premium-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Enhanced interactive states */
button,
.btn,
a[href],
.service-card,
.testimonial-card,
.blog-card,
.navbar__link {
    /* cursor: pointer; */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus states for better accessibility */
button:focus-visible,
.btn:focus-visible,
a[href]:focus-visible,
.navbar__toggle:focus-visible {
    /* outline: 2px solid #4A90E2; */
    outline: none;
    outline-offset: 3px;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.3);
}

/* ===================================
   COMPREHENSIVE TABLET RESPONSIVE STYLES
   ================================= */

/* Tablet breakpoint: 768px - 1024px */
@media (min-width: 768px) and (max-width: 1199px) {

    /* ===== HERO SECTION ===== */
    .hero {
        /* height: 800px; */
        padding: 0;
    }

    .hero .container {
        padding-top: 90px;
        padding-bottom: 90px;
        padding-left: 40px;
        padding-right: 40px;
        justify-content: center;
    }

    .hero__title {
        /* font-size: 60px; */
        /* line-height: 70px; */
        text-align: center;
        font-size: 40px;
    }

    .hero__copy {
        font-size: 20px;
        /* max-width: 500px; */
        text-align: center;
        /* margin: 0 auto 30px; */
    }

    .hero__actions {
        text-align: center;
        margin: 30px 0 0 0;
    }

    .quick-actions__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        max-width: 700px;
        margin: 60px auto 0;
    }

    .quick-action-card {
        /* padding: 20px 15px; */
    }

    .quick-action-card__icon {
        width: 55px;
        height: 55px;
        margin-bottom: 12px;
    }

    .quick-action-card__title {
        font-size: 14px;
        padding: 0px 10px;
    }

    /* ===== NAVIGATION ===== */
    .navbar__container {
        padding: 0 30px;
    }

    #site-header .navbar-nav > li > a {
        padding: 12px 16px;
        font-size: 15px;
    }

    /* ===== SERVICES SECTION ===== */
    .services {
        padding: 80px 0;
    }

    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        /* padding: 0 30px; */
    }

    .service-card {
        /* height: 280px; */
    }

    .service-card__overlay {
        padding: 30px 20px;
    }

    .service-card__benefits li {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .service-card__title {
        font-size: 16px;
    }

    /* ===== SPLIT SECTIONS ===== */
    .split-row {
        /* padding: 70px 0; */
        height: 700px;
    }

    .split-content {
        gap: 50px;
        /* padding: 0 30px; */
    }
    .split-text {
        text-align: center;
    }
    .split-desc {
        font-size: 15px;
    }

    .split-image {
        /* height: 400px; */
    }

    /* ===== STEPS SECTION ===== */
    .steps {
        padding: 80px 0;
    }

    .steps__grid {
        /* grid-template-columns: repeat(3, 1fr); */
        gap: 30px;
        /* padding: 0 30px; */
        display: flex;
        flex-wrap: wrap;
    }

    .step-card {
        /* padding: 30px 20px; */
    }

    .step-card__title {
        font-size: 1.1rem;
        margin-bottom: 15px;
        margin-top: 15px;
    }

    .step-card__desc {
        font-size: 14px;
    }

    .steps__cta {
        /* margin-top: 50px; */
    }

    /* ===== VALUES SECTION ===== */
    .values-split {
        padding: 80px 0;
    }

    .values-split .container {
        /* padding: 0 30px; */
        gap: 40px;
    }

    .values-split__content{
        text-align: center;
    }

    .values-split__desc{
        margin: auto;
    }

    .values-split__title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .values-split__desc {
        font-size: 15px;
    }

    .values-split__right {
        gap: 20px;
    }

    .values-phone {
        width: 200px;
        height: auto;
    }

    .value-card {
        padding: 20px;
        margin-bottom: 15px;
    }

    .value-card__title {
        font-size: 1rem;
    }

    .value-card__desc {
        font-size: 13px;
    }

    /* ===== TESTIMONIALS SECTION ===== */
    .testimonials {
        padding: 80px 0;
    }

    .testimonials__swiper {
        /* padding: 0 30px; */
    }

    .testimonial-card {
        padding: 30px;
        gap: 25px;
    }

    .testimonial-card__content {
        padding: 0;
    }

    .testimonial-card__quote h3 {
        /* font-size: 1.3rem; */
    }

    .testimonial-card__text {
        font-size: 15px;
    }

    .testimonial-card__name {
        /* font-size: 1.1rem; */
    }

    .testimonials__nav {
        gap: 15px;
    }

    /* ===== BLOG SECTION ===== */
    .blog {
        padding: 80px 0;
    }

    .blog__container {
        /* padding: 0 30px; */
    }

    .blog__title {
        font-size: 2rem;
        /* margin-bottom: 40px; */
    }

    .blog-card {
        /* height: 350px; */
    }

    .blog-card__content {
        /* padding: 25px; */
    }

    .blog-card__title {
        font-size: 1.1rem;
    }

    .blog-card__date {
        font-size: 13px;
    }

    /* ===== CTA SECTION ===== */
    .cta-band {
        padding: 60px 0;
    }

    .cta-band__content {
        padding: 0 30px;
        text-align: center;
    }

    .cta-band__title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .cta-band__subtitle {
        font-size: 16px;
        margin-bottom: 30px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-band__btn {
        padding: 14px 35px;
        font-size: 16px;
    }

    /* ===== GALLERY SECTION ===== */
    .gallery {
        padding: 80px 0;
    }

    .gallery__header {
        /* padding: 0 30px; */
        margin-bottom: 50px;
    }

    .gallery__title {
        font-size: 2rem;
    }

    .gallery__subtitle {
        font-size: 15px;
    }

    .gallery__item {
        width: 280px;
        height: 200px;
        /* margin-right: 20px; */
    }

    .gallery__row {
        /* margin-bottom: 25px; */
    }

    /* ===== FOOTER ===== */
    .footer__top {
        /* padding: 50px 0 30px 0; */
    }

    .footer__cols {
        /* grid-template-columns: 2fr 1fr 1fr 1fr; */
        /* gap: 50px; */
        /* padding: 0 30px; */
    }

    .footer__logo {
        /* height: 80px; */
    }

    .footer__title {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .footer__tagline,
    .footer__contact-item,
    .footer__list a {
        font-size: 14px;
    }

    .footer__bottom {
        /* padding: 15px 0; */
    }

    .footer__bottom-content {
        /* padding: 0 30px; */
        flex-direction: column;
        /* gap: 15px; */
        text-align: center;
    }

    /* ===== CONTACT FORM 7 ===== */
    .wpcf7-form {
        gap: 18px;
    }

    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="email"],
    .wpcf7-form input[type="tel"],
    .wpcf7-form input[type="url"],
    .wpcf7-form input[type="number"],
    .wpcf7-form select,
    .wpcf7-form textarea {
        padding: 14px 18px;
        font-size: 15px;
    }

    .wpcf7-form input[type="submit"] {
        padding: 15px 35px;
        font-size: 17px;
    }

    .wpcf7-form label {
        font-size: 15px;
    }

    .wpcf7-form .form-row {
        gap: 18px;
    }

    /* ===== CONTACT PAGE SPECIFIC ===== */
    .contact-section {
        padding: 70px 0;
    }

    .contact-section .container {
        /* padding: 0 30px; */
    }

    .page-header {
        margin-bottom: 50px;
    }

    .page-title {
        /* font-size: 2.2rem; */
    }

    .page-subtitle {
        font-size: 16px;
    }

    .contact-content {
        gap: 50px;
        margin-top: 30px;
    }

    .contact-info-section {
        /* padding: 25px 20px; */
    }

    .contact-info-title {
        /* font-size: 1.5rem; */
    }

    /* ===== BUTTONS AND INTERACTIVE ELEMENTS ===== */
    .btn {
        padding: 12px 25px;
        font-size: 15px;
    }

    .btn-primary,
    .hero__btn,
    .values__btn,
    .cta__btn {
        padding: 14px 32px;
        font-size: 15px;
    }

    /* ===== SECTION HEADERS ===== */
    .section {
        padding: 62px 0 40px;
    }

    .section__header {
        margin-bottom: 3rem;
        padding: 0 30px;
    }

    .section__title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .section__subtext {
        font-size: 15px;
        max-width: 500px;
    }

    /* ===== TOUCH OPTIMIZATIONS ===== */
    button,
    .btn,
    a[href],
    .service-card,
    .testimonial-card,
    .blog-card {
        min-height: 44px; /* Apple's recommended touch target size */
    }

    /* Larger touch targets for navigation */
    .navbar__link{
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    /* ===== HOVER STATES ADJUSTMENT ===== */
    /* Reduce hover intensity on tablets for better touch experience */
    .service-card:hover,
    .testimonial-card:hover,
    .blog-card:hover {
        transform: translateY(-3px);
    }

    .premium-hover:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }
}

@media (max-width: 991px) {
    .section.gallery {
        padding: 82px 0 90px;
    }
}

/* ===================================
   IPAD AIR SPECIFIC RESPONSIVE STYLES
   ================================= */

@media (max-width: 1199px){
    .split-image{
        height: 100%;
    }
    
    .step-card,
    .steps__cta{
        width: calc( ( 100% / 3 ) - ( 60px / 3 ) );
    }
    
    .steps__cta{
        display: flex;
        flex-direction: column;
        justify-content: center;

    }
    
    .steps__cta .btn-primary{
        max-width: 100%;
    }

    .testimonial-card__quote h3{
        font-size: 25px;
    }

    .hero__actions{
        margin-top: 50px;
    }
}

@media (max-width: 991px){
    .step-card,
    .steps__cta {
        width: calc( 50% - ( 30px / 2 ) );
    }

    .gallery__row{
        /* margin-bottom: 15px; */
    }

    .gallery__row:last-child{
        margin-bottom: 0;
    }
}

@media (max-width: 767px){
    .step-card, .steps__cta {
        width: calc( 100% );
    }

    .steps .section__header{
        margin-bottom: 30px;
    }

    .steps__cta{
        flex-direction: column-reverse;
    }

    .hero__actions {
        margin-top: 20px;
    }

    .gallery__row {
        margin-bottom: 4px;
    }

    .section.gallery {
        padding: 62px 0 70px;
    }
    .split-title {
        font-size: 32px;
    }
}

/* iPad Mini Portrait*/
@media only screen and (width:768px) and (height:1024px) {
    .split-text .hero__actions {
        text-align: center;
    }
    .blog{
        padding: 80px 0px 0px 0px;
    }
}
/* iPad Mini Landscape*/
@media only screen and (width: 1024px) and (height: 768px) {
  .split-photo {
        height: 480px;
        padding-top: 50px;
    }
    .blog{
        padding: 80px 0px 0px 0px;
    }
}


/* iPad Air Portrait: 820px - 834px */
@media (min-width: 820px) and (max-width: 834px) and (orientation: portrait) {

    /* ===== HERO SECTION ===== */
    .hero {
        height: 900px;
    }
    
    .hero .container {
        padding-top: 180px;
        padding-left: 50px;
        padding-right: 50px;
    }

    .hero__title {
        /* font-size: 64px; */
        /* line-height: 72px; */
        margin-bottom: 25px;
    }

    .hero__copy {
        font-size: 21px;
        /* max-width: 550px; */
        margin-bottom: 35px;
    }

    .quick-actions__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
        max-width: 750px;
        margin: 45px auto 0;
    }

    .quick-action-card__icon {
        width: 60px;
        height: 60px;
    }

    .quick-action-card__title {
        font-size: 15px;
    }

    /* ===== SERVICES SECTION ===== */
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
        /* padding: 0 40px; */
    }

    .service-card {
        /* height: 320px; */
    }

    .service-card__benefits li {
        font-size: 17px;
    }

    /* ===== SPLIT SECTIONS ===== */
    .split-content {
        gap: 60px;
        padding: 0 40px;
    }

    .split-title {
        font-size: 36px;
    }

    .split-desc {
        font-size: 16px;
    }

    .split-image {
        height: 450px;
    }

    /* ===== STEPS SECTION ===== */
    .steps__grid {
        grid-template-columns: repeat(3, 1fr);
        /* gap: 35px; */
        /* padding: 0 40px; */
    }

    /* ===== VALUES SECTION ===== */
    .values-split .container {
        /* padding: 0 40px; */
        gap: 50px;
    }

    .values-phone {
        width: 220px;
    }

    /* ===== TESTIMONIALS ===== */
    .testimonials__swiper {
        padding: 0 40px;
    }

    .testimonial-card {
        padding: 35px;
        gap: 30px;
    }

    /* ===== FOOTER ===== */
    .footer__cols {
        /* padding: 0 40px; */
        gap: 60px;
    }

    /* ===== CONTACT FORM ===== */
    .wpcf7-form {
        padding: 0 40px;
    }
    .blog{
        padding: 80px 0px 0px 0px;
    }
 }
 /* iPad Air lanscape*/
@media (min-width: 1180px) and (max-height: 820px) and (orientation: landscape) {
    .blog{
        padding: 80px 0px 0px 0px;
    }
    .breadcrumb-nav{
        display: none;
    }
    .split-text {
    text-align: left;
}
    .split-row{
        height: 480px;
    }}
 /* iPad Pro Protrait*/
@media (width: 1024px) and (height: 1366px) and (orientation: portrait) {
    .split-photo {
        height: 480px;
        padding-top: 40px;
    }
}
    .footer__list a,
    a.footer__contact-link,
    .footer__legal a,
    a.footer__domedia-link,
    .blog-sidebar .btn-search,
    .navbar-default .navbar-brand{
        min-height: auto;
    }

/* ============================
   THANK YOU PAGE STYLES
============================ */
.pg-temp-thank-you {
    padding: 0;
    margin: 0;
}

/* Fullscreen Hero */
.thank-you-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center; /* vertical center */
    justify-content: center; /* horizontal center */
    text-align: center;
    padding: 40px 20px;
}

/* Background */
.thank-you-hero__bg {
    position: absolute;
    inset: 0;
    background: url('/path/to/your-image.jpg') center/cover no-repeat;
    opacity: 0.25;
    z-index: -1;
}

/* Inner Content */
.thank-you-hero__inner {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
}

/* Logo */
.thank-you-hero__logo img {
    width: auto;
    height: auto;
    margin-bottom: 25px;
    padding-left: 170px;
}
@media (max-width: 480px) {
    .thank-you-hero__logo img {
        padding-left: 80px;
    }
   .thank-you-hero__logo img {
    width: auto;
    height: 145px;
}


}

@media(min-width: 769px) and (max-width: 1024px){
    .thank-you-hero__logo img {
            width: auto;
            height: auto;
            margin-bottom: 25px;
            padding-left: 170px;
    }
}
/* Title */
.thank-you-hero__title {
    font-size: 58px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #1a3d60;
    margin-bottom: 15px;
}

/* Subtitle */
.thank-you-hero__subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #1a3d60;
    margin-bottom: 35px;
}

/* Button */
.thank-you-hero__btn {
    padding: 14px 32px;
    background-color: #1a3d60;
    color: #fff;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    transition: all .3s ease;
}

.thank-you-hero__btn:hover {
    background-color: #FD5517;
    box-shadow: none;
}

/* ============================
   MOBILE RESPONSIVE
============================ */
@media (max-width: 768px) {

    .thank-you-hero__title {
        font-size: 40px;
        letter-spacing: 1px;
    }

    .thank-you-hero__subtitle {
        font-size: 16px;
    }

    .thank-you-hero__btn {
        font-size: 15px;
        padding: 12px 28px;
    }
}
@media (width:1180px) and (height:820px) and (orientation:landscape){
    .breadcrumb-nav{
        display: none;
    }
    .cst-header__title {
    font-size: 44px;
    padding-top: 26px;
    }
    .cst-header__subtitle {
        font-size: 16px;
    }
}}