
        :root {
            --primary-gradient: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 25%, #45b7d1 50%, #96ceb4 75%, #feca57 100%);
            --glass-bg: rgba(255,255,255,0.1);
            --glass-border: rgba(255,255,255,0.2);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            overflow-x: hidden;
            background: #0f0f23;
            color: white;
        }

        /* NAVBAR */

.main-header{
  background:#f8f6f6;
  position:sticky;
  top:0;
  z-index:999;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.nav-container{
  max-width:1200px;
  margin:auto;
  padding:14px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo img{
  height:70px;
  object-fit:contain;
  border-radius: 10px;
}

/* DESKTOP MENU */
.nav-menu{
  list-style:none;
  display:flex;
  gap:28px;
}

.nav-menu li a{
  text-decoration:none;
  color:#000;
  font-weight:bold;
  font-size: 15px;
}

.nav-menu li a:hover{color:#ff7a00}

/* DROPDOWN */
.dropdown{position:relative;}
.dropdown-menu{
  position:absolute;
  top:42px;
  left:0;
  background:#554f56;
  padding:14px;
  border-radius:10px;
  display:none;
  min-width:240px;
}
.dropdown-menu li{margin-bottom:10px;}
.dropdown-menu a{color:#fff;}
.dropdown:hover .dropdown-menu{display:block}

/* CALL BUTTON */
.call-btn{
  background:linear-gradient(135deg,#ff7a00,#c81ddc);
  padding:12px 20px;
  border-radius:40px;
  color:#fff;
  text-decoration:none;
  font-weight:600;
}

/* HAMBURGER */
.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}
.hamburger span{
  width:26px;
  height:3px;
  background:#000;
}

/* MOBILE MENU */
.mobile-menu{
  position:fixed;
  top:0;
  right:-100%;
  width:80%;
  height:100%;
  background:#554f56;
  padding:90px 20px;
  transition:.4s;
  z-index:1000;
}
.mobile-menu a, summary{
  color:#fff;
  display:block;
  margin-bottom:18px;
  text-decoration:none;
  font-size:18px;
}

.menu-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  display:none;
  z-index:999;
}

/* RESPONSIVE */
@media(max-width:992px){
  .nav-menu,.call-btn{display:none;}
  .hamburger{display:flex;}
}

@media (max-width: 480px){

  /* HERO SECTION */
  .cosmic-hero{
    padding: 5px 12px 35px !important;
  }

  /* CONTENT GAP */
  .hero-content{
    gap: 20px !important;
  }

  /* TEXT BLOCK */
  .hero-text{
    padding: 0 !important;
  }

  /* HEADING */
  .hero-text h1{
    font-size: 2.5rem !important;
    line-height: 1.15 !important;
    margin-bottom: 20px !important;
  }

  /* PARAGRAPH */
  .hero-text p{
    font-size: 1rem !important;
    line-height: 1.45 !important;
    margin-bottom: 14px !important;
  }

  /* BUTTONS */
  .hero-cta{
    gap: 10px !important;
  }

  .hero-cta a{
    padding: 10px 18px !important;
    font-size: 0.9rem !important;
  }

  /* VISUAL (cube ya image) */
  .ppc-visual{
    margin-top: 6px !important;
  }
}


        /* BUTTONS */
       
        /* HERO */
        .cosmic-hero {
            min-height: 100vh;
            padding: 100px 40px 80px;
            background: radial-gradient(ellipse at center, #1a1a3e 0%, #0f0f23 70%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .cosmic-hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(255,107,107,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(78,205,196,0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(69,183,209,0.1) 0%, transparent 50%);
            animation: cosmicFloat 20s ease-in-out infinite;
            z-index: 1;
        }

        .hero-content {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-text h1 {
            font-size: clamp(2.8rem, 7vw, 5.5rem);
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .hero-text p {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.9);
            line-height: 1.7;
            margin-bottom: 30px;
            max-width: 600px;
        }
.btn-call{
  background:linear-gradient(135deg,#ff7a00,#ff4d00);
  padding:12px 22px;
  border-radius:30px;
  color:#fff;
  text-decoration:none;
  font-weight:600;
}

.btn-whatsapp{
  background:#25D366;
  padding:12px 22px;
  border-radius:30px;
  color:#fff;
  text-decoration:none;
  font-weight:600;
}
        .hero-cta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        /* 3D CUBE - FULLY RESPONSIVE */
        .ppc-visual {
            perspective: 1000px;
            display: flex;
            justify-content: center;
        }

        .ppc-cube {
            width: 320px; height: 320px;
            position: relative;
            transform-style: preserve-3d;
            animation: cubeRotate 25s infinite linear;
        }

        .cube-face {
            position: absolute;
            width: 320px; height: 320px;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: white;
            font-weight: 600;
            text-align: center;
            padding: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        .cube-face i {
            font-size: 3rem;
            margin-bottom: 16px;
            display: block;
        }

        .cube-face.front  { transform: rotateY(0deg) translateZ(160px); }
        .cube-face.back   { transform: rotateY(180deg) translateZ(160px); }
        .cube-face.right  { transform: rotateY(90deg) translateZ(160px); }
        .cube-face.left   { transform: rotateY(-90deg) translateZ(160px); }
        .cube-face.top    { transform: rotateX(90deg) translateZ(160px); }
        .cube-face.bottom { transform: rotateX(-90deg) translateZ(160px); }

        /* SERVICES */
.btech-hero{
  background:#1a1a3e;
  padding:100px 20px;
  position:relative;
  overflow:hidden;
}

.hero-wrapper{
  max-width:1200px;
  margin:auto;
  text-align:center;
  position:relative;
  z-index:2;
}

/* HEADING */
.hero-heading{
  margin-bottom:40px;
}

.hero-heading h1{
  font-size:clamp(2.2rem,7vw,4.5rem);
  font-weight:900;
  background:linear-gradient(45deg,#fff,#eaeaea);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  line-height:1.1;
  margin-bottom:12px;
}

.hero-heading p{
  font-size:clamp(1rem,3vw,1.4rem);
  color:rgba(255,255,255,.95);
  font-weight:600;
}

/* GRID */
.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

/* LEFT */
.hero-left p{
  font-size:1.05rem;
  line-height:1.7;
  color:rgba(255,255,255,.9);
  margin-bottom:25px;
}

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

.cta-primary,
.cta-secondary{
  padding:14px 30px;
  border-radius:50px;
  text-decoration:none;
  font-weight:700;
  font-size:1rem;
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.cta-primary{
  background:linear-gradient(45deg,#ff6b6b,#feca57);
  color:#fff;
}

.cta-secondary{
  background:rgba(255,255,255,.15);
  border:2px solid rgba(255,255,255,.3);
  color:#fff;
}

/* SEO BOX */
.seo-box{
  background:rgba(255,255,255,.1);
  backdrop-filter:blur(20px);
  border-radius:22px;
  padding:35px 28px;
  border:1px solid rgba(255,255,255,.2);
  max-width:500px;
  margin:auto;
  position:relative;
}

.seo-box h2{
  font-size:clamp(1.6rem,4vw,2rem);
  margin-bottom:22px;
  background:linear-gradient(45deg,#fff,#ddd);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.seo-box ul{
  list-style:none;
  padding:0;
}

.seo-box li{
  display:flex;
  gap:12px;
  margin-bottom:16px;
  font-size:1.05rem;
  color:#fff;
}

.seo-box i{
  color:#4ecdc4;
  margin-top:4px;
}

/* GEAR ICON */
.gear{
  position:absolute;
  top:16px;
  right:16px;
  font-size:2.5rem;
  opacity:.15;
  animation:spin 8s linear infinite;
}

@keyframes spin{
  to{transform:rotate(360deg);}
}

/* 📱 MOBILE FIX */
@media(max-width:768px){
  .btech-hero{
    padding:60px 14px;
  }

  .hero-grid{
    grid-template-columns:1fr;
    gap:28px;
  }

  .hero-left p{
    font-size:.95rem;
    line-height:1.55;
  }

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

  .cta-primary,
  .cta-secondary{
    width:100%;
    justify-content:center;
  }
}


        /* ANIMATIONS */
        @keyframes orbitRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes cosmicFloat {
            0%,100% { transform: translateY(0) rotate(0deg); }
            33% { transform: translateY(-20px) rotate(120deg); }
            66% { transform: translateY(10px) rotate(240deg); }
        }

        @keyframes cubeRotate {
            0% { transform: rotateX(0deg) rotateY(0deg); }
            100% { transform: rotateX(360deg) rotateY(360deg); }
        }

        /* ========== MOBILE FIRST RESPONSIVE ========== */
        
        /* MOBILE (0-767px) */
        @media (max-width: 767px) {
            .orbital-header { 
                height: 70px; 
                padding: 0 20px; 
            }
            
            .orbital-nav {
                padding: 0 10px;
            }
            
            .orbital-hamburger { 
                display: flex; 
            }
            
            .orbital-menu {
                position: fixed;
                top: 70px; left: 0; width: 100%;
                height: calc(100vh - 70px);
                background: rgba(15,15,35,0.98);
                backdrop-filter: blur(30px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 30px;
                display: none;
                transform: translateX(100%);
                transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            }
            
            .orbital-menu.active { 
                display: flex;
                transform: translateX(0);
            }
            
            .orbital-link { 
                font-size: 18px; 
                padding: 16px 40px; 
                min-width: 200px;
            }
            
            main { margin-top: 70px; }
            
            .cosmic-hero { 
                padding: 80px 20px 60px; 
                min-height: 100vh;
            }
            
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
                padding: 0 10px;
            }
            
            .hero-text p {
                font-size: 1.1rem;
                max-width: 100%;
            }
            
            .hero-cta { 
                justify-content: center; 
                flex-direction: column;
                align-items: center;
            }
            
            .hero-cta .pulse-btn,
            .hero-cta .btn-secondary {
                width: 100%;
                max-width: 300px;
            }
            
            .ppc-cube { 
                width: 240px; 
                height: 240px; 
            }
            
            .cube-face { 
                width: 240px; 
                height: 240px; 
                font-size: 1rem; 
                padding: 15px; 
            }
            
            .cube-face.front  { transform: rotateY(0deg) translateZ(120px); }
            .cube-face.back   { transform: rotateY(180deg) translateZ(120px); }
            .cube-face.right  { transform: rotateY(90deg) translateZ(120px); }
            .cube-face.left   { transform: rotateY(-90deg) translateZ(120px); }
            .cube-face.top    { transform: rotateX(90deg) translateZ(120px); }
            .cube-face.bottom { transform: rotateX(-90deg) translateZ(120px); }
            
            .cube-face i { 
                font-size: 2rem; 
            }
            
            .services-orbit { 
                padding: 60px 20px; 
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .service-card {
                padding: 30px 25px;
            }
            
            .service-icon {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }
            
            .pulse-btn.desktop-only { display: none; }
        }

        /* TABLET (768px - 1023px) */
        @media (min-width: 768px) and (max-width: 1023px) {
            .orbital-header { 
                height: 80px; 
                padding: 0 30px; 
            }
            
            .orbital-hamburger { 
                display: flex; 
            }
            
            .orbital-menu {
                position: fixed;
                top: 80px; left: 0; width: 100%;
                height: calc(100vh - 80px);
                background: rgba(15,15,35,0.98);
                backdrop-filter: blur(30px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 25px;
                display: none;
                transform: translateX(100%);
                transition: all 0.4s ease;
            }
            
            .orbital-menu.active { 
                display: flex;
                transform: translateX(0);
            }
            
            main { margin-top: 80px; }
            
            .cosmic-hero { 
                padding: 90px 30px 70px; 
            }
            
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 50px;
            }
            
            .hero-cta { 
                justify-content: center; 
            }
            
            .ppc-cube { 
                width: 280px; 
                height: 280px; 
            }
            
            .cube-face { 
                width: 280px; 
                height: 280px; 
                font-size: 1.1rem; 
            }
            
            .cube-face.front  { transform: rotateY(0deg) translateZ(140px); }
            .cube-face.back   { transform: rotateY(180deg) translateZ(140px); }
            .cube-face.right  { transform: rotateY(90deg) translateZ(140px); }
            .cube-face.left   { transform: rotateY(-90deg) translateZ(140px); }
            .cube-face.top    { transform: rotateX(90deg) translateZ(140px); }
            .cube-face.bottom { transform: rotateX(-90deg) translateZ(140px); }
            
            .cube-face i { 
                font-size: 2.5rem; 
            }
            
            .services-orbit { 
                padding: 80px 30px; 
            }
            
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 35px;
            }
            
            .pulse-btn.desktop-only { display: none; }
        }

        /* DESKTOP (1024px+) - DEFAULT STYLES ALREADY PERFECT */
        @media (min-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr 1fr;
                gap: 80px;
            }
            
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 40px;
            }
        }

        /* LARGE DESKTOP */
        @media (min-width: 1400px) {
            .hero-content {
                gap: 100px;
            }
            
            .ppc-cube { 
                width: 360px; 
                height: 360px; 
            }
            
            .cube-face { 
                width: 360px; 
                height: 360px; 
                font-size: 1.4rem; 
                padding: 25px;
            }
            
            .cube-face.front  { transform: rotateY(0deg) translateZ(180px); }
            .cube-face.back   { transform: rotateY(180deg) translateZ(180px); }
            .cube-face.right  { transform: rotateY(90deg) translateZ(180px); }
            .cube-face.left   { transform: rotateY(-90deg) translateZ(180px); }
            .cube-face.top    { transform: rotateX(90deg) translateZ(180px); }
            .cube-face.bottom { transform: rotateX(-90deg) translateZ(180px); }
            
            .cube-face i { 
                font-size: 3.5rem; 
            }
        }
@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
}

.faq-question:hover {
    background: rgba(255,255,255,0.12) !important;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(78,205,196,0.2), rgba(69,183,209,0.2)) !important;
}

/* MOBILE */
@media (max-width: 767px) {
    .faq-section { padding: 70px 20px !important; }
    .faq-question { 
        padding: 20px 25px !important; 
        font-size: 1.15rem !important;
    }
    .faq-answer p { 
        padding: 20px 25px !important; 
        font-size: 1rem !important;
    }
}

/* TABLET */
@media (min-width: 768px) and (max-width: 1023px) {
    .faq-section { padding: 90px 30px !important; }
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.testimonial-card:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4) !important;
}

/* MOBILE */
@media (max-width: 767px) {
    .testimonial-section { padding: 70px 20px !important; }
    .testimonials-grid { 
        grid-template-columns: 1fr !important; 
        gap: 30px !important; 
        max-width: 400px !important; 
        margin: 0 auto !important;
    }
    .testimonial-card { 
        padding: 35px 25px !important; 
        text-align: center !important;
    }
    .testimonial-card > div:first-child { display: none !important; }
}

/* TABLET */
@media (min-width: 768px) and (max-width: 1023px) {
    .testimonials-grid { 
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 30px !important;
    }
    .testimonial-section { padding: 90px 30px !important; }
}

/* DESKTOP */
@media (min-width: 1024px) {
    .testimonials-grid { 
        grid-template-columns: repeat(3, 1fr) !important; 
        gap: 40px !important;
    }
}
@keyframes rotateGear {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
}

/* MOBILE RESPONSIVE */
@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 50px !important;
    }
    .hero-grid > div:first-child {
        order: 1 !important;
    }
    .seo-box {
        order: 2 !important;
        max-width: none !important;
    }
    .cta-primary, .cta-secondary {
        width: auto !important;
        min-width: 200px !important;
    }
}

@media (max-width: 480px) {
    .btech-hero {
        padding: 80px 15px !important;
    }
    .seo-box {
        padding: 30px 20px !important;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
}

.footer-grid a:hover {
    color: #4ecdc4 !important;
    transform: translateX(5px);
}

.footer-brand .social-links a:hover {
    background: rgba(255,255,255,0.2) !important;
    transform: translateY(-2px) scale(1.05);
}

.footer-contact-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(255,107,107,0.6) !important;
}

/* MOBILE RESPONSIVE */
@media (max-width: 767px) {
    .martech-footer { padding: 60px 20px 30px !important; }
    .footer-grid { 
        grid-template-columns: 1fr !important; 
        gap: 40px !important; 
        text-align: center !important;
    }
    .footer-brand { border: none !important; }
    .social-links { justify-content: center !important; }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .footer-grid { 
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 40px !important;
    }
}

@media (min-width: 1024px) {
    .footer-grid { 
        grid-template-columns: repeat(4, 1fr) !important; 
        gap: 50px !important;
    }
}

.counter-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* MOBILE - SINGLE COLUMN (ALL MOBILE DEVICES) */
@media (max-width: 1023px) {
    .counter-section { 
        padding: 60px 15px !important; 
    }
    .counter-container { 
        grid-template-columns: 1fr !important; 
        gap: 22px !important; 
        max-width: 380px !important;
        margin: 0 auto !important;
    }
    .counter-card { 
        padding: 35px 25px !important; 
        margin: 0 auto !important;
        max-width: 100% !important;
    }
}

/* DESKTOP - 4 COLUMNS */
@media (min-width: 1024px) {
    .counter-container { 
        grid-template-columns: repeat(4, 1fr) !important; 
        gap: 30px !important;
        max-width: 1200px !important;
    }
    .counter-section { 
        padding: 100px 40px !important; 
    }
}
/* HOVER EFFECTS */
.logo-card:hover, .feature-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4) !important;
}

/* MOBILE */
@media (max-width: 767px) {
    .why-martechdost {
        padding: 60px 15px !important;
    }
    .why-main-grid {
        gap: 40px !important;
    }
    .logos-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    .logo-card {
        padding: 20px 12px !important;
        height: 70px !important;
    }
    .feature-card {
        padding: 25px 20px !important;
    }
}

/* TABLET */
@media (min-width: 768px) and (max-width: 1023px) {
    .why-main-grid {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
    }
    .logos-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        max-width: 100% !important;
    }
}

/* DESKTOP */
@media (min-width: 1024px) {
    .why-main-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 80px !important;
    }
    .logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
        gap: 25px !important;
    }
}


/* About Page */



/* 🔥 ULTRA RESPONSIVE MAIN CONTENT CSS - FULL MOBILE FRIENDLY 🔥 */

/* BASE RESET & STYLING */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main-content {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* 1. HERO SECTION - PERFECT RESPONSIVE */
.hero-section {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 50%, #2a2a5a 100%);
    padding: clamp(100px, 20vh, 160px) clamp(20px, 8vw, 60px);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,107,107,0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(78,205,196,0.2) 0%, transparent 50%);
    animation: heroFloat 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes heroFloat {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    font-size: clamp(2.2rem, 7vw, 4.8rem);
    font-weight: 900;
    margin-bottom: clamp(20px, 4vw, 30px);
    background: linear-gradient(135deg, #fff 0%, #ff6b6b 50%, #4ecdc4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.15;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.45rem);
    margin-bottom: clamp(30px, 6vw, 50px);
    opacity: 0.92;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

.cta-buttons {
    display: flex;
    gap: clamp(15px, 4vw, 25px);
    justify-content: center;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

/* BUTTONS - ULTRA RESPONSIVE */
.btn-primary, .btn-secondary {
    padding: clamp(16px, 4vw, 22px) clamp(30px, 6vw, 50px);
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(1rem, 2.8vw, 1.15rem);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    color: white;
    box-shadow: 0 12px 35px rgba(255,107,107,0.4);
    border: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 45px rgba(255,107,107,0.6);
}

.btn-primary.large {
    padding: clamp(18px, 4.5vw, 25px) clamp(35px, 7vw, 60px);
    font-size: clamp(1.05rem, 2.9vw, 1.2rem);
}

.btn-secondary {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(20px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* COMMON SECTION STYLES */
.stats-section, .services-section, .portfolio-section, .about-section, .testimonials-section {
    padding: clamp(80px, 15vh, 140px) 0;
}

.stats-section { background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)); }
.services-section { background: linear-gradient(135deg, #1a1a3e 0%, #16213e 50%, #0f0f23 100%); }
.portfolio-section { background: rgba(10,10,26,0.95); backdrop-filter: blur(10px); }
.about-section { background: linear-gradient(135deg, rgba(26,26,62,0.9), rgba(15,15,35,0.9)); }
.testimonials-section { background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #2a2a5a 100%); }

/* CONTAINERS */
.stats-container, .services-container, .portfolio-container, .testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 6vw, 60px);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 6vw, 60px);
}

/* SECTION TITLES */
.section-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    text-align: center;
    color: white;
    margin-bottom: clamp(50px, 10vw, 80px);
    position: relative;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(70px, 12vw, 100px);
    height: 5px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(255,107,107,0.4);
}

/* 2. STATS SECTION - 4→2→1 MOBILE PERFECT */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(240px, 28vw, 300px), 1fr));
    gap: clamp(25px, 6vw, 50px);
    justify-items: center;
}

.stat-item {
    position: relative;
    padding: clamp(20px, 5vw, 30px);
}

.stat-number {
    font-size: clamp(2.5rem, 12vw, 5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    margin-bottom: clamp(10px, 2.5vw, 15px);
}

.stat-label {
    font-size: clamp(1.05rem, 3.5vw, 1.35rem);
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 3. SERVICES SECTION - 4→2→1 ULTRA SMOOTH */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(280px, 48vw, 340px), 1fr));
    gap: clamp(30px, 6vw, 45px);
}

.service-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(25px);
    padding: clamp(30px, 7vw, 50px);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255,255,255,0.18);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.service-icon {
    font-size: clamp(3rem, 12vw, 4.5rem);
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: clamp(20px, 5vw, 30px);
    display: block;
}

.service-title {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    font-weight: 800;
    color: white;
    margin-bottom: clamp(15px, 4vw, 25px);
    line-height: 1.3;
}

.service-desc {
    color: rgba(255,255,255,0.88);
    line-height: 1.7;
    font-size: clamp(0.95rem, 3vw, 1.1rem);
}

/* 4. PORTFOLIO SECTION - 3→2→1 */
.portfolio-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(280px, 42vw, 360px), 1fr));
    gap: clamp(30px, 7vw, 50px);
    margin: clamp(60px, 12vw, 90px) 0;
}

.portfolio-highlight {
    background: linear-gradient(135deg, rgba(255,107,107,0.15), rgba(78,205,196,0.15));
    backdrop-filter: blur(25px);
    padding: clamp(35px, 8vw, 55px);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.portfolio-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
}

.portfolio-highlight:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.highlight-number {
    font-size: clamp(2.2rem, 10vw, 4.2rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: clamp(15px, 4vw, 25px);
    line-height: 1;
}

.highlight-label {
    font-size: clamp(1.15rem, 3.5vw, 1.4rem);
    color: white;
    font-weight: 700;
    margin-bottom: clamp(10px, 3vw, 15px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-client {
    font-size: clamp(1rem, 3vw, 1.15rem);
    color: rgba(255,255,255,0.85);
    font-style: italic;
    font-weight: 500;
}

.portfolio-cta {
    text-align: center;
    margin-top: clamp(40px, 8vw, 60px);
}

/* 5. ABOUT SECTION - 2→1 PERFECT */
.about-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: clamp(60px, 12vw, 100px);
    align-items: center;
}

.about-text h2 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: white;
    margin-bottom: clamp(25px, 6vw, 40px);
    font-weight: 800;
    line-height: 1.2;
}

.about-text p {
    color: rgba(255,255,255,0.9);
    font-size: clamp(1.05rem, 3vw, 1.2rem);
    line-height: 1.75;
    margin-bottom: clamp(35px, 8vw, 50px);
}

.about-features {
    display: grid;
    gap: clamp(15px, 4vw, 22px);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: clamp(15px, 4vw, 22px);
    color: rgba(255,255,255,0.95);
    font-size: clamp(1rem, 2.8vw, 1.1rem);
    padding: clamp(12px, 3vw, 18px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(8px);
    color: white;
}

.feature-icon {
    width: clamp(45px, 9vw, 55px);
    height: clamp(45px, 9vw, 55px);
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.1rem, 3.5vw, 1.3rem);
    color: white;
    flex-shrink: 0;
}

.about-image {
    width: 100%;
    height: clamp(300px, 40vw, 450px);
}

.about-image > div {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,107,107,0.25), rgba(78,205,196,0.25));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    border: 2px solid rgba(255,255,255,0.2);
}

/* 6. TESTIMONIALS SECTION - 3→2→1 */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(320px, 48vw, 400px), 1fr));
    gap: clamp(30px, 7vw, 45px);
    margin-top: clamp(50px, 10vw, 80px);
}

.testimonial-card {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(25px);
    padding: clamp(35px, 8vw, 55px);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.18);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: clamp(20px, 5vw, 30px);
    left: clamp(25px, 6vw, 40px);
    font-size: clamp(4rem, 14vw, 7rem);
    color: rgba(255,107,107,0.2);
    font-weight: 900;
    line-height: 1;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.35);
    background: rgba(255,255,255,0.2);
}

.testimonial-text {
    color: rgba(255,255,255,0.95);
    font-size: clamp(1.05rem, 3.2vw, 1.25rem);
    line-height: 1.75;
    margin-bottom: clamp(30px, 7vw, 45px);
    position: relative;
    z-index: 2;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: clamp(15px, 4vw, 25px);
    position: relative;
    z-index: 2;
}

.author-avatar {
    width: clamp(55px, 11vw, 65px);
    height: clamp(55px, 11vw, 65px);
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: clamp(1.05rem, 3.2vw, 1.25rem);
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(255,107,107,0.4);
}

.author-info h4 {
    color: white;
    margin-bottom: clamp(4px, 1.5vw, 8px);
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: 700;
}

.author-info p {
    color: rgba(255,255,255,0.8);
    font-size: clamp(0.9rem, 2.7vw, 1.05rem);
    font-weight: 500;
}

/* MOBILE OPTIMIZATIONS */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: clamp(50px, 10vw, 70px);
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 100%;
    }
    
    .btn-primary, .btn-secondary {
        justify-content: center;
        width: 100%;
        max-width: 350px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .services-grid, .portfolio-stats, .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .hero-section {
        padding: clamp(80px, 25vh, 120px) 15px;
        min-height: 100vh;
    }
    
    .main-content > section {
        padding: clamp(60px, 20vh, 100px) 15px !important;
    }
}

/* PERFECT TOUCH & PERFORMANCE */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover, .testimonial-card:hover, .portfolio-highlight:hover,
    .btn-primary:hover, .btn-secondary:hover {
        transform: none;
    }
    
    .service-card:active, .testimonial-card:active {
        transform: translateY(-5px);
    }
}

/* SMOOTH SCROLL & ANIMATIONS */
@media (prefers-reduced-motion: no-preference) {
    * {
        scroll-behavior: smooth;
    }
}

/* SECTION */
.services-orbit{
    padding: 70px 16px;
    background: rgba(15,15,35,0.85);
}

/* HEADING */
.services-heading{
    text-align: center;
    max-width: 850px;
    margin: 0 auto 45px;
}

.services-heading h2{
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    font-weight: 900;
    background: linear-gradient(135deg,#ff6b6b,#4ecdc4,#45b7d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.15;
    margin-bottom: 14px;
}

.services-heading p{
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

/* GRID */
.services-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
    max-width: 1150px;
    margin: 0 auto;
}

/* CARD */
.service-card{
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: 0.35s ease;
}

.service-card:hover{
    transform: translateY(-6px);
    background: rgba(255,255,255,0.12);
}

/* ICON */
.icon-box{
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.9rem;
    color: #fff;
}

/* GRADIENTS */
.gradient-1{background:linear-gradient(135deg,#ff6b6b,#feca57);}
.gradient-2{background:linear-gradient(135deg,#4ecdc4,#45b7d1);}
.gradient-3{background:linear-gradient(135deg,#96ceb4,#feca57);}

/* TEXT */
.service-card h3{
    font-size: 1.45rem;
    margin-bottom: 10px;
    color: #fff;
}

.service-card p{
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 18px;
}

/* BUTTON */
.service-card a{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: rgba(255,255,255,0.18);
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.service-card a:hover{
    background: rgba(255,255,255,0.35);
}

/* TABLET */
@media(max-width:1024px){
    .services-grid{
        grid-template-columns: repeat(2,1fr);
    }
}

/* MOBILE */
@media(max-width:640px){
    .services-orbit{
        padding: 55px 14px;
    }

    .services-heading{
        margin-bottom: 32px;
    }

    .services-grid{
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .service-card{
        padding: 26px 20px;
    }
}
.google-review-section{
  padding: 80px 16px;
  background: #0f0f23;
}

.gr-heading{
  text-align:center;
  margin-bottom:50px;
}
.gr-heading h2{
  font-size: clamp(2rem,5vw,3.2rem);
  font-weight: 800;
  color:#fff;
}
.gr-heading p{
  color: rgba(255,255,255,0.75);
  margin-top:10px;
}

/* GRID */
.google-review-grid{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap:25px;
}

/* CARD */
.google-review-card{
  background:#fff;
  border-radius:12px;
  padding:20px;
  box-shadow:0 10px 25px rgba(0,0,0,0.25);
}

/* HEADER */
.gr-header{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:10px;
  position:relative;
}
.gr-avatar{
  width:42px;
  height:42px;
  background:#1a73e8;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
}
.gr-header h4{
  margin:0;
  font-size:1rem;
  color:#000;
}
.gr-header span{
  font-size:0.85rem;
  color:#5f6368;
}

/* GOOGLE LOGO */
.google-logo{
  width:55px;
  position:absolute;
  right:0;
}

/* STARS */
.gr-stars{
  color:#fbbc04;
  font-size:1.1rem;
  margin:6px 0 10px;
}
.gr-stars span{
  color:#5f6368;
  font-size:0.85rem;
  margin-left:8px;
}

/* TEXT */
.google-review-card p{
  color:#3c4043;
  font-size:0.95rem;
  line-height:1.6;
}
.faq-section {
  padding: 120px 40px;
  background: linear-gradient(135deg, #0f0f23, #16213e);
  position: relative;
  overflow: hidden;
  color: #fff;
}

.faq-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.circle-1 {
  width: 250px;
  height: 250px;
  background: rgba(255,107,107,0.05);
  top: 15%;
  right: 10%;
}

.circle-2 {
  width: 180px;
  height: 180px;
  background: rgba(78,205,196,0.05);
  bottom: 25%;
  left: 10%;
  animation-duration: 10s;
}

.faq-wrapper {
  max-width: 1000px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.faq-heading {
  text-align: center;
  margin-bottom: 70px;
}

.faq-heading h2 {
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 900;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-heading p {
  max-width: 600px;
  margin: auto;
  color: rgba(255,255,255,0.8);
  font-size: 1.2rem;
}

.faq-container {
  max-width: 800px;
  margin: auto;
}

.faq-item {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  background: rgba(255,255,255,0.05);
}

.faq-question i {
  color: #4ecdc4;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(255,255,255,0.03);
}

.faq-answer p {
  padding: 25px 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 1.1rem;
  line-height: 1.7;
}

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

.martech-footer {
  background: linear-gradient(135deg,#0a0a1a,#0f0f23,#1a1a3e);
  padding: 80px 40px 40px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.footer-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.footer-circle {
  position: absolute;
  border-radius: 50%;
  animation: float 12s ease-in-out infinite;
}

.circle-red {
  width: 400px;
  height: 400px;
  background: rgba(255,107,107,0.04);
  top: 20%;
  right: 10%;
}

.circle-teal {
  width: 300px;
  height: 300px;
  background: rgba(78,205,196,0.04);
  bottom: 20%;
  left: 10%;
  animation-duration: 15s;
}

.footer-wrapper {
  max-width: 1400px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 50px;
  margin-bottom: 50px;
}

/* BRAND */
.brand-head {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.brand-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg,#ff6b6b,#4ecdc4);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 10px 30px rgba(255,107,107,.4);
}

.footer-brand h3 {
  font-size: 1.8rem;
  font-weight: 900;
}

.footer-brand p {
  color: rgba(255,255,255,.7);
}

.brand-desc {
  margin-bottom: 20px;
  line-height: 1.7;
}

/* SOCIAL */
.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: .3s;
}

.social-icons a:hover {
  background: linear-gradient(135deg,#ff6b6b,#4ecdc4);
}

/* LINKS */
.footer-links h4,
.footer-contact h4 {
  margin-bottom: 25px;
  font-size: 1.3rem;
}

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

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

.footer-links a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  transition: .3s;
}

.footer-links a:hover {
  color: #4ecdc4;
  padding-left: 5px;
}

/* CONTACT */
.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.contact-item i {
  font-size: 1.2rem;
  color: #4ecdc4;
}

.footer-contact a {
  color: rgba(255,255,255,.9);
  text-decoration: none;
}

.footer-btn {
  display: inline-flex;
  gap: 10px;
  margin-top: 15px;
  padding: 14px 28px;
  background: linear-gradient(135deg,#ff6b6b,#4ecdc4);
  border-radius: 50px;
  font-weight: 700;
  color: white;
  box-shadow: 0 10px 30px rgba(255,107,107,.4);
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,.6);
  margin-bottom: 15px;
}

.bottom-links {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.bottom-links a {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
}

/* FLOAT */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
