/* ==========================================================================
   INNOVATECHGT DESIGN SYSTEM & CUSTOM PROPERTIES
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-dark: #070a13;
    --bg-card: #0f1526;
    --bg-glass: rgba(15, 21, 38, 0.7);
    --bg-nav: rgba(7, 10, 19, 0.8);
    
    --color-primary: #00f2fe;     /* Electric Cyan */
    --color-secondary: #7f00ff;   /* Neon Violet */
    --color-accent: #4facfe;      /* Ocean Blue */
    --color-success: #10b981;     /* Mint Green */
    --color-error: #ff4757;       /* Soft Coral */
    
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    --grad-glow: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    --grad-card: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    
    /* Shadows & Borders */
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glass-active: rgba(0, 242, 254, 0.3);
    --shadow-neon: 0 0 25px rgba(0, 242, 254, 0.15);
    --shadow-neon-hover: 0 0 35px rgba(0, 242, 254, 0.3);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
    
    /* Layout */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & GLOBAL STYLES
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-dark);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.25;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

input, select, textarea, button {
    font-family: inherit;
    color: inherit;
    outline: none;
    border: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* Reusable Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

/* ==========================================================================
   TYPOGRAPHY & BUTTONS UTILITIES
   ========================================================================== */

.text-gradient {
    background: var(--grad-glow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    gap: 0.5rem;
}

.btn-primary {
    background: var(--grad-primary);
    color: #030712;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon-hover);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-neon);
}

.btn-icon {
    transition: var(--transition);
}

.btn-secondary:hover .btn-icon {
    transform: translateX(3px);
}

/* ==========================================================================
   HEADER & GLASS NAVIGATION
   ========================================================================== */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.main-header.scrolled {
    padding: 0.8rem 0;
    background: var(--bg-nav);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-glass);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.logo-accent {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-geo {
    color: var(--color-secondary);
    font-size: 1.1rem;
    margin-left: 2px;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-primary);
    transition: var(--transition);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile Hamburger Menu */
.mobile-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-toggle:hover {
    border-color: var(--color-primary);
}

.hamburger {
    width: 18px;
    height: 2px;
    background-color: #ffffff;
    display: block;
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    width: 18px;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
    left: 0;
    transition: var(--transition);
}

.hamburger::before { top: -6px; }
.hamburger::after { bottom: -6px; }

/* Hamburger Transform to X */
.mobile-toggle.active .hamburger {
    background-color: transparent;
}
.mobile-toggle.active .hamburger::before {
    transform: translateY(6px) rotate(45deg);
}
.mobile-toggle.active .hamburger::after {
    transform: translateY(-6px) rotate(-45deg);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
    position: relative;
    padding: 10rem 0 6rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Aesthetic ambient glows */
.hero-glow-1 {
    position: absolute;
    top: 15%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-glow-2 {
    position: absolute;
    bottom: 5%;
    right: -10%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(127, 0, 255, 0.06) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-primary);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(0, 242, 254, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 242, 254, 0); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-avatars {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--grad-primary);
    border: 2px solid var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #030712;
}

.trust-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    max-width: 250px;
    line-height: 1.4;
}

/* Hero visual & Floating elements */
.hero-visual {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.hero-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.6));
    border-radius: var(--radius-md);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

.floating-card {
    position: absolute;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.floating-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
}

.card-1 {
    top: 15%;
    left: -15%;
    animation: float 5s ease-in-out infinite;
}

.card-2 {
    bottom: 10%;
    right: -10%;
    animation: float 6s ease-in-out infinite 1s;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cyan-icon {
    background: rgba(0, 242, 254, 0.1);
    color: var(--color-primary);
}

.gold-icon {
    background: rgba(127, 0, 255, 0.1);
    color: var(--color-secondary);
}

.floating-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

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

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

/* ==========================================================================
   ADVANTAGES SECTION
   ========================================================================== */

.advantages-section {
    position: relative;
    padding: 8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.section-header {
    max-width: 700px;
    margin: 0 auto 5rem auto;
}

.section-tag {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--color-primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.6rem;
    margin-bottom: 1.25rem;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.adv-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.adv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--grad-card);
    z-index: 0;
    pointer-events: none;
}

.adv-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-neon);
}

.adv-icon-wrapper {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.adv-card:hover .adv-icon-wrapper {
    background: var(--grad-primary);
    color: #030712;
    border-color: transparent;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

.adv-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.adv-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */

.services-section {
    position: relative;
    padding: 8rem 0;
    background-color: rgba(15, 21, 38, 0.2);
}

.services-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(127, 0, 255, 0.04) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--grad-primary);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 242, 254, 0.2);
    box-shadow: var(--shadow-card);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon-bg {
    width: 60px;
    height: 60px;
    background: rgba(0, 242, 254, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--color-primary);
    transition: var(--transition);
}

.service-card:hover .service-icon-bg {
    transform: rotate(5deg) scale(1.05);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-primary);
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */

.pricing-section {
    position: relative;
    padding: 8rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    align-items: flex-start;
}

.pricing-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 3rem 2.25rem;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-card);
}

/* Featured / Highlighted Plan Card */
.pricing-card.featured {
    border: 2px solid var(--color-primary);
    box-shadow: 0 15px 45px rgba(0, 242, 254, 0.08);
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    box-shadow: 0 20px 50px rgba(0, 242, 254, 0.15), var(--shadow-neon-hover);
    transform: translateY(-8px) scale(1.03);
}

.badge-featured {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--grad-primary);
    color: #030712;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
}

.card-tier {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.card-price {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
}

.currency {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-right: 4px;
}

.period {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-left: 6px;
}

.price-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    min-height: 48px;
}

.divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    margin-bottom: 2rem;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.plan-features li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
}

.check-icon {
    color: var(--color-primary);
    flex-shrink: 0;
}

.x-icon {
    color: var(--text-muted);
    flex-shrink: 0;
}

.btn-pricing {
    width: 100%;
}

/* ==========================================================================
   PORTFOLIO SHOWCASE SECTION
   ========================================================================== */

.portfolio-section {
    position: relative;
    padding: 8rem 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 3rem;
}

.project-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-card);
}

/* Virtual Browser Viewport Mockups */
.project-preview {
    height: 230px;
    background: #182235;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-header {
    height: 32px;
    background: #0f172a;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 0.4rem;
    position: relative;
}

.mockup-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.mockup-header .dot:nth-child(1) { background: #ff5f56; }
.mockup-header .dot:nth-child(2) { background: #ffbd2e; }
.mockup-header .dot:nth-child(3) { background: #27c93f; }

.mockup-url {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.03);
    padding: 0.2rem 2.5rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-body {
    padding: 1.25rem;
    height: calc(100% - 32px);
    transition: transform 1.5s ease-in-out;
}

/* Interactive preview scrolling effect on card hover */
.project-card:hover .mockup-body {
    transform: translateY(-40px);
}

/* Mockup Layouts */
.preview-1 .dentist-hero {
    height: 250px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: 8px;
    padding: 1.5rem;
    position: relative;
}

.dentist-hero::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 60px;
    height: 60px;
    background: rgba(2, 132, 199, 0.2);
    border-radius: 50%;
}

.hero-text-shimmer {
    width: 65%;
    height: 18px;
    background: #0284c7;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    opacity: 0.6;
}

.hero-text-shimmer::after {
    content: '';
    display: block;
    width: 50%;
    height: 10px;
    background: #0284c7;
    border-radius: 4px;
    margin-top: 15px;
    opacity: 0.4;
}

.hero-button-shimmer {
    width: 80px;
    height: 24px;
    background: #0ea5e9;
    border-radius: 50px;
    margin-top: 30px;
}

.preview-2 .shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    height: 220px;
}

.shop-item {
    background: #1e293b;
    border-radius: 6px;
    height: 90px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

.shop-item::before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 60%;
    height: 6px;
    background: var(--text-muted);
    border-radius: 2px;
}

.shop-item::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #fed7aa 0%, #fdbb2d 100%);
    border-radius: 4px;
}

.preview-3 .law-hero {
    height: 250px;
    background: #0f172a;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.08);
}

.law-text-shimmer {
    width: 85%;
    height: 14px;
    background: #d4af37; /* Elegant Gold */
    border-radius: 2px;
    position: relative;
}

.law-text-shimmer::before {
    content: '';
    display: block;
    width: 60%;
    height: 8px;
    background: var(--text-secondary);
    margin-top: 15px;
    border-radius: 2px;
}

.law-text-shimmer::after {
    content: '';
    display: block;
    width: 40%;
    height: 8px;
    background: var(--text-secondary);
    margin-top: 30px;
    border-radius: 2px;
}

.project-details {
    padding: 2rem;
}

.project-category {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.6rem;
}

.project-details h3 {
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
}

.project-details p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ==========================================================================
   CONTACT SECTION WITH GLASSMOPRHIC FORM
   ========================================================================== */

.contact-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.contact-glow-1 {
    position: absolute;
    top: 30%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.method-icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.method-details h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.method-details a, 
.method-details p {
    font-size: 1.05rem;
    font-weight: 500;
    color: #ffffff;
}

.method-details a:hover {
    color: var(--color-primary);
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.flag-icon {
    font-size: 1.1rem;
}

/* Glassmorphic Form Styling */
.contact-form-box {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 3.5rem 3rem;
    box-shadow: var(--shadow-card);
}

.form-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    position: relative;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--grad-primary);
    border-radius: 10px;
}

.project-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 0.9rem 1.1rem;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
}

/* Custom placeholder */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* Dropdown styling adjustment */
.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.1rem center;
    padding-right: 2.5rem;
}

/* Style options in dark theme */
.form-group select option {
    background-color: var(--bg-dark);
    color: #ffffff;
}

/* Validation Styling */
.error-msg {
    font-size: 0.8rem;
    color: var(--color-error);
    display: none;
    margin-top: 2px;
}

.form-group.invalid input,
.form-group.invalid select {
    border-color: var(--color-error);
    box-shadow: 0 0 10px rgba(255, 71, 87, 0.15);
}

.form-group.invalid .error-msg {
    display: block;
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

.btn-icon-submit {
    transition: var(--transition);
}

.btn-submit:hover .btn-icon-submit {
    transform: translate(2px, -2px);
}

/* Interactive form response */
.form-status {
    border-radius: var(--radius-sm);
    padding: 1rem;
    font-size: 0.9rem;
    display: none;
    text-align: center;
}

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

.form-status.error {
    display: block;
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid var(--color-error);
    color: var(--color-error);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */

.main-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: #04060d;
    padding: 5rem 0 2rem 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.brand-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 1.25rem 0 1.75rem 0;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.social-links a:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background: rgba(0, 242, 254, 0.05);
    transform: translateY(-3px);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.footer-links-col h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-links-col a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-links-col a:hover {
    color: var(--color-primary);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 2rem;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Medium Devices (Tablets, less than 1024px) */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 550px;
        margin: 0 auto;
        width: 100%;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contact-info-panel {
        text-align: center;
    }
    
    .contact-methods {
        align-items: center;
    }
    
    .location-badge {
        justify-content: center;
    }
}

/* Mobile Navigation Trigger */
@media (max-width: 768px) {
    .main-header {
        padding: 1rem 0;
    }
    
    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #080c14e6;
        backdrop-filter: blur(25px);
        border-left: 1px solid var(--border-glass);
        padding: 7rem 2.5rem 3rem 2.5rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav-link {
        font-size: 1.15rem;
    }
    
    .btn-nav {
        display: none; /* Hide on mobile navbar directly */
    }
    
    /* Layout Adjustments */
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .floating-card {
        padding: 0.75rem;
    }
    
    .card-1 {
        left: -5%;
        top: 10%;
    }
    
    .card-2 {
        right: -5%;
        bottom: 5%;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 2.5rem 1.75rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px) scale(1);
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links-grid {
        gap: 2rem;
    }
}

/* Small devices (smaller phones, less than 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-form-box {
        padding: 2.5rem 1.5rem;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
    }
}
