/* =========================================
   1. CORE CYBER-SYSTEM (VARIABLES & RESET)
   ========================================= */
:root {
    /* Colors */
    --accent: #00f2ff;                 /* Neon Cyan */
    --accent-glow: rgba(0, 242, 255, 0.4);
    --bg-dark: #050505;                /* Deepest Black */
    --panel-bg: rgba(20, 20, 25, 0.6); /* Glass Panels */
    --border: rgba(0, 242, 255, 0.2);  /* Subtle Borders */
    --text-main: #ffffff;
    --text-dim: #b0b0b0;

    /* Strict Dimensions */
    --header-height: 80px;
    --card-height: 420px;              /* Projects are locked to this height */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Rajdhani', sans-serif; /* Tech Font */
    overflow-x: hidden;
    padding-top: var(--header-height); /* Prevent header overlap */
}

/* Background Particles Canvas */
#neural-canvas {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1; pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   2. HEADER (FIXED SPACING & GLASS)
   ========================================= */
.glass-nav {
    position: fixed; top: 0; left: 0; width: 100%; height: var(--header-height);
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

/* Fixes "Logo touching edge" issue */
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 40px; /* Safe zone padding */
}

.logo {
    font-size: 1.8rem; font-weight: 800; color: white; text-decoration: none;
    text-shadow: 0 0 10px var(--accent);
}

.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links a {
    color: var(--text-dim); text-decoration: none; font-weight: 600;
    letter-spacing: 1px; transition: 0.3s;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--accent);
    text-shadow: 0 0 15px var(--accent);
}

/* =========================================
   3. HOME PROFILE (THE "CLEAN HEAD" FIX)
   ========================================= */
.hero-layout {
    display: flex; align-items: center; justify-content: space-between;
    min-height: 80vh; gap: 50px;
}

/* Strict Circle Container */
.profile-frame {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 3px solid var(--border);
    box-shadow: 0 0 30px var(--accent-glow);
    overflow: hidden; /* Cuts off anything outside the circle */
    position: relative;
    flex-shrink: 0; /* Prevents squishing on small screens */
}

/* Image Logic: Focus on Head/Top */
.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;       /* Fills circle without stretching */
    object-position: top center; /* Focuses on face, cuts off body if needed */
}

/* =========================================
   4. GALLERY (STRICT 16:9 THUMBNAILS)
   ========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Strict 4 Columns */
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    aspect-ratio: 16 / 9; /* FORCES YouTube Thumbnail Shape */
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #000;
}

/* Image Logic: Cover the box */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* No black bars, fills the 16:9 box */
    transition: transform 0.4s;
}

.gallery-item:hover img { transform: scale(1.1); }

/* Description Overlay (Hidden by default) */
.overlay {
    position: absolute; bottom: 0; left: 0; width: 100%;
    background: rgba(0, 0, 0, 0.85);
    padding: 10px;
    transform: translateY(100%);
    transition: 0.3s;
    display: flex; align-items: center; justify-content: center;
    border-top: 1px solid var(--accent);
}
.gallery-item:hover .overlay { transform: translateY(0); }

/* =========================================
   5. CERTIFICATIONS (LANDSCAPE UNIFORMITY)
   ========================================= */
.cert-item {
    /* Same grid as gallery, but specific image handling */
    aspect-ratio: 4 / 3; /* Slightly taller than 16:9 for documents */
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: #111;
    position: relative;
}

/* Smart Crop Logic */
.cert-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center; /* Shows Title/Name, crops empty bottom */
    transition: 0.4s;
}

/* =========================================
   6. PROJECTS (THE "LOGO CONTAINMENT" FIX)
   ========================================= */
.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    height: var(--card-height); /* LOCKED HEIGHT */
    background: var(--panel-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: 0.3s;
}

.project-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

/* The Fixed Logo Area */
.card-image {
    width: 100%;
    height: 100px; /* Strict height for logos */
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* No border here to keep it clean */
}

/* Logo Logic: CONTAIN (Never stretch) */
.card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Keeps TIG ML logo normal size */
    filter: drop-shadow(0 0 5px rgba(0, 242, 255, 0.3));
}

.card-image i {
    font-size: 4rem;
    color: var(--accent);
}

.card-info {
    flex: 1; /* Pushes button to bottom */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

/* =========================================
   7. FOOTER (SYSTEM TERMINAL LAYOUT)
   ========================================= */
.system-footer {
    margin-top: 100px;
    padding: 60px 0 30px;
    background: #020202;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Distinct Columns */
    gap: 40px;
}

.footer-heading {
    color: #555;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Readable Links */
.link-group a {
    display: block;
    color: var(--accent); /* Neon Cyan, NOT Blue */
    text-decoration: none;
    margin-bottom: 10px;
    font-weight: 700;
    transition: 0.3s;
}
.link-group a:hover {
    color: white;
    text-shadow: 0 0 10px var(--accent);
}

/* =========================================
   8. UTILITIES & MODAL
   ========================================= */
/* Neon Button */
.btn-neon {
    padding: 10px 25px;
    border: 1px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
    display: inline-block;
    margin-top: 10px;
}
.btn-neon:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 20px var(--accent);
}

/* Modal (Lightbox) */
.modal {
    display: none; position: fixed; z-index: 9999;
    padding-top: 50px; left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.95);
}
.modal-content {
    margin: auto; display: block;
    max-width: 90%; max-height: 85vh;
    border: 1px solid var(--accent);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.2);
}
.close-modal {
    position: absolute; top: 15px; right: 35px;
    color: #f1f1f1; font-size: 40px; font-weight: bold;
    cursor: pointer;
}

/* =========================================
   9. RESPONSIVE BREAKPOINTS
   ========================================= */
@media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-layout { flex-direction: column; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 600px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .project-grid { grid-template-columns: 1fr; }
    .nav-container { padding: 0 20px; }
}

/* --- MODAL TEXT ENHANCEMENTS --- */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 20px 0;
}

/* The Title inside the Modal */
.modal-title {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* The Description inside the Modal */
.modal-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: white;
}

/* =========================================
   10. SMART-FIT MODAL & ZOOM CONTROLS
   ========================================= */

/* A. Fix the Modal Layout */
.modal {
    display: none; 
    position: fixed; 
    z-index: 10000; 
    left: 0; top: 0; 
    width: 100%; height: 100%; 
    background-color: rgba(0,0,0,0.95);
    flex-direction: column;
    justify-content: flex-start; /* Align to top so scrolling works */
    align-items: center;
    padding-top: 40px; /* Space from top */
}

/* B. Scrollable Wrapper (THE KEY FIX) */
.modal-body {
    position: relative;
    width: 100%; 
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto; /* Allows vertical scroll */
    overflow-x: auto; /* Allows horizontal scroll */
    text-align: center;
}

/* C. Image Defaults (Start Small) */
.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 60vh; /* Default view: fits in screen */
    width: auto; height: auto;
    object-fit: contain;
    cursor: grab;
    transition: width 0.3s ease; /* Animate width changes */
}

/* D. Caption Box */
#caption {
    margin: 20px auto 100px; /* Extra bottom margin so zoom bar doesn't cover text */
    width: 80%; max-width: 700px;
    color: #ccc;
    background: rgba(20, 20, 25, 0.9);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

/* E. Floating Zoom Toolbar */
.zoom-controls {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
    z-index: 10001;
    background: rgba(0,0,0,0.8);
    padding: 10px;
    border-radius: 30px;
    border: 1px solid var(--accent);
}

.zoom-btn {
    background: transparent;
    border: none;
    color: var(--accent);
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: 0.2s;
}

.zoom-btn:hover { background: var(--accent); color: black; }

/* =========================================
   11. CYBER-DECK PROJECT CARDS
   ========================================= */

/* The Card Container */
.project-card {
    position: relative;
    background: linear-gradient(145deg, rgba(25, 25, 30, 0.9), rgba(5, 5, 10, 0.95));
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent); /* "Folder" look */
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Hover Effect: Glow & Lift */
.project-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.1);
    border-color: var(--accent);
}

/* "Status Light" in top right */
.card-status {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.7;
}

/* Tech Stack Pills (The "Dense" Look) */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.tech-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: #000;
    background: var(--accent);
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Secondary Tech Tags (Outline style) */
.tech-tag.secondary {
    background: transparent;
    color: var(--text-dim);
    border: 1px solid #444;
}

/* "View Case Study" Indicator (Appears on Hover) */
.click-hint {
    font-size: 0.8rem;
    color: var(--accent);
    margin-top: 15px;
    opacity: 0; /* Hidden by default */
    transform: translateX(-10px);
    transition: 0.3s;
}

.project-card:hover .click-hint {
    opacity: 1;
    transform: translateX(0);
}
/* =========================================
   12. PROJECT DETAIL PANEL (THE POP-UP)
   ========================================= */

/* The Panel Container (Hidden by default) */
.project-panel-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

/* The Glass Box */
.project-panel {
    width: 90%;
    max-width: 800px;
    background: linear-gradient(145deg, rgba(20, 20, 25, 1), rgba(10, 10, 15, 1));
    border: 1px solid var(--accent);
    box-shadow: 0 0 50px rgba(0, 242, 255, 0.1);
    border-radius: 12px;
    padding: 40px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto; /* Scroll if text is long */
}

/* Close Button */
.close-panel {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #666;
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.3s;
}
.close-panel:hover { color: var(--accent); transform: rotate(90deg); }

/* Header Section */
.panel-header {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.panel-title { font-size: 2rem; color: white; margin-bottom: 5px; }
.panel-subtitle { color: var(--accent); font-family: 'Courier New', monospace; letter-spacing: 1px; font-size: 0.9rem; }

/* Grid Layout for Content */
.panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

@media (max-width: 768px) { .panel-grid { grid-template-columns: 1fr; } }

/* Text Styling */
.panel-section-title {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 10px;
    border-left: 3px solid var(--accent);
    padding-left: 10px;
}
.panel-text { color: #ccc; line-height: 1.6; font-size: 0.95rem; margin-bottom: 20px; }

/* Feature List */
.panel-features li {
    color: #aaa;
    margin-bottom: 8px;
    list-style: none;
    position: relative;
    padding-left: 20px;
}
.panel-features li::before {
    content: ">>";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 0.8rem;
}

/* Action Bar */
.panel-actions {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
}
/* =========================================
   13. TECH STACK MARQUEE (HOME PAGE)
   ========================================= */
.tech-marquee-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.8);
    border-top: 1px solid #333;
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    z-index: 10;
}

.tech-track {
    display: inline-block;
    animation: scroll-left 20s linear infinite;
}

.tech-icon {
    font-size: 1.5rem;
    color: #666;
    margin: 0 30px;
    transition: 0.3s;
}

.tech-icon:hover {
    color: var(--accent);
    transform: scale(1.2);
    text-shadow: 0 0 10px var(--accent);
}

@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Social Hexagons */
.hero-socials {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}
.social-hex {
    width: 45px; height: 45px;
    background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    font-size: 1.2rem;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: 0.3s;
    border: 1px solid transparent;
}
.social-hex:hover {
    background: var(--accent);
    color: black;
    transform: translateY(-5px);
    box-shadow: 0 0 15px var(--accent);
}
/* =========================================
   14. CONTACT MODAL STYLES
   ========================================= */
.contact-modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    z-index: 10001;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.contact-box {
    width: 90%;
    max-width: 500px;
    background: linear-gradient(145deg, #111, #0a0a0a);
    border: 1px solid var(--accent);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.1);
    border-radius: 12px;
    padding: 40px;
    position: relative;
    text-align: center;
}

.close-contact {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    transition: 0.3s;
}
.close-contact:hover { color: var(--accent); transform: rotate(90deg); }

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.contact-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: 0.3s;
    text-align: left;
}

.contact-item:hover:not(.no-hover) {
    border-color: var(--accent);
    background: rgba(0, 242, 255, 0.05);
}

.contact-item i { font-size: 1.5rem; color: var(--accent); width: 30px; text-align: center; }
.contact-item h4 { color: #fff; font-size: 0.8rem; letter-spacing: 1px; margin-bottom: 2px; }
.contact-item p { color: #ccc; font-size: 1rem; margin: 0; font-family: 'Courier New', monospace; }

.copy-status {
    display: block;
    font-size: 0.6rem;
    color: #555;
    margin-top: 5px;
    letter-spacing: 1px;
}

.social-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
    border-top: 1px solid #222;
    padding-top: 20px;
}
.social-row i {
    font-size: 1.8rem;
    color: #666;
    transition: 0.3s;
}
.social-row i:hover { transform: scale(1.2); color: white; }

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* =========================================
   15. HEADER FIXES (HIDE MOBILE ELEMENTS)
   ========================================= */

/* 1. Hide the Mobile Overlay by default */
.mobile-menu-overlay {
    display: none; /* Crucial: Hides the "extra buttons" list */
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* 2. Mobile Links Styling (Inside the overlay) */
.mobile-links-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}
.mobile-links-container a {
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
}

/* 3. Close Button (The 'X') */
.close-btn {
    position: absolute;
    top: 30px; right: 30px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}

/* 4. Desktop vs Mobile Logic */
.hamburger {
    display: none; /* Hide the 3-line icon on Desktop */
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    margin-left: 20px;
}

/* WHEN ON MOBILE (Screen smaller than 768px) */
@media (max-width: 768px) {
    .nav-links { display: none; } /* Hide text links */
    .hamburger { display: block; } /* Show hamburger icon */
    .btn-neon { display: none; } /* Hide Contact button on mobile header (it's inside the menu) */
}

/* =========================================
   16. SERVICES PAGE (PRICING & FAQ)
   ========================================= */

/* --- SERVICES HERO --- */
.services-hero {
    text-align: center;
    padding: 60px 20px;
    background: radial-gradient(circle at center, rgba(0, 242, 255, 0.1), transparent 70%);
}

.services-hero h1 {
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.services-hero p {
    color: var(--text-dim);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- PRICING GRID --- */
.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

/* The Card Frame */
.price-card {
    background: rgba(20, 20, 25, 0.6); /* Matches your panel-bg */
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px 30px;
    width: 320px;
    text-align: center;
    position: relative;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Hover Effect: Cyber Lift */
.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.15);
    border-color: var(--accent);
}

/* Typography Inside Card */
.price-card h3 {
    color: var(--text-dim);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.price-card h2 {
    color: white;
    font-size: 3.5rem;
    margin: 10px 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.price-card p {
    color: var(--accent);
    font-weight: bold;
    margin-bottom: 30px;
}

/* Feature List */
.price-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1; /* Pushes button to bottom */
}

.price-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 0.95rem;
}

.price-card ul li::before {
    content: "✓";
    color: var(--accent);
    margin-right: 10px;
    font-weight: bold;
}

/* The "Recommended" Middle Card */
.price-card.featured {
    border: 1px solid var(--accent);
    background: rgba(0, 242, 255, 0.05);
    transform: scale(1.05);
    z-index: 2;
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 0 40px rgba(0, 242, 255, 0.3);
}

/* --- FAQ SECTION (ACCORDION) --- */
.faq-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: white;
}

details {
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 15px;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
}

details:hover {
    border-color: var(--accent);
}

details[open] {
    background: rgba(0, 242, 255, 0.05);
    border-color: var(--accent);
}

summary {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: white;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Custom + / - Icons */
summary::after {
    content: "+";
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: bold;
}

details[open] summary::after {
    content: "-";
}

details p {
    padding: 0 20px 20px;
    color: #ccc;
    line-height: 1.6;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
    padding-top: 15px;
}

/* Responsive Fixes for Services */
@media (max-width: 768px) {
    .price-card.featured { transform: scale(1); } /* Disable scaling on mobile */
    .pricing-container { flex-direction: column; align-items: center; }
    .price-card { width: 100%; max-width: 350px; }
}