/* ============================================================
   PRICEBuilt IT - MAIN STYLESHEET
   Modern, sleek design with glass morphism and animations
   ============================================================ */

/* ----- CSS Variables ----- */
:root {
    --bg-primary: #0b0f15;
    --bg-secondary: #111827;
    --accent-1: #00ffc3;
    --accent-2: #4ea8ff;
    --accent-3: #0080ff;
    --text-primary: #e5e7eb;
    --text-secondary: #a0b3cc;
    --text-muted: #6b7d93;
    --glass-bg: rgba(18, 25, 35, 0.7);
    --glass-border: rgba(0, 255, 196, 0.1);
    --glass-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    --radius-lg: 2rem;
    --radius-md: 1.5rem;
    --radius-sm: 0.8rem;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-primary);
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

/* ----- Particle Background ----- */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ----- Custom Cursor ----- */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--accent-1);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 30px;
    height: 30px;
    border: 2px solid var(--accent-1);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s ease, width 0.3s, height 0.3s;
    mix-blend-mode: difference;
}

.cursor-follower.hover {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 195, 0.1);
}

@media (max-width: 768px) {
    body { cursor: auto; }
    .cursor, .cursor-follower { display: none; }
}

/* ----- Navigation ----- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 14, 23, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 196, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(8, 14, 23, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    position: relative;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #0a0f14;
    box-shadow: 0 0 20px rgba(0, 255, 195, 0.3);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--accent-1);
}

.logo-it {
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 0.3rem 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-1);
    transition: width 0.3s ease;
}

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

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

/* Nav Button */
.btn-nav {
    background: linear-gradient(145deg, var(--accent-1), var(--accent-3));
    color: #0a0f14 !important;
    padding: 0.6rem 1.8rem;
    border-radius: 3rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 0 18px rgba(0, 255, 195, 0.3);
}

.btn-nav:hover {
    box-shadow: 0 0 28px rgba(0, 180, 255, 0.6);
    transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--accent-1);
    transition: var(--transition);
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ----- Hero Section ----- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 195, 0.1);
    border: 1px solid rgba(0, 255, 195, 0.2);
    padding: 0.5rem 1.2rem;
    border-radius: 3rem;
    font-size: 0.9rem;
    color: var(--accent-1);
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-1);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 195, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(0, 255, 195, 0); }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 550px;
    line-height: 1.7;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn-primary {
    background: linear-gradient(145deg, var(--accent-1), var(--accent-3));
    color: #0a0f14;
    padding: 0.9rem 2rem;
    border-radius: 3rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(0, 255, 195, 0.25);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    box-shadow: 0 0 35px rgba(0, 180, 255, 0.6);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-1);
    color: var(--accent-1);
    padding: 0.85rem 2rem;
    border-radius: 3rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(0, 255, 195, 0.1);
    box-shadow: 0 0 25px rgba(0, 255, 195, 0.3);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-1);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
}

.hero-card-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.float-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    animation: floatAround 6s infinite ease-in-out;
    animation-delay: var(--delay);
    font-size: 1.5rem;
    color: var(--accent-1);
    opacity: 0.6;
}

@keyframes floatAround {
    0%, 100% {
        transform: translate(-50%, -50%) translate(0, 0);
    }
    25% {
        transform: translate(-50%, -50%) translate(var(--x), var(--y));
    }
    50% {
        transform: translate(-50%, -50%) translate(calc(var(--x) * -0.5), calc(var(--y) * 1.5));
    }
    75% {
        transform: translate(-50%, -50%) translate(calc(var(--x) * -1), calc(var(--y) * 0.5));
    }
}

.hero-card-content .main-icon {
    font-size: 4rem;
    color: var(--accent-1);
    margin-bottom: 1rem;
}

.hero-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.hero-card-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.status-bar {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 195, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
}

.status-online {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    animation: fadeInUp 2s infinite;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--accent-1), transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { height: 0; opacity: 1; }
    100% { height: 40px; opacity: 0; }
}

@keyframes fadeInUp {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; transform: translateX(-50%) translateY(-5px); }
}

/* ----- Sections ----- */
section {
    position: relative;
    z-index: 1;
}

.services-preview,
.services-full,
.contact-section {
    padding: 5rem 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 0.8rem;
}

.section-header p {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* ----- Glass Card ----- */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

.glass-card:hover {
    border-color: rgba(0, 255, 196, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(0, 255, 200, 0.1);
}

/* ----- Image Gallery ----- */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 200, 0.1), rgba(0, 128, 255, 0.1));
    border: 2px dashed rgba(0, 255, 200, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.gallery-placeholder:hover {
    border-color: var(--accent-1);
    background: rgba(0, 255, 200, 0.05);
}

.gallery-placeholder i {
    font-size: 2rem;
}

.gallery-placeholder span {
    font-size: 0.85rem;
}

/* ----- Services Grid ----- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    padding: 2rem 1.5rem;
    text-align: center;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 255, 195, 0.15), rgba(0, 128, 255, 0.15));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.5rem;
    color: var(--accent-1);
}

.service-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

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

.card-link {
    color: var(--accent-1);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: var(--transition);
}

.card-link:hover {
    gap: 0.6rem;
}

/* ----- Full Services Grid (services.html) ----- */
.services-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card-full {
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
}

.service-card-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: linear-gradient(135deg, rgba(0, 255, 195, 0.15), rgba(0, 128, 255, 0.15));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent-1);
}

.service-card-content h3 {
    margin-bottom: 0.5rem;
}

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

.service-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.service-features li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features i {
    color: var(--accent-1);
    font-size: 0.7rem;
}

/* ----- CTA Section ----- */
.cta-section {
    padding: 3rem 1.5rem 5rem;
}

.cta-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.cta-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* ----- Page Header ----- */
.page-header {
    padding: 8rem 1.5rem 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* ----- Contact Section ----- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form-container {
    padding: 2.5rem;
}

.contact-form-container h2 {
    margin-bottom: 0.3rem;
}

.contact-form-container > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(18, 25, 35, 0.8);
    border: 1px solid rgba(0, 255, 196, 0.15);
    border-radius: var(--radius-sm);
    padding: 0.8rem 1rem;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-1);
    box-shadow: 0 0 15px rgba(0, 255, 195, 0.15);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
}

/* Contact Info */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    padding: 2rem;
}

.contact-info-card h3 {
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.info-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(0, 255, 195, 0.1);
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-1);
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-content a {
    color: var(--text-primary);
    text-decoration: none;
}

.contact-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 196, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.social-btn:hover {
    background: rgba(0, 255, 196, 0.1);
    border-color: var(--accent-1);
    color: var(--accent-1);
}

/* Map Container */
.map-container {
    overflow: hidden;
    padding: 0;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 280px;
}

/* Contact Image Placeholder */
.contact-image-placeholder {
    padding: 0;
    overflow: hidden;
    height: 200px;
}

.contact-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 255, 200, 0.05), rgba(0, 128, 255, 0.05));
    border: 2px dashed rgba(0, 255, 200, 0.15);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    gap: 0.5rem;
}

.placeholder-content i {
    font-size: 2rem;
}

/* ----- Footer ----- */
.footer {
    background: rgba(8, 14, 23, 0.9);
    border-top: 1px solid rgba(0, 255, 196, 0.1);
    padding: 3rem 1.5rem 1.5rem;
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}

.footer-brand .logo {
    margin-bottom: 0.8rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

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

.social-links a {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent-1);
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

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

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

.footer-contact li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--accent-1);
    font-size: 0.8rem;
}

.footer-bottom {
    max-width: 1100px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================================
   ABOUT PAGE STYLES
   ============================================================ */

/* About Container */
.about-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.about-mission,
.about-values,
.about-service-area {
    padding: 5rem 1.5rem;
}

/* Two Column Grid */
.about-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-grid-2col.reverse {
    direction: rtl;
}

.about-grid-2col.reverse .about-content,
.about-grid-2col.reverse .about-visual {
    direction: ltr;
}

/* About Content Text */
.about-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 1.2rem;
}

.about-lead {
    font-size: 1.15rem;
    color: var(--accent-1);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* About Visual Card */
.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-card {
    padding: 3rem 2.5rem;
    text-align: center;
    width: 100%;
}

.about-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.about-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 255, 195, 0.2), rgba(0, 128, 255, 0.2));
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--accent-1);
    margin-bottom: 0.5rem;
    border: 1px solid rgba(0, 255, 196, 0.2);
}

.about-card-inner h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.about-card-inner p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.value-card {
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 196, 0.3);
}

.value-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(0, 255, 195, 0.15), rgba(0, 128, 255, 0.15));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.3rem;
    color: var(--accent-1);
}

.value-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Service Area List */
.service-area-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin: 1.2rem 0 1.5rem;
}

.service-area-list li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-area-list i {
    color: var(--accent-1);
    font-size: 0.7rem;
}

.about-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ============================================================
   THANK YOU PAGE STYLES
   ============================================================ */

.thankyou-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1.5rem 3rem;
    position: relative;
    z-index: 1;
}

.thankyou-container {
    max-width: 650px;
    width: 100%;
}

.thankyou-card {
    padding: 3rem 2.5rem;
    text-align: center;
}

/* Success Icon with Ripple Animation */
.thankyou-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.thankyou-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00ff88, #00c8a0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #0a0f14;
    position: relative;
    z-index: 2;
    animation: popIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.thankyou-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid rgba(0, 255, 136, 0.4);
    animation: ripple 2s infinite;
    z-index: 1;
}

@keyframes popIn {
    0% { transform: scale(0); }
    80% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes ripple {
    0% {
        width: 100px;
        height: 100px;
        opacity: 1;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

.thankyou-card h1 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.thankyou-lead {
    font-size: 1.2rem;
    color: var(--accent-1);
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.thankyou-detail {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* What to Expect */
.thankyou-expect {
    text-align: left;
    background: rgba(0, 255, 195, 0.05);
    border: 1px solid rgba(0, 255, 196, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.thankyou-expect h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-1);
}

.thankyou-expect ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.thankyou-expect li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.thankyou-expect li i {
    color: var(--accent-1);
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

/* Action Buttons */
.thankyou-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

/* Redirect Notice */
.thankyou-redirect {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.thankyou-redirect span {
    color: var(--accent-1);
    font-weight: 600;
}

/* ============================================================
   404 ERROR PAGE STYLES
   ============================================================ */

.error-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 1.5rem 3rem;
    position: relative;
    z-index: 1;
}

.error-container {
    max-width: 700px;
    width: 100%;
}

.error-card {
    padding: 3rem 2.5rem;
    text-align: center;
}

/* Large 404 Display */
.error-code {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 7rem;
    font-weight: 800;
    line-height: 1;
}

.error-digit {
    color: var(--text-primary);
    text-shadow: 0 0 40px rgba(0, 255, 195, 0.3);
}

.error-zero {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(0, 255, 195, 0.15), rgba(0, 128, 255, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--accent-1);
    border: 2px solid rgba(0, 255, 196, 0.2);
    animation: float 3s ease-in-out infinite;
}

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

.error-card h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.error-lead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.error-detail {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Error Links Grid */
.error-links {
    margin-bottom: 2rem;
}

.error-links h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.error-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}

.error-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 0.8rem;
    text-decoration: none;
    color: var(--text-secondary);
    transition: var(--transition);
    border-radius: 1rem;
}

.error-link-card:hover {
    color: var(--accent-1);
    border-color: rgba(0, 255, 196, 0.4);
    transform: translateY(-3px);
}

.error-link-card i {
    font-size: 1.5rem;
}

.error-link-card span {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Error Actions */
.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   RESPONSIVE STYLES FOR THANK YOU & 404 PAGES
   ============================================================ */

@media (max-width: 768px) {
    .thankyou-card,
    .error-card {
        padding: 2rem 1.5rem;
    }
    
    .error-code {
        font-size: 5rem;
    }
    
    .error-zero {
        width: 90px;
        height: 90px;
        font-size: 2rem;
    }
    
    .error-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .thankyou-actions,
    .error-actions {
        flex-direction: column;
    }
    
    .thankyou-actions .btn-primary,
    .thankyou-actions .btn-secondary,
    .error-actions .btn-primary,
    .error-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .error-code {
        font-size: 4rem;
    }
    
    .error-zero {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
    
    .error-card h1 {
        font-size: 1.5rem;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-grid-2col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-grid-2col.reverse {
        direction: ltr;
    }
    
    .about-visual {
        order: -1;
    }
    
    .about-card {
        padding: 2rem 1.5rem;
    }
    
    .service-area-list {
        grid-template-columns: 1fr;
    }
    
    .about-mission,
    .about-values,
    .about-service-area {
        padding: 3rem 1rem;
    }
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid-full {
        grid-template-columns: 1fr;
    }
    
    .service-card-full {
        flex-direction: column;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
	}
	
	/* Center footer sections on mobile */
	.footer-contact {
		text-align: center;
	}

	.footer-contact h4 {
		text-align: center;
	}

	.footer-contact ul {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.footer-contact li {
		justify-content: center;
		text-align: center;
	}
	
	.about-service-area .about-content {
		text-align: center;
	}

	.about-service-area .service-area-list {
		justify-content: center;
	}

	.about-service-area .service-area-list li {
		justify-content: center;
	}

	.about-service-area .about-note {
		text-align: center;
	}
	
	.about-service-area .section-tag {
    display: block;
    text-align: center;
	}
    
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: rgba(8, 14, 23, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        transition: 0.4s ease;
        border-left: 1px solid rgba(0, 255, 196, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand .logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
}

/* Prevent horizontal overflow on mobile */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

/* Force hamburger to stay within viewport */
@media (max-width: 768px) {
    .nav-container {
        width: 100%;
        max-width: 100vw;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .hamburger {
        right: 1.5rem;
        margin-right: 0;
    }
    
    /* Fix for any element causing overflow */
    img, iframe, .glass-card, .about-container {
        max-width: 100% !important;
    }
}