/* 
 * Futurwex IT Solutions - Creative Tech Premium CSS Theme 
 * Fuses Professional Cyber-Teal (#00D2C4) & Energetic Cyber-Orange (#FF6B00)
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg-dark: #050a14;
    --bg-card: rgba(11, 22, 44, 0.7);
    --bg-card-solid: #0d182b;
    --bg-nav: rgba(5, 10, 20, 0.85);
    --accent-teal: #00d2c4;
    --accent-orange: #00d2c4; /* Overruled orange to match logo teal */
    --accent-orange-hover: #00ffef; /* Overruled orange hover to match logo teal */
    --accent-glow: rgba(0, 210, 196, 0.3);
    --accent-orange-glow: rgba(0, 210, 196, 0.4);
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --border: rgba(255, 255, 255, 0.08);
    --border-teal: rgba(0, 210, 196, 0.15);
    --border-orange: rgba(0, 210, 196, 0.2);
    --shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.7);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Global Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(0, 210, 196, 0.05) 0%, transparent 50%);
}

/* Scrollbars */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: rgba(0, 210, 196, 0.2);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-orange);
}

/* Common Typographies & Utilities */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Custom premium badge layout */
.premium-badge-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.premium-line {
    width: 28px;
    height: 2px;
    background-color: var(--accent-orange);
}

.premium-badge-text {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-orange);
}

.premium-section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
}

.premium-section-title span {
    background: linear-gradient(135deg, #ffffff 40%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: var(--text-secondary);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
    font-size: 1.05rem;
}

/* TOP INFO BAR styling */
.top-bar-info {
    background-color: #03070f;
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.top-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact {
    display: flex;
    gap: 24px;
}

.top-bar-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-contact svg {
    width: 16px;
    height: 16px;
    color: var(--accent-orange);
}

.top-bar-socials {
    display: flex;
    gap: 16px;
}

.top-bar-socials a {
    color: var(--text-secondary);
    font-weight: 600;
}

.top-bar-socials a:hover {
    color: var(--accent-orange);
}

/* HEADER & STICKY NAVIGATION */
header {
    position: fixed;
    top: 40px; /* offset for top bar */
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-nav);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

header.scrolled {
    top: 0;
    padding: 4px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background-color: #050a14;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 6px 0;
    color: var(--text-secondary);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ffffff;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-orange);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Switcher */
.lang-switch {
    display: flex;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

.lang-switch a {
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.lang-switch a.active {
    background-color: var(--accent-orange);
    color: #ffffff;
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.8rem;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-premium-primary {
    background-color: var(--accent-orange);
    color: #ffffff;
}

.btn-premium-primary:hover {
    background-color: var(--accent-orange-hover);
    box-shadow: 0 8px 24px var(--accent-orange-glow);
    transform: translateY(-2px);
}

.btn-premium-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-premium-secondary:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.1);
    transform: translateY(-2px);
}

/* 1. STUNNING HERO SECTION (Construction-style premium adapter) */
.hero-premium {
    padding-top: 220px;
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
}

.hero-premium-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-premium-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
    color: #ffffff;
}

.hero-premium-title span {
    background: linear-gradient(135deg, #ffffff 40%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-premium-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-premium-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.arrow-right {
    transition: var(--transition);
}

.btn-premium-primary:hover .arrow-right {
    transform: translateX(5px);
}

/* Floating Badge */
.hero-floating-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(13, 24, 43, 0.85);
    border: 1px solid var(--border-teal);
    border-radius: 12px;
    padding: 16px 24px;
    max-width: 320px;
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow);
}

.hero-floating-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(0, 210, 196, 0.1);
    color: var(--accent-teal);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-floating-icon svg {
    width: 22px;
    height: 22px;
}

.hero-floating-card h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.hero-floating-card p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

/* Hero Right Visual Column */
.hero-premium-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-premium-bg-shape {
    position: absolute;
    width: 90%;
    height: 90%;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.08) 0%, rgba(0, 210, 196, 0.05) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
    animation: morph 20s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 50% 50% 30% 70% / 50% 60% 40% 50%; }
}

.hero-premium-image {
    width: 100%;
    max-width: 440px;
    height: auto;
    object-fit: contain;
    z-index: 2;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.8));
    animation: float 6s ease-in-out infinite;
}

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

/* Overlay experience tag */
.hero-experience-badge {
    position: absolute;
    bottom: 20px;
    right: 10px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ff4a00 100%);
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 25px var(--accent-orange-glow);
    z-index: 3;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-experience-badge h3 {
    font-size: 1.8rem;
    font-weight: 800;
}

.hero-experience-badge p {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 2. ABOUT US SECTION COLLAGE LAYOUT */
.about-premium {
    padding: 100px 0;
    border-top: 1px solid var(--border);
    background: rgba(13, 24, 43, 0.2);
}

.about-premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Collage styling */
.about-collage {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    position: relative;
}

.collage-main-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.collage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.collage-img:hover {
    transform: scale(1.05);
}

.collage-side-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.img-1 {
    height: 380px;
}

.img-2 {
    height: 180px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.img-3 {
    height: 180px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.collage-experience-card {
    background-color: var(--accent-orange);
    color: #ffffff;
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    box-shadow: 0 10px 20px var(--accent-orange-glow);
    border: 1px solid rgba(255,255,255,0.1);
}

.collage-experience-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
}

.collage-experience-card p {
    font-size: 0.75rem;
    font-weight: 600;
}

/* Right content details */
.about-premium-lead {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 25px;
    font-weight: 500;
}

.about-premium-bullets {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.about-bullet-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.bullet-icon {
    width: 26px;
    height: 26px;
    background-color: var(--accent-orange);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 3px;
    box-shadow: 0 4px 10px var(--accent-orange-glow);
}

.about-bullet-item h4 {
    font-size: 1.05rem;
    color: #ffffff;
    margin-bottom: 4px;
}

.about-bullet-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Founder panel */
.about-founder-panel {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--border);
    padding-top: 25px;
}

.founder-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--accent-orange);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    border: 2px solid #ffffff;
}

.about-founder-panel h4 {
    font-size: 1.05rem;
}

.about-founder-panel p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* 3. CORE SERVICES PREMIUM CARDS */
.services-premium {
    padding: 100px 0;
}

.services-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-premium-card {
    background: var(--bg-card-solid);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-premium-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-orange);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.08);
}

.service-card-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-premium-card:hover .service-card-image-wrapper img {
    transform: scale(1.08);
}

.service-card-icon-overlay {
    position: absolute;
    bottom: -24px;
    right: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--accent-orange);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px var(--accent-orange-glow);
    border: 2px solid var(--bg-card-solid);
    z-index: 5;
    transition: var(--transition);
}

.service-premium-card:hover .service-card-icon-overlay {
    background-color: var(--accent-teal);
    box-shadow: 0 5px 15px rgba(0, 210, 196, 0.4);
    transform: rotate(360deg);
}

.service-card-icon-overlay svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.service-card-body {
    padding: 40px 30px 30px 30px;
}

.service-card-body h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card-body p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 25px;
    min-height: 80px;
}

.service-premium-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-arrow-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 1rem;
    transition: var(--transition);
}

.service-premium-card:hover .service-premium-link {
    color: var(--accent-orange);
}

.service-premium-card:hover .service-arrow-btn {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    color: #ffffff;
    transform: translateX(4px);
}

/* 4. COMPLETED PROJECTS (Bespoke portfolio display) */
.portfolio-premium {
    padding: 100px 0;
    border-top: 1px solid var(--border);
    background: rgba(13, 24, 43, 0.25);
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.portfolio-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.portfolio-premium-card {
    background: var(--bg-card-solid);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.portfolio-premium-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
}

.portfolio-img-wrapper {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.portfolio-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-premium-card:hover .portfolio-img-wrapper img {
    transform: scale(1.06);
}

.portfolio-card-info {
    padding: 20px;
}

.portfolio-card-info h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.portfolio-card-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* 5. WHY CHOOSE US PRESET */
.why-us-premium {
    border-top: 1px solid var(--border);
}

.why-us-premium-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.why-us-portrait-wrapper {
    position: relative;
    height: 100%;
    min-height: 580px;
}

.why-us-portrait-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-us-badge {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background-color: var(--accent-orange);
    color: #ffffff;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 25px var(--accent-orange-glow);
    border: 1px solid rgba(255,255,255,0.1);
}

.why-us-badge h3 {
    font-size: 1.5rem;
    margin-bottom: 2px;
}

.why-us-badge p {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
}

.why-us-info-wrapper {
    background-color: #030810;
    padding: 80px 60px;
    border-left: 1px solid var(--border);
}

.why-us-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.why-us-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: 8px;
    transition: var(--transition);
}

.why-us-card:hover {
    border-color: var(--accent-orange);
    background: rgba(255, 107, 0, 0.02);
}

.why-card-icon {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--accent-orange);
    margin-bottom: 12px;
}

.why-us-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.why-us-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* 6. OUR TEAM MEMBERS SLICK GRID */
.team-premium {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.team-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-premium-card {
    background: var(--bg-card-solid);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-premium-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-orange);
}

.team-img-wrapper {
    height: 280px;
    overflow: hidden;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-premium-card:hover .team-img-wrapper img {
    transform: scale(1.05);
}

.team-premium-body {
    padding: 20px;
    text-align: center;
}

.team-premium-body h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.team-premium-body p {
    font-size: 0.8rem;
    color: var(--accent-orange);
    font-weight: 600;
}

/* 7. DYNAMIC STEP WORKFLOW PROCESS */
.process-premium {
    padding: 100px 0;
    border-top: 1px solid var(--border);
    background: rgba(13, 24, 43, 0.2);
}

.process-premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-card {
    background: var(--bg-card-solid);
    border: 1px solid var(--border);
    border-bottom: 3px solid var(--accent-orange);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.05);
}

.process-step-num {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 2.2rem;
    font-weight: 900;
    color: rgba(255, 107, 0, 0.15);
    transition: var(--transition);
}

.process-card:hover .process-step-num {
    color: var(--accent-orange);
}

.process-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    margin-top: 15px;
}

.process-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* 8. CLIENT TESTIMONIAL CARDS */
.testimonials-premium {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.testimonials-premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.testimonial-card {
    background: var(--bg-card-solid);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-stars {
    color: var(--accent-orange);
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-content {
    color: var(--text-primary);
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
}

.testimonial-client-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-client-wrapper img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-orange);
}

.testimonial-client-wrapper h4 {
    font-size: 1rem;
}

.testimonial-client-wrapper p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* 9. TRANSPARENT PRICING PLANS */
.pricing-premium {
    padding: 100px 0;
    border-top: 1px solid var(--border);
    background: rgba(13, 24, 43, 0.25);
}

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

.pricing-premium-card {
    background: var(--bg-card-solid);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-premium-card.active {
    border-color: var(--accent-orange);
    box-shadow: 0 15px 35px rgba(255, 107, 0, 0.05);
}

.pricing-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.pricing-badge.active {
    background: var(--accent-orange);
    color: #ffffff;
}

.pricing-premium-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.price-value {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--accent-orange);
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
}

.price-value span {
    font-size: 1.1rem;
    font-weight: 600;
}

.pricing-premium-card ul {
    list-style: none;
    margin-bottom: 35px;
    flex-grow: 1;
}

.pricing-premium-card li {
    margin-bottom: 14px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* 10. INQUIRY / QUOTATION FORM DISPLAY */
.inquiry-form-section {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.inquiry-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.inquiry-form-card {
    background: var(--bg-card-solid);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow);
}

/* Premium Form Elements Alignment & Styling */
.inquiry-form-card form {
    display: block;
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
    display: block;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100% !important;
    display: block;
    padding: 12px 16px;
    background: rgba(5, 10, 20, 0.85);
    border: 1px solid var(--border-teal);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
    box-sizing: border-box;
}

.form-control:focus {
    border-color: var(--accent-teal);
    box-shadow: 0 0 12px rgba(0, 210, 196, 0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    width: 100% !important;
    box-sizing: border-box;
}

.form-alert {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: none;
}

.form-alert.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid #10b981;
    color: #10b981;
    display: block;
}

.form-alert.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #ef4444;
    color: #ef4444;
    display: block;
}

.inquiry-info-card {
    padding-left: 20px;
}

.stats-premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-premium-circle {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.stat-premium-circle:hover {
    border-color: var(--accent-orange);
    background: rgba(255, 107, 0, 0.02);
}

.stat-premium-circle h3 {
    font-size: 1.8rem;
    color: var(--accent-orange);
    margin-bottom: 4px;
}

.stat-premium-circle p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* 11. BLOG & TECH INSIGHTS LAYOUT */
.blog-premium {
    padding: 100px 0;
    border-top: 1px solid var(--border);
    background: rgba(13, 24, 43, 0.2);
}

.blog-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-premium-card {
    background: var(--bg-card-solid);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-premium-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent-orange);
}

.blog-img-wrapper {
    height: 200px;
    overflow: hidden;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-premium-card:hover .blog-img-wrapper img {
    transform: scale(1.05);
}

.blog-premium-body {
    padding: 30px;
}

.blog-metadata {
    font-size: 0.75rem;
    color: var(--accent-orange);
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-premium-body h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-premium-body h3 a:hover {
    color: var(--accent-orange);
}

.blog-premium-body p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.blog-read-more {
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
}

.blog-read-more:hover {
    color: var(--accent-orange);
}

/* 12. NEWSLETTER PREMIUM BOTTOM BANNER */
.newsletter-premium {
    padding: 80px 0;
    border-top: 1px solid var(--border);
    background-color: #03070f;
}

.newsletter-premium-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05) 0%, rgba(0, 210, 196, 0.03) 100%);
    border: 1px solid var(--border-teal);
    border-radius: 20px;
    padding: 50px;
    overflow: hidden;
    position: relative;
}

.newsletter-content h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.newsletter-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 0.95rem;
    max-width: 580px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    gap: 12px;
}

.newsletter-input {
    flex-grow: 1;
    padding: 12px 18px;
    border-radius: 6px;
    background: rgba(5,10,20,0.8);
    border: 1px solid var(--border);
    color: #ffffff;
    outline: none;
    transition: var(--transition);
}

.newsletter-input:focus {
    border-color: var(--accent-orange);
}

.newsletter-btn {
    padding: 12px 28px;
    background-color: var(--accent-orange);
    color: #ffffff;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background-color: var(--accent-orange-hover);
    box-shadow: 0 5px 15px var(--accent-orange-glow);
}

.newsletter-image-wrapper {
    height: 100%;
    min-height: 240px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.newsletter-img {
    max-height: 260px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}

/* FOOTER STYLING */
footer {
    background: #03070e;
    border-top: 1px solid var(--border);
    padding: 80px 0 30px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-desc {
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-orange);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-secondary);
}

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

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--accent-orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* FLOATING WIDGETS */
/* WhatsApp Button - Bottom Left */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #128c7e;
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Back to Top - Bottom Right */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.top-btn {
    width: 50px;
    height: 50px;
    background-color: var(--bg-card-solid);
    border: 1px solid var(--border);
    color: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}

.top-btn:hover {
    border-color: var(--accent-orange);
    background-color: var(--accent-orange);
    color: #ffffff;
    transform: translateY(-3px);
}

.top-btn svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.5;
}

/* SERVICE DETAILS SUBPAGE styling */
.page-header {
    padding-top: 180px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(13, 24, 43, 0.4) 0%, transparent 100%);
}

.service-detail-wrapper {
    padding: 80px 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 50px;
}

.service-rich-content {
    background: var(--bg-card-solid);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 50px;
    box-shadow: var(--shadow);
}

.service-rich-content h4 {
    font-size: 1.4rem;
    color: var(--accent-orange);
    margin: 35px 0 15px 0;
}

.service-rich-content ul {
    margin-left: 20px;
    margin-bottom: 25px;
}

.service-rich-content li {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.service-rich-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.service-sidebar-widget {
    background: var(--bg-card-solid);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 1.15rem;
    margin-bottom: 20px;
    border-left: 3px solid var(--accent-orange);
    padding-left: 12px;
}

.sidebar-services-list {
    list-style: none;
}

.sidebar-services-list li {
    margin-bottom: 12px;
}

.sidebar-services-list a {
    display: block;
    padding: 10px 14px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
    color: var(--text-secondary);
}

.sidebar-services-list a:hover,
.sidebar-services-list a.active {
    color: var(--accent-orange);
    border-color: var(--accent-orange);
    background: rgba(255, 107, 0, 0.04);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .hero-premium-title {
        font-size: 2.8rem;
    }
    .hero-premium-grid, .about-premium-grid, .why-us-premium-grid, .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .services-premium-grid, .portfolio-premium-grid, .team-premium-grid, .process-premium-grid, .pricing-premium-grid, .blog-premium-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .why-us-portrait-wrapper {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .top-bar-info {
        display: none;
    }
    header {
        top: 0;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-dark);
        border-top: 1px solid var(--border);
        flex-direction: column;
        align-items: center;
        padding: 60px 24px;
        gap: 30px;
        transition: var(--transition);
        z-index: 998;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-actions {
        margin-left: auto;
        margin-right: 15px;
    }

    .services-premium-grid, .portfolio-premium-grid, .team-premium-grid, .process-premium-grid, .pricing-premium-grid, .blog-premium-grid, .testimonials-premium-grid, .inquiry-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-premium-wrapper {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .newsletter-image-wrapper {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
