/* style.css */
:root {
    --bg-primary: #03040B;
    --bg-card: #0E1117;
    --bg-card-hover: #131720;
    --accent-primary: #0cffff;
    --accent-primary-hover: #0aebeb;
    --btn-purple: #5b45ff;
    --btn-purple-hover: #4A35ED;
    --text-primary: #ffffff;
    --text-secondary: #99A1AF;
    --border-color: rgba(255, 255, 255, 0.05);
    --border-radius-lg: 32px;
    --border-radius-md: 24px;
    --border-radius-sm: 12px;
    --transition-fast: 0.2s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    /* Subtle grid background pattern */
    background-image: linear-gradient(var(--border-color) 1px, transparent 1px),
                      linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
    background-size: 80px 80px;
    background-position: center top;
}

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

/* Typography */
h1, h2, h3, h4 {
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.2;
}

h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

p {
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    cursor: pointer;
    font-size: 15px;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: #000000;
    box-shadow: 0 0 20px rgba(12, 255, 255, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-primary-hover);
    box-shadow: 0 0 35px rgba(12, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(12, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
    border-radius: 100px; /* Pill shape for hero buttons */
}

.btn-block {
    width: 100%;
    margin-top: auto;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* Cards */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(600px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(12, 255, 255, 0.08), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

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

.card:hover {
    border-color: rgba(12, 255, 255, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 0px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.hero-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 60vh;
    background: radial-gradient(ellipse at center, rgba(12, 255, 255, 0.2) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.hero-title {
    font-size: clamp(40px, 6vw, 76px);
    letter-spacing: -2px;
    margin-bottom: 24px;
    font-weight: 500;
    color: #ffffff;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 18px);
    max-width: 700px;
    margin: 0 auto 48px;
    color: #8b92a5;
    line-height: 1.6;
}

.hero-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 100px;
}

.btn-with-icon {
    background-color: var(--btn-purple);
    color: #ffffff;
    padding: 8px 8px 8px 24px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-with-icon:hover {
    background-color: var(--btn-purple-hover);
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(91, 69, 255, 0.3);
}

.btn-with-icon .btn-icon {
    width: 44px;
    height: 44px;
    background: #ffffff;
    color: var(--btn-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.btn-with-icon:hover .btn-icon {
    transform: translateX(4px);
}

.trusted-customers {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.avatar-group {
    display: flex;
}

.avatar-group img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg-primary);
    margin-left: -12px;
    position: relative;
    object-fit: cover;
}

.avatar-group img:first-child {
    margin-left: 0;
    z-index: 3;
}
.avatar-group img:nth-child(2) { z-index: 2; }
.avatar-group img:nth-child(3) { z-index: 1; }

.trusted-text {
    display: flex;
    flex-direction: column;
}

.trusted-text strong {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.2;
}

.trusted-text span {
    font-size: 12px;
    color: #8b92a5;
}

/* Tech Marquee */
.tech-marquee-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    padding: 30px 0;
    background: linear-gradient(90deg, var(--bg-primary) 0%, transparent 10%, transparent 90%, var(--bg-primary) 100%);
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.tech-marquee {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
    gap: 80px;
    /* Initial padding shouldn't affect the seamless jump if gap matches */
    padding-left: 40px;
    padding-right: 40px;
}

.tech-item {
    font-size: 56px;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    filter: grayscale(100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-item:hover {
    color: #ffffff;
    filter: grayscale(0%);
    transform: scale(1.1);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

/* Why Choose & FAQ Section */
.why-faq {
    padding: 140px 0;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.faq-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}

.faq-content {
    flex: 1;
    max-width: 500px;
    position: sticky;
    top: 120px;
}

.faq-content h2 {
    font-size: clamp(36px, 4vw, 52px);
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.faq-content p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-accordion-box {
    flex: 1.2;
    background: linear-gradient(135deg, #0d326b 0%, #0e1b4d 100%);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.accordion {
    display: flex;
    flex-direction: column;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
}

.accordion-item:first-child {
    padding-top: 0;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
    transition: color 0.3s ease;
}

.accordion-header:hover {
    color: var(--accent-primary);
}

.accordion-icon {
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 400px;
    margin-top: 16px;
}

.accordion-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
}

.faq-footer {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
}

.faq-footer span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* Shared Section Header */
.section-header {
    text-align: center;
    margin-bottom: 72px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Key Features Section */
.key-features {
    padding: 100px 0;
}

.features-header {
    text-align: left;
    margin-bottom: 60px;
}

.features-header h2 {
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 16px;
    font-weight: 500;
}

.features-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 800px;
}

.features-grid-custom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 32px;
}

@media (max-width: 900px) {
    .features-grid-custom {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid-custom {
        grid-template-columns: 1fr;
    }
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(18, 93, 155, 0.8) 0%, rgba(5, 25, 50, 0.9) 70%, rgba(2, 8, 20, 1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(30, 70, 120, 0.3);
    position: relative;
    overflow: hidden;
}

.feature-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 20%;
    right: 20%;
    height: 10px;
    background: radial-gradient(ellipse, rgba(150, 210, 255, 0.6) 0%, transparent 70%);
    border-radius: 100%;
}

.feature-icon-wrapper svg {
    width: 28px;
    height: 28px;
    color: #ffffff;
    stroke-width: 1.5;
    z-index: 1;
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #ffffff;
}

.feature-item p {
    font-size: 15px;
    color: #99A1AF;
    line-height: 1.6;
}

/* Pricing / Quote CTA Section */
.pricing {
    padding: 100px 0 140px;
}

/* Quote CTA Section Grid */
.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

@media (max-width: 900px) {
    .quote-grid {
        grid-template-columns: 1fr;
    }
}

/* Agency Stat Card (Left) */
.agency-stat-card {
    background: linear-gradient(145deg, #092c57 0%, #031024 100%);
    border-radius: var(--border-radius-lg);
    padding: 60px 48px 48px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
    0% { transform: translateY(0px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4); }
    50% { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6); }
    100% { transform: translateY(0px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4); }
}

.agency-stat-card::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at 70% 30%, rgba(30, 130, 210, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

.stat-badge {
    position: absolute;
    top: 40px;
    left: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.stat-number {
    font-size: 130px;
    font-weight: 300;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 24px;
    margin-top: auto;
    letter-spacing: -4px;
}

.stat-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 95%;
}

/* Animated Ambient Glow Below Card */
.quote-left-col {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ambient-glow-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 250px;
    z-index: 0;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: driftGlow 8s ease-in-out infinite alternate;
}

.glow-orb.orb-1 {
    width: 200px;
    height: 200px;
    background: var(--accent-primary);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.glow-orb.orb-2 {
    width: 220px;
    height: 220px;
    background: var(--btn-purple);
    bottom: 10%;
    right: 15%;
    animation-delay: -4s;
}

@keyframes driftGlow {
    0% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    50% { transform: translate(30px, -40px) scale(1.2); opacity: 0.6; }
    100% { transform: translate(-30px, 30px) scale(0.9); opacity: 0.3; }
}

/* Right Tally Form Wrapper */
.tally-embed-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #ffffff;
    border: 1px solid rgba(12, 255, 255, 0.15);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    min-height: 480px;
}

/* Premium Services Section (Vibrant Gradient Cards) */
.premium-services {
    padding: 100px 0;
}

.services-marquee-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    padding: 20px 0;
}

.services-marquee-container {
    display: flex;
    overflow: hidden;
    gap: 32px;
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.services-marquee {
    display: flex;
    gap: 32px;
    flex-shrink: 0;
    width: max-content;
    animation: scrollMarquee 30s linear infinite;
}

.services-marquee-container:hover .services-marquee {
    animation-play-state: paused;
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% - 32px)); }
}

.premium-service-card {
    width: 380px;
    flex-shrink: 0;
    background-color: #02060c;
    background-image: 
        radial-gradient(circle at bottom left, rgba(0, 102, 255, 0.4) 0%, transparent 60%),
        radial-gradient(circle at right center, rgba(0, 200, 255, 0.15) 0%, transparent 40%);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
}

.premium-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 150, 255, 0.2);
}

.ps-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    border-radius: 18px 18px 0 0;
}

.ps-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, #02060d 0%, transparent 100%);
    pointer-events: none;
}

.ps-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.premium-service-card:hover .ps-image img {
    transform: scale(1.08); /* Animated image on hover */
}

.ps-content {
    padding: 24px 32px 40px 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.ps-content h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 600;
}

.ps-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0 60px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 64px;
    position: relative;
    overflow: hidden;
}

.contact-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: var(--accent-primary);
    filter: blur(150px);
    opacity: 0.1;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(30%, -30%);
}

.contact-info h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 24px;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 400px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 16px;
}

.detail-icon {
    font-size: 24px;
    color: var(--accent-primary);
}

.contact-detail a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.contact-detail a:hover {
    color: var(--accent-primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 16px;
    color: var(--text-primary);
    font-size: 16px;
    transition: var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 15px rgba(12, 255, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(12, 255, 255, 0.03) 100%);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 64px;
}

.footer-logo p {
    margin-top: 16px;
    max-width: 250px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links h4 {
    margin-bottom: 8px;
    color: var(--text-primary);
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
}

/* Global Animations */
.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero-cta-wrapper {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 60px;
        gap: 24px;
    }
    .hero {
        padding-top: 160px;
    }
    .hero-title {
        font-size: clamp(28px, 4vw, 36px);
    }
    
    .faq-row {
        flex-direction: column;
        gap: 40px;
    }
    .faq-content {
        position: static;
        max-width: 100%;
        text-align: center;
    }
    .faq-accordion-box {
        padding: 24px;
    }
    .faq-footer {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        text-align: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 32px;
        gap: 40px;
    }
}

/* Contact Page & Minimal Form */
.contact-page-hero {
    padding: 180px 0 60px;
}
.contact-page-hero .eyebrow {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
    display: block;
}
.contact-page-hero .giant-title {
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.1;
    letter-spacing: -2px;
    font-weight: 500;
}

.contact-page-form {
    padding: 40px 0 100px;
}
.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.form-row {
    display: flex;
    gap: 40px;
}
@media (max-width: 800px) {
    .form-row {
        flex-direction: column;
        gap: 60px;
    }
}
.minimal-form input {
    flex: 1;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 16px;
    padding: 12px 12px 12px 0;
    transition: all 0.3s;
}
.minimal-form input:focus {
    outline: none;
    border-bottom-color: var(--btn-purple);
}
.minimal-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}
.minimal-form .full-width {
    width: 100%;
}
.minimal-form .full-width input {
    width: 100%;
}
.btn-rounded {
    align-self: flex-start;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 16px;
    background: #2a256f;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background 0.3s;
}
.btn-rounded:hover {
    background: #392b95;
}
.btn-rounded .arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    font-size: 14px;
}

/* Global Contact Card */
.global-contact-card {
    padding: 80px 0 20px;
}
.contact-info-card {
    background: linear-gradient(135deg, #071b36 0%, #030c1a 100%);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
@media (max-width: 900px) {
    .contact-info-card {
        flex-direction: column;
        padding: 40px;
        gap: 60px;
    }
}
.info-left .eyebrow {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    margin-top: 0;
}
.info-left h2 {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 400;
    max-width: 400px;
    line-height: 1.2;
}
.info-right {
    display: flex;
    gap: 80px;
}
@media (max-width: 600px) {
    .info-right {
        flex-direction: column;
        gap: 40px;
    }
}
.info-block h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}
.info-block .divider-line {
    width: 24px;
    height: 2px;
    background: #ffffff;
    margin-bottom: 24px;
}
.info-block p {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 16px;
}
.info-block p a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}
.info-block p a:hover {
    color: var(--accent-primary);
}
.info-block .sub-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Modern Footer Styles */
.footer-modern {
    padding: 100px 0 40px;
    background: radial-gradient(ellipse at bottom left, rgba(12, 66, 115, 0.25) 0%, var(--bg-primary) 70%);
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}
.footer-grid-modern {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}
@media (max-width: 900px) {
    .footer-grid-modern {
        flex-direction: column;
    }
}
.footer-left-modern {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
}
.footer-eyebrow {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 500;
}
.footer-desc-modern {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 380px;
}
.footer-hashtag {
    font-size: clamp(60px, 9vw, 110px);
    font-weight: 800;
    color: #0c4273;
    line-height: 1;
    letter-spacing: -3px;
    margin-top: auto;
    opacity: 0.9;
}
.footer-right-modern {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
@media (max-width: 900px) {
    .footer-right-modern {
        align-items: flex-start;
    }
}
.footer-nav-modern {
    display: flex;
    gap: 80px;
    margin-bottom: 60px;
}
.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 80px;
}
.footer-nav-col a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.2s;
}
.footer-nav-col a:hover {
    color: var(--accent-primary);
}
.footer-contact-modern {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 32px;
}
@media (max-width: 900px) {
    .footer-contact-modern {
        align-items: flex-start;
    }
}
.footer-contact-modern a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s;
}
.footer-contact-modern a:hover {
    color: var(--accent-primary);
}
.footer-social-modern {
    display: flex;
    gap: 20px;
}
.footer-social-modern a {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}
.footer-social-modern a:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-3px);
}
.footer-bottom-modern {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media (max-width: 600px) {
    .footer-bottom-modern {
        flex-direction: column;
        gap: 24px;
        align-items: center;
        text-align: center;
    }
}
.footer-bottom-modern p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   RESPONSIVE DESIGN SYSTEM OVERRIDES (Mobile & Tablet)
   ============================================================ */

@media (max-width: 1024px) {
    .hero-title {
        font-size: clamp(36px, 5vw, 60px);
    }
    .hero {
        padding-top: 140px;
    }
    .about-grid, .contact-wrapper {
        gap: 40px;
        padding: 60px 0;
    }
    .features-grid-custom {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Navbar Stack */
    .nav-container {
        flex-direction: column;
        gap: 16px;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    /* Hero */
    .hero-title {
        font-size: clamp(32px, 8vw, 42px);
    }
    .hero-subtitle {
        font-size: 16px;
        padding: 0 10px;
    }
    .hero-cta-wrapper {
        flex-direction: column;
        gap: 24px;
    }
    
    /* General Layouts */
    .why-faq .faq-row {
        flex-direction: column;
    }
    .faq-accordion-box {
        margin-top: 32px;
    }
    .features-grid-custom {
        grid-template-columns: 1fr;
    }
    .premium-service-card {
        width: 100%;
        max-width: 380px;
    }
    
    /* Shared Page Grids */
    .about-grid {
        grid-template-columns: 1fr;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 32px;
    }
    .minimal-form .form-row {
        flex-direction: column;
        gap: 32px;
    }
    .btn-rounded {
        width: 100%;
        justify-content: center;
    }
    
    /* Footer & Global Banners */
    .global-contact-card {
        padding: 40px 0 0;
    }
    .contact-info-card {
        flex-direction: column;
        padding: 32px;
        gap: 40px;
    }
    .info-right {
        flex-direction: column;
        gap: 32px;
    }
    .footer-grid-modern {
        flex-direction: column;
        gap: 40px;
    }
    .footer-nav-modern {
        flex-direction: column;
        gap: 32px;
        width: 100%;
    }
    .footer-hashtag {
        font-size: clamp(40px, 10vw, 60px);
    }
    .footer-right-modern,
    .footer-contact-modern {
        align-items: flex-start;
    }
}
