/* ==========================================================
   SIVA DIGITAL MARKETING - STYLESHEET
   ========================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6c5ce7;
    --primary-dark: #5a4bd1;
    --secondary: #00d2ff;
    --accent: #ff6b6b;
    --dark: #0f1026;
    --dark-2: #1a1c3a;
    --light: #f8f9ff;
    --text-dark: #222244;
    --text-light: #66688a;
    --gradient: linear-gradient(135deg, #6c5ce7 0%, #00d2ff 100%);
    --shadow: 0 20px 60px rgba(108, 92, 231, 0.25);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ==================== PRELOADER ==================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.loader span {
    font-size: 5rem;
    font-weight: 900;
    color: #fff;
    display: inline-block;
    animation: loaderBounce 1.4s infinite ease-in-out;
}

.loader span:nth-child(1) { animation-delay: 0s; color: var(--primary); }
.loader span:nth-child(2) { animation-delay: 0.1s; color: var(--secondary); }
.loader span:nth-child(3) { animation-delay: 0.2s; color: var(--accent); }
.loader span:nth-child(4) { animation-delay: 0.3s; color: #fff; }

@keyframes loaderBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(15, 16, 38, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 50px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 2rem;
    color: var(--primary);
    animation: spinSlow 4s linear infinite;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}

.logo-text .accent {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: #ddd;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.4s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    color: #fff;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 30px;
    background: var(--gradient);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(108, 92, 231, 0.4);
}

.nav-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.6);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ==================== HERO ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    background: var(--dark);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 50px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: blobFloat 8s infinite ease-in-out;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: var(--secondary);
    bottom: -100px;
    right: -50px;
    animation-delay: 2s;
}

.blob-3 {
    width: 250px;
    height: 250px;
    background: var(--accent);
    top: 40%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.particles {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--secondary);
    animation: particleFloat linear infinite;
    opacity: 0.7;
}

@keyframes particleFloat {
    0% { transform: translateY(0) scale(0.5); opacity: 0; }
    10% { opacity: 0.7; }
    90% { opacity: 0.7; }
    100% { transform: translateY(-120vh) scale(1.2); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--secondary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease 0.2s both;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease 0.4s both;
}

.hero-title .gradient-text {
    position: relative;
    display: inline-block;
}

.hero-title .gradient-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--gradient);
    opacity: 0.3;
    border-radius: 10px;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    animation: underline 1.5s ease 1.2s forwards;
}

@keyframes underline {
    to { transform: scaleX(1); }
}

.hero-sub {
    color: #aaa;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
    animation: fadeInDown 1s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeInDown 1s ease 0.8s both;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.5);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.7);
}

.btn-outline:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    transform: translateY(-5px);
}

.btn-full {
    width: 100%;
}

.btn-big {
    font-size: 1.2rem;
    padding: 18px 50px;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-stats {
    display: flex;
    gap: 50px;
    animation: fadeInDown 1s ease 1s both;
}

.hstat {
    display: flex;
    flex-direction: column;
}

.hstat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
}

.hstat .plus {
    color: var(--secondary);
    font-size: 2rem;
    font-weight: 800;
    display: inline;
}

.hstat-label {
    color: #aaa;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Float cards */
.float-cards .fcard {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 12px 20px;
    border-radius: 15px;
    font-size: 0.9rem;
    z-index: 3;
    animation: floatCard 4s infinite ease-in-out;
}

.fc-1 { top: 25%; right: 10%; }
.fc-2 { top: 45%; right: 5%; animation-delay: 1s; }
.fc-3 { bottom: 25%; right: 15%; animation-delay: 2s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(10px) rotate(-2deg); }
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #aaa;
    font-size: 1.5rem;
    z-index: 3;
    animation: scrollBounce 2s infinite;
    text-decoration: none;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(15px); }
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ==================== SECTION HEAD ==================== */
.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(108, 92, 231, 0.1);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-sub {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s ease, transform 1s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== ABOUT ==================== */
.about {
    padding: 100px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.visual-box {
    position: relative;
    width: 350px;
    height: 350px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border-radius: 40px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.vb-icon {
    font-size: 6rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.spark-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px dashed var(--primary);
    border-radius: 50%;
    animation: spinSlow 20s linear infinite;
}

.orbit {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit span {
    font-size: 1.5rem;
    background: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.orbit-1 {
    width: 300px;
    height: 100px;
    border: 2px solid var(--secondary);
    animation: orbitRotate 6s linear infinite;
    top: 50%;
    left: 50%;
    margin: -50px 0 0 -150px;
}

.orbit-2 {
    width: 100px;
    height: 300px;
    border: 2px solid var(--accent);
    animation: orbitRotate 8s linear infinite reverse;
    top: 50%;
    left: 50%;
    margin: -150px 0 0 -50px;
}

.orbit-3 {
    width: 250px;
    height: 100px;
    border: 2px solid var(--primary);
    animation: orbitRotate 7s linear infinite;
    top: 80%;
    left: 50%;
    margin: -50px 0 0 -125px;
}

@keyframes orbitRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

.about-list {
    list-style: none;
    margin-bottom: 30px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-weight: 500;
}

.about-list span {
    color: var(--primary);
    font-weight: 800;
}

/* ==================== SERVICES ==================== */
.services {
    padding: 100px 0;
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: var(--transition);
}

.service-card:hover .card-icon {
    transform: scale(1.2) rotate(10deg);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.card-link:hover {
    color: var(--secondary);
    letter-spacing: 1px;
}

/* ==================== STATS ==================== */
.stats {
    position: relative;
    padding: 100px 0;
    background: var(--dark);
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(108, 92, 231, 0.2), transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 210, 255, 0.15), transparent 50%);
}

.stats .section-title {
    color: #fff;
}

.stats .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary);
}

.stats-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.stat-num {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
}

.stat-plus {
    color: var(--secondary);
    font-size: 2rem;
    font-weight: 800;
}

.stat-label {
    display: block;
    color: #aaa;
    margin-top: 10px;
    font-size: 1rem;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    padding: 100px 0;
    background: #fff;
}

.testimonial-slider {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide {
    position: absolute;
    opacity: 0;
    transform: translateX(50px) scale(0.9);
    transition: all 0.8s ease;
    visibility: hidden;
}

.slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    visibility: visible;
    position: relative;
}

.quote {
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: -20px;
}

.slide-text {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 30px;
}

.slide-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
}

.slide-author h4 {
    font-size: 1.1rem;
    text-align: left;
}

.slide-author span {
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: left;
    display: block;
}

.slider-dots {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots span.active {
    background: var(--gradient);
    width: 30px;
    border-radius: 10px;
}

/* ==================== CONTACT ==================== */
.contact {
    padding: 100px 0;
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.cd-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 8px 20px rgba(108, 92, 231, 0.3);
}

.contact-detail h4 {
    font-size: 1rem;
}

.contact-detail p {
    color: var(--text-light);
    margin: 0;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: #fafbff;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.1);
    background: #fff;
}

.form-status {
    text-align: center;
    font-weight: 600;
}

/* ==================== CTA BANNER ==================== */
.cta-banner {
    padding: 100px 0;
    background: var(--gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    left: -100px;
}

.cta-banner::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -80px;
    right: -80px;
}

.cta-banner h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.cta-banner .gradient-text {
    background: linear-gradient(135deg, #fff, #ffe);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-banner .btn {
    position: relative;
    z-index: 1;
    background: #fff;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark);
    padding: 80px 0 20px;
    color: #aaa;
}

.footer .logo-text {
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-desc {
    margin-top: 20px;
    line-height: 1.7;
    max-width: 300px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--secondary);
    padding-left: 8px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--gradient);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 990;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .navbar.scrolled {
        padding: 10px 20px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: right 0.5s ease;
        z-index: 1050;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding: 120px 20px 80px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .float-cards .fcard {
        display: none;
    }

    .services-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-form {
        padding: 25px;
    }

    .visual-box {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .hstat-num {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}