/* ROOT VARIABLES */
:root {
    --dark-bg: #000000;
    --accent: #007aff;
    --glass: rgba(255, 255, 255, 0.04);
    --border: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-dim: #a1a1a1;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* HEADER STYLE */
.main-header {
    position: fixed;
    top: 0; width: 100%;
    z-index: 1000;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
    padding: 1.2rem 0;
}

nav { display: flex; justify-content: space-between; align-items: center; }

.logo { font-size: 1.5rem; font-weight: 800; letter-spacing: -1px; }
.logo span { color: var(--accent); }

.nav-links { list-style: none; display: flex; align-items: center; }
.nav-links li { margin-left: 30px; }
.nav-links a { text-decoration: none; color: var(--text-main); font-size: 0.9rem; font-weight: 500; transition: 0.3s; }
.nav-links a:hover { color: var(--accent); }

.nav-cta {
    background: var(--accent);
    padding: 8px 18px;
    border-radius: 8px;
    color: white !important;
}

/* HERO BANNER STYLE */
.hero-banner {
    padding: 180px 0 100px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.mesh-glow {
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.12) 0%, transparent 70%);
    z-index: -1;
}

.badge {
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--accent);
}

h1 { font-size: 4.5rem; font-weight: 800; margin: 25px 0; line-height: 1.1; letter-spacing: -2px; }
h1 span { background: linear-gradient(90deg, #fff, #666); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.hero-banner p { max-width: 650px; margin: 0 auto 40px; color: var(--text-dim); font-size: 1.25rem; }

.btn-primary { background: white; color: black; padding: 14px 30px; border-radius: 10px; text-decoration: none; font-weight: 700; margin-right: 15px; }
.btn-secondary { border: 1px solid var(--border); color: white; padding: 14px 30px; border-radius: 10px; text-decoration: none; }

/* OVERVIEW STYLE */
.overview-section { padding: 100px 0; }

.overview-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; align-items: center; }

.section-title { font-size: 2.8rem; margin-bottom: 25px; font-weight: 700; }
.section-title span { color: var(--accent); }

.overview-text p { font-size: 1.15rem; color: var(--text-dim); margin-bottom: 20px; }

.overview-stats { display: flex; flex-direction: column; gap: 15px; }

.stat-card {
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 25px;
    border-radius: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-label { color: var(--text-dim); font-size: 0.9rem; }
.stat-value { font-weight: 700; color: var(--accent); }

.simple-footer { text-align: center; padding: 50px 0; border-top: 1px solid var(--border); color: #444; font-size: 0.9rem; }

/* MISSION & VISION STYLING */
.mv-section {
    padding: 80px 0;
    position: relative;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.mv-card {
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 50px 40px;
    border-radius: 30px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mv-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
}

.mv-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.mv-card h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.mv-card p {
    color: var(--text-dim);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.mv-footer {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    font-weight: 600;
}

/* Founder Note Styling */
.founder-note {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    border-top: 1px dashed var(--border);
}

.founder-note p {
    font-size: 1.5rem;
    font-style: italic;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.founder-note span {
    color: var(--text-dim);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Specific accent for Vision card to differentiate */
.vision {
    background: linear-gradient(145deg, rgba(0, 122, 255, 0.05), rgba(255, 255, 255, 0.02));
}

/* SERVICES SECTION STYLING */
.services-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 122, 255, 0.02));
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.sub-title {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 3px;
    font-weight: 700;
}

.main-title {
    font-size: 3rem;
    margin: 10px 0 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 24px;
    transition: 0.4s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--accent);
    transform: translateY(-10px);
}

.s-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #fff;
}

.service-card ul {
    list-style: none;
}

.service-card ul li {
    color: var(--text-dim);
    margin-bottom: 12px;
    font-size: 0.95rem;
    position: relative;
    padding-left: 20px;
}

.service-card ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Wide card for AI section */
.wide {
    grid-column: span 1; /* Default for mobile */
}

@media (min-width: 992px) {
    .wide {
        grid-column: span 2;
        display: flex;
        align-items: center;
        gap: 30px;
    }
}

.wide-content p {
    color: var(--text-dim);
    margin-top: 10px;
}

/* LUXURY PROCESS STYLING */
.luxury-process {
    padding: 150px 0;
    background: #000;
    overflow: hidden;
}

/* Centered Header with Premium Vibe */
.process-header {
    text-align: center;
    margin-bottom: 100px;
}

.pre-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #007aff;
    margin-bottom: 10px;
}

.process-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    color: #fff;
}

.process-header h2 span {
    background: linear-gradient(180deg, #fff 30%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-line {
    width: 60px;
    height: 3px;
    background: #007aff;
    margin: 20px auto;
}

/* 4 Steps Row Styling */
.process-row {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 30px;
}

/* The Connecting Line between dots */
.process-row::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.process-node {
    flex: 1;
    position: relative;
    z-index: 2;
    text-align: center;
}

.node-circle {
    width: 60px;
    height: 60px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-weight: 800;
    color: #555;
    transition: 0.4s;
}

.node-circle.active {
    background: #007aff;
    color: #fff;
    border-color: #007aff;
    box-shadow: 0 0 30px rgba(0, 122, 255, 0.4);
}

.node-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #fff;
}

.node-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 0 10px;
}

/* Hover Effect */
.process-node:hover .node-circle {
    border-color: #007aff;
    color: #007aff;
    transform: scale(1.1);
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .process-row {
        flex-direction: column;
        align-items: center;
    }
    .process-row::before {
        display: none;
    }
    .process-node {
        margin-bottom: 50px;
    }
}

/* PRICING SECTION STYLING */
.pricing-section {
    padding: 100px 0;
    background: #000;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.price-card {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 30px;
    text-align: center;
    transition: 0.4s ease;
    position: relative;
}

.price-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

/* Featured Card Styling */
.featured {
    background: #111;
    border: 1px solid #007aff;
    transform: scale(1.05);
    z-index: 2;
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #007aff;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.p-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
}

.price span {
    font-size: 1rem;
    color: #555;
    font-weight: 400;
}

.p-features {
    list-style: none;
    text-align: left;
    margin-bottom: 40px;
}

.p-features li {
    padding: 12px 0;
    font-size: 0.9rem;
    color: #aaa;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.p-features li.disabled {
    color: #333;
    text-decoration: line-through;
}

/* Buttons */
.p-btn {
    display: block;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.p-btn:hover {
    background: #fff;
    color: #000;
}

.p-btn.primary {
    background: #007aff;
    border: none;
}

.p-btn.primary:hover {
    background: #0056b3;
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .featured {
        transform: scale(1);
        margin: 40px 0;
    }
}
/* GLASS TILES SECTION */
.values-glass-section {
    padding: 120px 0;
    background: #000;
    position: relative;
}

.values-glass-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2x2 Grid for high-end look */
    gap: 30px;
}

.glass-tile {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 40px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.tile-number {
    font-size: 0.9rem;
    font-weight: 800;
    color: #007aff;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.glass-tile h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.glass-tile p {
    color: #888;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 90%;
}

/* Subtle Glow Effect on Hover */
.tile-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 122, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: 0.5s ease;
}

.glass-tile:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 122, 255, 0.4);
}

.glass-tile:hover .tile-glow {
    opacity: 1;
}

.glass-tile:hover h3 {
    color: #007aff;
}

/* Responsive */
@media (max-width: 900px) {
    .values-glass-grid {
        grid-template-columns: 1fr;
    }
}
/* CONTACT SECTION STYLING */
.contact-section {
    padding: 120px 0;
    background: #000;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

/* Info Side */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #007aff;
    font-weight: 700;
}

.info-link, .info-text {
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.info-link:hover {
    color: #007aff;
    padding-left: 10px;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 25px;
}

.social-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.social-links a:hover {
    color: #fff;
}

/* Form Side */
.contact-form-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px;
    border-radius: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.devora-form input, 
.devora-form select, 
.devora-form textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.devora-form input:focus, 
.devora-form select:focus, 
.devora-form textarea:focus {
    border-color: #007aff;
    background: rgba(255, 255, 255, 0.05);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: #007aff;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #005ecb;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 122, 255, 0.3);
}

/* Footer Styling */
.final-footer {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.f-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.f-logo span { color: #007aff; }

.footer-content p {
    color: #444;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-wrapper { grid-template-columns: 1fr; gap: 60px; }
    .info-link { font-size: 1.4rem; }
}
/* DEVORA FOOTER STYLING */
.devora-footer {
    padding: 100px 0 40px;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* Brand Section */
.f-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.f-logo span { color: #007aff; }

.footer-brand p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 280px;
}

.f-socials {
    display: flex;
    gap: 15px;
}

.f-socials a {
    font-size: 0.8rem;
    font-weight: 700;
    color: #444;
    text-decoration: none;
    transition: 0.3s;
}

.f-socials a:hover { color: #007aff; }

/* Links Sections */
.footer-links h4, 
.footer-newsletter h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 25px;
}

.footer-links ul { list-style: none; }

.footer-links ul li { margin-bottom: 12px; }

.footer-links ul li a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Newsletter Section */
.footer-newsletter p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.f-mail-form {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.f-mail-form input {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.9rem;
    width: 100%;
    outline: none;
}

.f-mail-form button {
    background: transparent;
    border: none;
    color: #007aff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
}

.f-mail-form button:hover { transform: translateX(5px); }

/* Footer Bottom */
.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.f-copyright p { color: #333; font-size: 0.85rem; }

.f-legal a {
    color: #333;
    text-decoration: none;
    font-size: 0.85rem;
    margin-left: 20px;
    transition: 0.3s;
}

.f-legal a:hover { color: #666; }

/* Responsive */
@media (max-width: 992px) {
    .footer-top { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

@media (max-width: 600px) {
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}