:root {
    --accent-cyan: #00e5ff;
    --accent-blue: #00bfff;
    --dark-bg: #0b111a;
    --card-bg: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

h1,
h2,
h3,
.heading-font {
    font-family: 'Outfit', sans-serif;
}

/* Fluid Typography */
html {
    font-size: 16px;
}

@media (max-width: 1200px) {
    html {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 12px;
    }
}

.text-cyan {
    color: var(--accent-cyan);
}

.bg-cyan {
    background-color: var(--accent-cyan);
}

.btn-cyan {
    background-color: var(--accent-cyan);
    color: #000;
    font-weight: 700;
    border: none;
    padding: 14px 32px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-cyan:hover {
    background-color: #00c8e6;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fff;
    color: #fff;
}

/* Mesh Gradient Background */
.mesh-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 20% 30%, rgba(0, 229, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 191, 255, 0.15) 0%, transparent 40%);
}

/* Navbar */
/* Global Section Spacing */
section {
    padding: 120px 0;
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(13, 22, 30, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-link {
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-cyan) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
}

/* Navbar Responsive Hamburger */
.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 229, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #0b111a;
        padding: 20px;
        border-radius: 12px;
        margin-top: 20px;
        border: 1px solid var(--border-color);
    }

    .nav-link {
        margin: 10px 0;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 120px 0;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -3px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 550px;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Figma Badges & Text */
.creator-badge {
    color: var(--accent-cyan);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    display: block;
}

.f-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 229, 255, 0.05);
    color: var(--accent-cyan);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(0, 229, 255, 0.15);
    margin-bottom: 30px;
}

.f-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
    margin-right: 10px;
}

.glow-btn-cyan {
    background-color: var(--accent-cyan);
    color: #000;
    font-weight: 700;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.glow-btn-cyan:hover {
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.6);
    transform: translateY(-2px);
    color: #000;
}

/* Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 229, 255, 0.2);
}

/* Hero Mobile Cards */
.hero-card-mobile {
    background: #111a24;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-card-mobile h6 {
    font-size: 14px;
    margin-bottom: 2px;
}

.hero-card-mobile p {
    font-size: 10px;
    margin-bottom: 0;
}

.hero-card-mobile .stat-large {
    font-size: 24px;
    color: var(--accent-cyan);
    font-weight: 800;
}

.hero-card-mobile .stat-label {
    font-size: 9px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
}

.live-pill {
    background: var(--accent-cyan);
    color: #000;
    font-size: 9px;
    font-weight: 900;
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
}

/* Hero Floating Elements Responsive */
.hero-card-top {
    top: -40px;
    right: 0;
    width: 300px;
    z-index: 2;
}

.hero-pill-left {
    position: absolute;
    left: -40px;
    bottom: 120px;
    z-index: 3;
}

.hero-card-bottom {
    bottom: -20px;
    left: -30px;
    width: 240px;
    z-index: 3;
}

.hero-img-main {
    height: 450px;
    object-fit: cover;
    filter: brightness(0.8);
}

/* Tablet / Smaller Desktop */
@media (max-width: 991.98px) {
    .hero-card-top {
        top: -20px;
        right: 15px; /* Stay inside viewport */
        width: 280px;
    }
    .hero-pill-left {
        left: 15px;
        bottom: 140px;
    }
    .hero-card-bottom {
        bottom: -10px;
        left: 15px;
        width: 220px;
    }
    .hero-img-main {
        height: 380px;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .hero-card-top {
        top: -15px;
        right: 10px;
        width: 240px;
    }
    .hero-pill-left {
        left: 10px;
        bottom: 120px;
    }
    .hero-card-bottom {
        bottom: -5px;
        left: 10px;
        width: 200px;
    }
    .hero-img-main {
        height: 300px;
    }
}

/* Very Small Mobile */
@media (max-width: 575.98px) {
    .hero-card-top {
        top: -10px;
        right: 5px;
        width: 210px;
    }
    .hero-pill-left {
        left: 5px;
        bottom: 110px;
    }
    .hero-card-bottom {
        bottom: 0px;
        left: 5px;
        width: 180px;
    }
    .hero-img-main {
        height: 250px;
    }
}

/* Creator Card Refined */
.creator-card-v2 {
    background: #0d141c;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.creator-card-v2:hover {
    border-color: rgba(0, 229, 255, 0.3);
    transform: translateY(-5px);
}

.creator-stat-label {
    font-size: 9px;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
    font-weight: 600;
}

.creator-stat-value {
    font-size: 15px;
    color: var(--accent-cyan);
    font-weight: 700;
}

.creator-tag {
    display: inline-block;
    padding: 4px 10px;
    background: #16242e;
    color: var(--accent-cyan);
    font-size: 9px;
    font-weight: 800;
    border-radius: 4px;
    margin-right: 6px;
    margin-bottom: 6px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        letter-spacing: -1px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn {
        width: 100%;
        padding: 18px !important;
        font-size: 1rem !important;
    }

    .f-badge {
        font-size: 9px;
        padding: 8px 16px;
    }
}

.trending-pill {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-cyan);
    color: #000;
    font-size: 9px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
}

.filter-pill {
    background: #0e161f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.filter-pill.active {
    background: var(--accent-cyan);
    color: #000;
    border-color: var(--accent-cyan);
}

.filter-pill:hover:not(.active) {
    border-color: var(--accent-cyan);
    background: rgba(0, 229, 255, 0.05);
}

/* Service Card V2 */
.service-card-v2 {
    background: #0d141c;
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 20px;
    height: 100%;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card-v2:hover {
    background: #111a24;
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
}

.service-card-v2 .s-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 24px;
}

.service-card-v2 .s-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 4rem;
        letter-spacing: -2px;
    }

    .hero-section {
        text-align: center;
        padding: 60px 0;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
    }

    .hero-btns {
        justify-content: center;
    }

    .creator-popup {
        position: static !important;
        margin: 0 auto 20px;
        max-width: 100% !important;
    }

    .navbar-collapse {
        background: #0d141c;
        padding: 24px;
        border-radius: 12px;
        margin-top: 16px;
        border: 1px solid var(--border-color);
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 3rem;
        letter-spacing: -1.5px;
    }

    .display-4 {
        font-size: 2.5rem;
    }

    .journey-title {
        font-size: 2.5rem;
    }
}

/* Process Section */
.process-section {
    position: relative;
    padding: 100px 0;
}

.process-card {
    background: rgba(13, 22, 30, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    text-align: center;
}

.process-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 229, 255, 0.3);
    background: rgba(13, 22, 30, 0.8);
}

.process-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 32px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: rgba(0, 229, 255, 0.05);
    transition: all 0.3s ease;
}

.process-card:hover .process-number {
    color: rgba(0, 229, 255, 0.1);
}

.process-icon-wrapper {
    width: 65px;
    height: 65px;
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
    position: relative;
}

@media (max-width: 991px) {
    .process-line-container {
        display: none;
    }

    .process-card {
        padding: 30px 20px;
    }
}

/* Form Section */
.form-section {
    padding: 100px 0;
}

.contact-card {
    background: rgba(13, 22, 30, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
}

.form-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.form-control-custom {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 14px 20px !important;
    color: #fff !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
}

.form-control-custom:focus {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: var(--accent-cyan) !important;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.1) !important;
    outline: none !important;
}

.form-control-custom::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.input-group-custom {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group-custom .input-icon {
    position: absolute;
    left: 18px;
    color: rgba(255, 255, 255, 0.3);
    pointer-events: none;
    z-index: 10;
}

.input-group-custom .form-control-custom {
    padding-left: 50px !important;
}

.custom-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 12px;
}

.btn-cyan-glow {
    background: var(--accent-cyan);
    color: #000;
    font-weight: 800;
    padding: 16px;
    border-radius: 12px;
    border: none;
    width: 100%;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cyan-glow:hover {
    box-shadow: 0 0 35px rgba(0, 229, 255, 0.5);
    transform: translateY(-2px);
}

.alert-custom {
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
    color: var(--accent-cyan);
}

.btn-outline-cyan {
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    background: transparent;
    transition: all 0.3s ease;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-cyan:hover {
    background: var(--accent-cyan);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 229, 255, 0.02) 50%, rgba(0, 0, 0, 0) 100%);
}

.testimonial-card {
    background: rgba(13, 22, 30, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(13, 22, 30, 0.6);
    border-color: rgba(0, 229, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.testimonial-card.featured {
    border-color: rgba(0, 229, 255, 0.3);
    background: rgba(13, 22, 30, 0.7);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.05);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    position: relative;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 229, 255, 0.2);
}

.quote-icon {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.1;
    color: var(--accent-cyan);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: var(--accent-cyan);
}

.testimonial-content {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-bottom: 30px;
    flex-grow: 1;
}

.testimonial-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 13px;
}

.like-count {
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.testimonial-card:hover .like-count {
    color: var(--accent-cyan);
}

/* Premium Footer */
.footer-main {
    padding: 80px 0 60px;
    background: #050a0f;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    text-decoration: none;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    line-height: 1.6;
    max-width: 280px;
}

.footer-heading {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-cyan);
    padding-left: 5px;
}

.footer-contact-link {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: block;
    margin-bottom: 25px;
}

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

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: rgba(0, 229, 255, 0.1);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 25px 0;
    background: #050a0f;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-cyan);
}

.copyright-text {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
}

/* Brand Cloud Section */
.brand-cloud {
    padding: 60px 0;
    background: rgba(0, 229, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.brand-logo-item {
    opacity: 0.3;
    transition: all 0.4s ease;
    filter: grayscale(1);
    max-width: 140px;
}

.brand-logo-item:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.05);
}

/* Contact Section */
.contact-info-card {
    background: rgba(13, 22, 30, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: rgba(0, 229, 255, 0.2);
    background: rgba(13, 22, 30, 0.6);
}

.contact-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 229, 255, 0.1);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-form-glass {
    background: rgba(13, 22, 30, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 229, 255, 0.1);
    border-radius: 30px;
    padding: 50px;
}

/* --- Comprehensive Responsiveness (375px - 1300px) --- */

/* Laptops / Smaller Desktops (992px - 1300px) */
@media (max-width: 1300px) {
    .hero-title {
        font-size: 60px;
    }

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

    .container {
        max-width: 1100px;
    }
}

/* Tablets & Small Laptops (768px - 991px) */
@media (max-width: 991px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-section {
        padding: 140px 0 80px;
    }

    /* 4-column cards to 2-column grid */
    .service-card-v2,
    .process-card,
    .creator-card-v2,
    .testimonial-card {
        margin-bottom: 20px;
    }

    .col-lg-3,
    .col-lg-4 {
        width: 50%;
    }

    .footer-main {
        padding: 60px 0 40px;
    }

    .footer-heading {
        margin-top: 40px;
        margin-bottom: 20px;
    }
}

/* Large Phones & Tablets (576px - 767px) */
@media (max-width: 767px) {

    .col-lg-3,
    .col-lg-4 {
        width: 100%;
    }

    .hero-btns {
        flex-direction: column;
    }

    .footer-brand-logo {
        justify-content: center;
    }

    .footer-tagline {
        margin: 0 auto 30px;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

/* Small Phones (Up to 575px - starting from 375px) */
@media (max-width: 575px) {
    .hero-title {
        font-size: 36px;
    }

    .display-4 {
        font-size: 32px;
    }

    .display-3 {
        font-size: 40px;
    }

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

@media (max-width: 768px) {
    .contact-card {
        padding: 30px 20px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #20ba5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #FFF;
}

@media (max-width: 767px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}