/* Reset and Base Styles */
:root {
    --primary-blue: #004271;
    --light-blue: #e4f9ff;
    --dark-text: #000000;
    --light-text: #ffffff;
    --grey-text: #707070;
    --light-grey: #f8f9fa;
    --border-grey: #d9d9d9;
    --playfair-display: "Playfair Display", serif;
    --dm-sans: "DM Sans", sans-serif;
    --inter: "Inter", sans-serif;
    --roboto: "Roboto", sans-serif;
    --source-sans: "Source Sans 3", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "DM Sans", sans-serif;
}
.dm-semibold-600-16-28-1 {
    font-family: "DM Sans", sans-serif;
    font-weight: 600; /* SemiBold */
    font-size: 16px; /* Set your desired size */
    line-height: 28px; /* Or your value */
    letter-spacing: 1px;
    vertical-align: middle;
    color: #004271;
}
.dm-semibold-400-16-28-0 {
    font-family: "DM Sans", sans-serif;
    font-weight: 400; /* SemiBold */
    font-size: 16px; /* Set your desired size */
    line-height: 28px; /* Or your value */
    letter-spacing: 0px;
    vertical-align: middle;
    color: #414141;
}

body {
    font-family: var(--dm-sans);
    background-color: var(--light-text);
    color: var(--dark-text);
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: var(--primary-blue);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    top: 50px;
    height: 78px;
    max-width: 1156px;
    padding: 0 20px;
    margin: 0 auto;
    background-color: var(--light-text);
    border-radius: 100px;
    /* margin-top: 20px; */
    box-shadow: 0px 4px 4px rgba(228, 249, 255, 1);
}

.logo img {
    width: 158px;
    height: 51px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    margin-bottom: 0px;
}

.nav-menu li a {
    font-size: 18px;
}

.nav-link {
    text-decoration: none;
    color: #535353;
    font-family: var(--dm-sans);
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link.active {
    font-weight: 600;
    color: var(--primary-blue);
}
.nav-link.active,
.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 3px;
    background-color: var(--primary-blue);
    border-radius: 10px;
}

.search-icon {
    cursor: pointer;
}

/* Hamburger Menu */
.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #004271;
    transition: all 0.3s ease;
}

/* Tablet Menu */
@media (min-width: 769px) and (max-width: 991px) {
    .nav-menu {
        gap: 20px;
        font-size: 16px;
    }

    .navbar-collapse {
        display: flex !important;
    }

    .navbar-toggler {
        display: none;
    }

    .logo img {
        width: 140px;
        height: 45px;
    }

    .nav-container {
        padding: 0 15px;
        border-radius: 50px;
    }
}

/* Mobile Menu */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        position: absolute;
        top: 61px; /* 70px header + 40px gap */
        left: 15px;
        right: 15px;
        background-color: #fff;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        display: none; /* Hidden by default on mobile */
        opacity:0.9;
    }

    .navbar-collapse.show .nav-menu {
        display: flex; /* Show when collapse is expanded */
    }

    .nav-menu li {
        text-align: center;
        margin-bottom: 15px;
    }

    .nav-menu li:last-child {
        margin-bottom: 0;
    }

    .navbar-toggler {
        display: flex;
    }

    .logo img {
        width: 120px;
        height: 40px;
    }
}

@media (min-width: 992px) {
    .navbar-collapse {
        display: flex !important;
    }
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 180px 142px 35px 142px;
    background-color: var(--light-text);
    max-width: 1440px;
    margin: 0 auto;
}

.hero-content {
    max-width: 602px;
}

.hero-title {
    font-family: var(--playfair-display);
    font-size: 58px;
    font-weight: 500;
    line-height: 1.33;
    letter-spacing: 0.02em;
    color: var(--dark-text);
    margin-bottom: 40px;
}

.animated-services {
    color: #004271;
    display: inline-block;
    font-family: var(--playfair-display);
}
.animated-services span {
    font-family: var(--playfair-display);
}

/* Letter-by-letter animation for SERVICES */
/* First S is static (always visible) */
.animated-services span:nth-child(1) {
    display: inline-block;
    opacity: 1;
    font-weight: bold;
}

/* Other letters animate */
.animated-services span:nth-child(n + 2) {
    display: inline-block;
    opacity: 0;
    animation: fadeIn 2s ease-in-out infinite;
    font-weight: bold;
}

.animated-services span:nth-child(2) {
    animation-delay: 0.2s;
}
.animated-services span:nth-child(3) {
    animation-delay: 0.4s;
}
.animated-services span:nth-child(4) {
    animation-delay: 0.6s;
}
.animated-services span:nth-child(5) {
    animation-delay: 0.8s;
}
.animated-services span:nth-child(6) {
    animation-delay: 1s;
}
.animated-services span:nth-child(7) {
    animation-delay: 1.2s;
}
.animated-services span:nth-child(8) {
    animation-delay: 1.4s;
}

@keyframes fadeIn {
    0%,
    100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}
.icon-box {
    width: 80px;
    height: 79px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e4f9ff;
}

.icon-box img {
    width: 40px;
    height: 40px;
}

.hero-description {
    font-family: var(--roboto);
    font-size: 16px;
    line-height: 1.17;
    color: var(--grey-text);
    margin-bottom: 40px;
    max-width: 568px;
}

.download-btn {
    background: var(--primary-blue);
    color: var(--light-blue);
    font-family: var(--inter);
    font-size: 16px;
    font-weight: 600;
    padding: 16px 29px;
    border: none;
    border-radius: 56px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.rating-container {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-text {
    display: flex;
    gap: 10px;
    font-family: var(--dm-sans);
    font-size: 16px;
    font-weight: 500;
    color: rgba(87, 85, 85, 0.7);
}

/*
.hero-image-container {
    position: relative;
    width: 632px;
    height: 667px;
}

.hero-image-container img {
    position: absolute;
}

.hero-bg-element1 {
    top: 0;
    left: 0;
    opacity: 0.36;
}

.hero-bg-element2 {
    bottom: 0;
    right: 0;
    opacity: 0.17;
}
    */
.hero-image-container {
    width: 100%;
    height: 650px;
    position: relative;
    margin: 0 auto;
}

/* Common styling for all images */
.hero-image-container .img {
    position: absolute;
    border-radius: 50%;
    object-fit: cover;
}

/* Big main circle (top right) */
.img-top-right {
    width: 320px;
    height: 320px;
    top: 20px;
    right: -114px;
    animation: float1 4s ease-in-out infinite;
}

/* Medium circle (top left) */
.img-top-left {
    width: 150px;
    height: 150px;
    top: 145px;
    left: 60px;
    animation: float2 4s ease-in-out infinite;
}

/* Large bottom-left circle */
.img-bottom-left {
    width: 270px;
    height: 268px;
    bottom: 54px;
    left: 12px;
    animation: float1 4s ease-in-out infinite;
}

/* Small bottom-right circle */
.img-bottom-right {
    width: 150px;
    height: 150px;
    bottom: 80px;
    right: -30px;
    animation: float2 4s ease-in-out infinite;
}

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

@keyframes float2 {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(15px);
    }
}

.hero-main-image {
    width: 508px;
    height: 556px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* why qwikhom  */
/* Image Layout */
.main-img {
    border-radius: 12px;
    width: 296px;
    height: 360.58px;
    top: 30px;
    position: relative;
}

.overlay-img {
    width: 296px;
    height: 360.58px;
    position: absolute;
    right: 57px;
    bottom: 184px;
    border-radius: 12px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

/* Feature Cards */
.feature-box {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    background: #fff;
    width: 489px;
    height: 99.88px;
}
.feature-box h5 {
    color: #004271;
}

.icon-box i {
    color: #1768ff;
}

/* How It Works Flow Section */
.how-it-works-flow {
    padding: 100px 0;
}

.how-it-works-content {
    display: flex;
    align-items: center;
    gap: 100px;
}

.how-it-works-image {
    flex-shrink: 0;
}

.how-it-works-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

.how-it-works-steps::before {
    content: "";
    position: absolute;
    left: 11px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background-color: #85bde5;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
}

.step-number-container {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: var(--light-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    z-index: 1;
}

.step-text h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.step-text p {
    font-size: 14px;
    color: var(--grey-text);
    line-height: 1.7;
}

/* App Features Section */
.app-features {
    background-color: var(--primary-blue);
    padding: 80px 0;
    border-radius: 40px;
    margin: 0 99px;
    height: 334px;
}

.app-features-container {
    display: flex;
    align-items: center;
    justify-content: center;
    /* gap: 60px; */
    color: var(--light-text);
    /* max-width: 1243px;
    margin: 0 auto; */
}

.app-features-images {
    position: relative;
    /* width: 50%; */
}

.app-feature-main-img {
    width: 240px;
    /*
    height: 293px;
    border-radius: 60px 60px 0 0; */
}

.app-feature-secondary-img {
    width: 207px;
    bottom: 115px;
    position: absolute;
    /*

    right: 50px;
    width: 207px;
    height: 219px;
    border-radius: 0 0 30px 30px; */
}

.app-features-text {
    width: 80%;
}

.features-title {
    font-family: var(--dm-sans);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.features-description {
    font-family: var(--dm-sans);
    font-size: 16px;
    font-weight: 400;
    /* line-height: 1.875;
    margin-bottom: 30px; */
}

/* .app-download-buttons {
    display: flex;
    gap: 20px;
} */

.app-download-buttons img {
    cursor: pointer;
    width: 183px;
    /* height: 55px; */
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--light-text);
}

.section-title {
    font-family: var(--dm-sans);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-family: var(--dm-sans);
    font-size: 18px;
    font-weight: 400;
    color: var(--grey-text);
    text-align: center;
    margin-bottom: 80px;
    max-width: 557px;
    margin-left: auto;
    margin-right: auto;
}
/*
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    height: 306px;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        #000000 100%
    );
    border-radius: 10px;
}

.service-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    font-family: var(--dm-sans);
    font-size: 20px;
    font-weight: 500;
    color: var(--light-text);
} */

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--light-text);
}

.how-it-works-section {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-subtitle {
    font-family: var(--dm-sans);
    font-size: 18px;
    font-weight: 400;
    color: var(--grey-text);
    margin-bottom: 20px;
}

.how-it-works-title {
    font-family: var(--dm-sans);
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-blue);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.pricing-card {
    background: var(--primary-blue);
    color: var(--light-text);
    border-radius: 10px;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.plan-header {
    background-color: var(--primary-blue);
    color: var(--light-text);
    padding: 20px;
    text-align: center;
}

.plan-title {
    font-family: var(--dm-sans);
    font-size: 18px;
    font-weight: 700;
}

.plan-description {
    font-family: var(--dm-sans);
    font-size: 12px;
    font-weight: 400;
    min-height: 40px;
}

.plan-price {
    font-family: var(--dm-sans);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px dashed var(--primary-blue);
    border-bottom: 1px dashed var(--primary-blue);
    background-color: var(--light-text);
}

.plan-features {
    flex-grow: 1;
    background-color: var(--light-text);
    color: var(--grey-text);
    padding: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 8px;
}

.feature-item span {
    font-family: var(--dm-sans);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.33;
}

.plan-btn {
    width: 100%;
    background: var(--primary-blue);
    color: var(--light-text);
    font-family: var(--dm-sans);
    font-size: 18px;
    font-weight: 700;
    padding: 15px;
    border: none;
    cursor: pointer;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--light-text);
}

.about-container {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    width: 50%;
}

.about-main-image {
    width: 392px;
    height: 484px;
    border-radius: 12px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--primary-blue);
    color: var(--light-text);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 0px 90px rgba(19, 19, 19, 0.13);
}

.experience-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.experience-number {
    font-family: var(--inter);
    font-size: 72px;
    font-weight: 600;
}

.experience-text {
    font-family: var(--dm-sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
}

.about-contact-widget {
    position: absolute;
    bottom: 20px;
    right: -50px;
    background: var(--light-text);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0px 0px 90px rgba(19, 19, 19, 0.13);
}

.about-contact-widget p:first-child {
    font-family: var(--dm-sans);
    font-size: 16px;
    color: #626c74;
}

.about-contact-widget p:last-child {
    font-family: var(--dm-sans);
    font-size: 20px;
    font-weight: 600;
    color: #001914;
}

.about-text-content {
    width: 50%;
}

.why-qwikhom-title {
    font-family: var(--dm-sans);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}

.about-description {
    font-family: var(--dm-sans);
    font-size: 16px;
    line-height: 1.75;
    color: #414141;
    margin-bottom: 40px;
}

.feature-boxes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--light-text);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.18);
}

.feature-icon-wrapper {
    background-color: var(--light-blue);
    border-radius: 5px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text h4 {
    font-family: var(--dm-sans);
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.feature-text p {
    font-family: var(--dm-sans);
    font-size: 16px;
    color: #414141;
}

/* Statistics Section */
.statistics {
    padding: 100px 0;
    background: var(--primary-blue);
    overflow: hidden;
    min-height: 387px;
}
.statistics-bg {
    pointer-events: none; /* makes sure it doesn't block clicks */
    z-index: 0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.stat-icon {
    width: 96px;
    height: 96px;
}

/* .stat-text {
    text-align: left;
} */

.stat-number {
    font-family: var(--roboto);
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    color: var(--light-text);
}

.stat-label {
    font-family: var(--roboto);
    font-size: 24px;
    font-weight: 600;
    color: var(--light-text);
}

/* Footer */
.footer {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 80px 0 4px;
    border-radius: 20px 20px 20px 20px;
    margin: 30px 30px 30px 30px;
}

.footer-info{
    margin-top:-40px;
}

.footer-container {
    max-width: 1392px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top-section {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: start;
}

.footer-logo-img {
    width: 270px;
    height: 88px;
    margin-bottom: 20px;
}

.footer-info h3 {
    font-family: var(--dm-sans);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-info p {
    font-family: var(--dm-sans);
    font-size: 16px;
    line-height: 1.875;
    margin-bottom: 30px;
}

.footer-info h4 {
    font-family: var(--dm-sans);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.footer-quick-links h4,
.footer-contact-info h4,
.footer-form-section h4 {
    font-family: var(--dm-sans);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    text-decoration: dotted;
}

.footer-quick-links ul,
.footer-contact-info ul {
    list-style: disc;
}

.footer-quick-links ul li,
.footer-contact-info ul li {
    margin-bottom: 16px;
}

.footer-quick-links ul li a {
    text-decoration: none;
    color: var(--primary-blue);
    font-family: var(--dm-sans);
    font-size: 16px;
}

.footer-contact-info ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-info ul li span {
    font-family: var(--dm-sans);
    font-size: 16px;
    line-height: 1.5;
}

.footer-form-section p {
    font-family: var(--dm-sans);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--primary-blue);
    border-radius: 5px;
    background: var(--light-blue);
    color: var(--dark-text);
}

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

.send-btn {
    background: var(--primary-blue);
    color: var(--light-text);
    font-family: var(--dm-sans);
    font-size: 20px;
    font-weight: 700;
    padding: 8px 32px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    align-self: flex-start;
}

/* Responsive Design */

/* Tablet and smaller desktop */
@media (max-width: 1024px) {
    .hero {
        padding: 120px 80px 60px;
    }
    .nav-menu {
        gap: 30px;
    }
    .hero-title {
        font-size: 48px;
    }
    .hero-image-container .img {
        position: absolute;
        border-radius: 50%;
        object-fit: cover;
        margin-top: 18px;
    }
    .img-top-right {
        width: 280px;
        height: 280px;
        top: 10px;
        right: -80px;
    }
    .img-top-left {
        width: 120px;
        height: 120px;
        top: 120px;
        left: 40px;
    }
    .img-bottom-left {
        width: 230px;
        height: 240px;
        bottom: 40px;
        left: 8px;
    }
    .img-bottom-right {
        width: 120px;
        height: 120px;
        bottom: 60px;
        right: -20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header {
        height: 70px;
    }
    .nav-container {
        max-width: 100%;
        margin: 0;
        padding: 0 15px;
        height: 60px;
        top: 40px;
        border-radius: 50px;
    }
    .logo img {
        width: 130px;
    }
    .nav-menu {
        gap: 15px;
        font-size: 14px;
    }
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 50px;
        max-width: none;
        overflow-x: hidden;
    }
    .hero-content {
        max-width: 100%;
        margin-bottom: 30px;
    }
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }
    .hero-description {
        font-size: 14px;
        margin-bottom: 30px;
    }
    .download-btn {
        padding: 12px 24px;
    }
    .hero-image-container {
        width: 100%;
        height: 400px;
        order: -1;
        overflow-x: hidden;
        overflow-y: hidden;
    }
    .icon-box {
        width: 0px;
        padding: 0px 35px;
    }

    .img {
        position: absolute;
        border-radius: 50%;
        object-fit: cover;
    }
    .img-top-right {
        width: 180px;
        height: 180px;
        top: 0;
        right: 0;
    }
    .img-top-left {
        width: 100px;
        height: 100px;
        top: 50px;
        left: 0;
    }
    .img-bottom-left {
        width: 150px;
        height: 150px;
        bottom: 0;
        left: 0;
    }
    .img-bottom-right {
        width: 100px;
        height: 100px;
        bottom: 0;
        right: 0;
    }

    /* Hide iPhone on mobile as steps are stacked */
    .steps-wrapper .iphone {
        display: none;
    }

    /* Mobile Footer */
    .footer {
        padding: 40px 0 20px;
        margin: 0px 10px;
    }

    .footer-container {
        padding: 0 15px;
    }

    .footer-top-section {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .footer-logo-img {
        width: 200px;
        height: 65px;
        margin-bottom: 15px;
    }

    .footer-info h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-info p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .footer-info h4 {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .social-links {
        gap: 10px;
    }

    .footer-quick-links h4,
    .footer-contact-info h4,
    .footer-form-section h4 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer-contact-info ul li span {
        font-size: 14px;
    }

    .send-btn {
        font-size: 16px;
        padding: 10px 20px;
    }
}

/* Very small mobile devices */
@media (max-width: 480px) {
    .service-description {
        font-size: 65% !important;
    }

    .footer {
        margin: 0px 5px;
        border-radius: 10px 10px 0 0;
    }

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

    .footer-logo-img {
        width: 150px;
        height: 48px;
    }

    .footer-info h3 {
        font-size: 15px;
    }

    .footer-info p {
        font-size: 13px;
    }

    .footer-quick-links h4,
    .footer-contact-info h4,
    .footer-form-section h4 {
        font-size: 16px;
    }

    .footer-quick-links ul li a,
    .footer-contact-info ul li span {
        font-size: 14px;
    }

    .app-download-buttons img {
        width: 114px !important;
        height: auto !important;
    }
}

/* mobile plans section */
@media (max-width: 768px) {
    .plans-section {
        padding: 40px 0;
    }

    .plans-inner {
        padding: 0 10px;
    }

    .plans-header {
        margin-bottom: 20px;
    }

    .plans-header h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .plans-header p {
        font-size: 14px;
        max-width: none;
    }

    .plans-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }

    .plan-card {
        width: auto;
        margin: 0;
    }

    .plan-top {
        padding: 15px 15px;
        font-size: 16px;
    }

    .plan-body {
        padding: 15px;
        min-height: auto;
    }

    .price {
        padding: 12px 20px;
        font-size: 16px;
    }

    .plan-features li {
        font-size: 13px;
        padding-left: 18px;
    }
}
