@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- DESIGN SYSTEM & CSS VARIABLES --- */
:root {
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px -2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 12px 24px -4px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px -8px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 20px rgba(79, 172, 254, 0.4);

    /* Dark Mode Defaults */
    --bg-main: #060913;
    --bg-surface: rgba(15, 23, 42, 0.6);
    --bg-surface-opaque: #0f172a;
    --bg-surface-hover: rgba(30, 41, 59, 0.8);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(79, 172, 254, 0.4);
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --color-primary: #4facfe;
    --color-secondary: #00f2fe;
    --color-accent: #f59e0b; /* Amber Gold for Photography */
    --color-accent-rgb: 245, 158, 11;
    --color-success: #10b981;
    --color-danger: #ef4444;

    --gradient-primary: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gradient-dark: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    --gradient-glow: radial-gradient(circle, rgba(79, 172, 254, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
}

/* Light Theme Overrides */
[data-theme="light"] {
    --bg-main: #f5f7fc;
    --bg-surface: rgba(255, 255, 255, 0.7);
    --bg-surface-opaque: #ffffff;
    --bg-surface-hover: rgba(255, 255, 255, 0.95);
    --border-color: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(79, 172, 254, 0.6);
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 30px -5px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 50px -10px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 5px 20px rgba(79, 172, 254, 0.2);

    --gradient-dark: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    --gradient-glow: radial-gradient(circle, rgba(79, 172, 254, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
}

/* --- RESET & BASIC STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-normal), color var(--transition-normal);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* Typography Selection */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
}

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

/* --- ABSTRACT BG ELEMENTS --- */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.18;
    mix-blend-mode: screen;
    animation: floatBlob 25s infinite alternate ease-in-out;
}

[data-theme="light"] .blob {
    opacity: 0.08;
    mix-blend-mode: multiply;
    filter: blur(80px);
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: var(--color-primary);
    animation-delay: 0s;
}

.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 45vw;
    height: 45vw;
    background: var(--color-secondary);
    animation-delay: 5s;
}

.blob-3 {
    top: 40%;
    left: 50%;
    width: 35vw;
    height: 35vw;
    background: var(--color-accent);
    animation-delay: 10s;
}

@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    100% {
        transform: translate(80px, 50px) scale(1.1) rotate(360deg);
    }
}

/* --- GLASSMORPHISM UTILITY --- */
.glass-panel {
    background: var(--bg-surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal), background var(--transition-normal);
}

.glass-panel:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

/* --- NAVIGATION BAR --- */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 100;
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 50px;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

[data-theme="light"] .navbar {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    top: 0;
    width: 100%;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    background: var(--bg-surface-opaque);
    box-shadow: var(--shadow-lg);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    animation: float 4s infinite ease-in-out;
}

.logo-circle svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: white;
    stroke-width: 2.5;
}

.nav-brand span {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

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

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Theme Toggle Button */
.theme-toggle {
    background: none;
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.theme-toggle:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.05);
}

.theme-toggle svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.theme-toggle .sun-icon {
    display: none;
}

[data-theme="light"] .theme-toggle .sun-icon {
    display: block;
}

[data-theme="light"] .theme-toggle .moon-icon {
    display: none;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

[data-theme="light"] .btn-secondary {
    background: rgba(0, 0, 0, 0.03);
}

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

.btn-accent {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    padding: 160px 0 80px 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.badge-glow {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(79, 172, 254, 0.1);
    border: 1px solid rgba(79, 172, 254, 0.2);
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(79, 172, 254, 0.05);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
}

.hero-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

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

.visual-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 480px;
}

.studio-main-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    height: 80%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1.5px solid var(--border-color);
    z-index: 2;
    transform: rotate(-3deg);
    transition: transform var(--transition-normal);
}

.studio-main-card:hover {
    transform: rotate(0deg) scale(1.02);
    z-index: 4;
}

.studio-main-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-float-card {
    position: absolute;
    bottom: 20px;
    right: 0;
    width: 75%;
    padding: 24px;
    border-radius: 20px;
    z-index: 3;
    transform: rotate(3deg);
}

.service-float-card:hover {
    transform: rotate(0deg) scale(1.03);
}

.float-badge {
    position: absolute;
    top: -15px;
    right: 25px;
    background: var(--color-success);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

.float-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.float-title svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
}

.float-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 6px;
}

.float-item svg {
    width: 14px;
    height: 14px;
    color: var(--color-success);
}

/* Floating Stats badge */
.stat-badge {
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
    padding: 15px 20px;
    border-radius: 16px;
    z-index: 3;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- SECTION GENERAL STYLING --- */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.section-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* --- SERVICE HUB SECTION --- */
.service-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.tab-btn {
    padding: 14px 28px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background: var(--bg-surface);
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-normal);
}

.tab-btn:hover {
    border-color: var(--color-primary);
    color: var(--text-primary);
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: var(--shadow-glow);
}

.tab-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.service-container {
    display: none;
}

.service-container.active {
    display: block;
}

/* Photo Services Layout */
.studio-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.studio-service-card {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.studio-card-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.studio-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.studio-service-card:hover .studio-card-img img {
    transform: scale(1.1);
}

.price-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 6px 14px;
    border-radius: 12px;
}

.studio-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.studio-card-content h3 {
    font-size: 1.3rem;
}

.studio-card-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    flex-grow: 1;
}

.studio-card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 10px 0;
}

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

.studio-card-features li svg {
    width: 14px;
    height: 14px;
    color: var(--color-primary);
}

/* Digital Form Cyber Services Layout */
.cyber-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.cyber-service-card {
    padding: 30px;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

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

.cyber-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(79, 172, 254, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: all var(--transition-fast);
}

.cyber-service-card:hover .cyber-icon-box {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05);
}

.cyber-icon-box svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.time-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.cyber-card-body h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.cyber-card-body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.cyber-doc-preview {
    margin-top: 10px;
}

.doc-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    display: block;
}

.doc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.doc-tag {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 3px 8px;
    border-radius: 6px;
    color: var(--text-secondary);
}

.cyber-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

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

.price-lbl {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.price-val {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-success);
}

.cyber-btn-details {
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all var(--transition-fast);
}

.cyber-btn-details:hover {
    gap: 8px;
    color: var(--color-secondary);
}

.cyber-btn-details svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
}

/* --- THE DIGITAL PORTAL HUB (INTERACTIVE TOOLS) --- */
.hub-section {
    background: var(--gradient-dark);
    position: relative;
    z-index: 1;
}

.hub-nav-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 40px;
}

.hub-tab-btn {
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-secondary);
    padding: 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hub-tab-btn svg {
    width: 24px;
    height: 24px;
    color: var(--text-muted);
}

.hub-tab-btn:hover {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-primary);
}

.hub-tab-btn.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
    background: rgba(79, 172, 254, 0.05);
}

.hub-tab-btn.active svg {
    color: var(--color-primary);
}

.hub-view {
    display: none;
    animation: fadeIn var(--transition-normal) forwards;
}

.hub-view.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Tool: Interactive Photo Validator/Cropper */
.cropper-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

.cropper-workspace {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.drop-zone {
    width: 100%;
    height: 320px;
    border: 2px dashed var(--border-color);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.drop-zone:hover, .drop-zone.dragover {
    border-color: var(--color-primary);
    background: rgba(79, 172, 254, 0.05);
}

.drop-zone-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(79, 172, 254, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.drop-zone-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.drop-zone input[type="file"] {
    display: none;
}

.canvas-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: none;
}

#cropperCanvas {
    width: 100%;
    height: 100%;
    max-height: 320px;
    object-fit: contain;
    border-radius: 10px;
}

.zoom-slider-container {
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 8px;
}

.zoom-slider-container label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.slider-input-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

input[type="range"] {
    flex-grow: 1;
    height: 6px;
    background: var(--border-color);
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.cropper-options {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.options-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.options-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.select-wrapper {
    position: relative;
}

select {
    width: 100%;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    appearance: none;
    outline: none;
    cursor: pointer;
    transition: border-color var(--transition-fast);
}

select:focus {
    border-color: var(--color-primary);
}

.select-wrapper::after {
    content: '▾';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.guide-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 18px;
    border-radius: 12px;
}

.guide-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.guide-checklist li svg {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Tool: Smart Checklist Generator */
.checklist-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
}

.checklist-selector {
    padding: 30px;
}

.services-checklist-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-height: 420px;
    overflow-y: auto;
    padding-right: 10px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.check-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-primary);
}

.check-item.active {
    background: rgba(79, 172, 254, 0.08);
    border-color: var(--color-primary);
}

.custom-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.check-item:hover .custom-checkbox {
    border-color: var(--color-primary);
}

.check-item.active .custom-checkbox {
    background: var(--gradient-primary);
    border-color: transparent;
}

.custom-checkbox svg {
    width: 12px;
    height: 12px;
    color: white;
    display: none;
}

.check-item.active .custom-checkbox svg {
    display: block;
}

.check-item-info {
    display: flex;
    flex-direction: column;
}

.check-item-name {
    font-size: 0.95rem;
    font-weight: 600;
}

.check-item-cat {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.checklist-result {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 400px;
}

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

.result-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
    color: var(--text-muted);
    flex-grow: 1;
}

.result-placeholder svg {
    width: 50px;
    height: 50px;
    stroke-width: 1.5;
}

.compiled-checklist {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-grow: 1;
}

.checklist-section-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.compiled-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.compiled-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}

.compiled-list li svg {
    width: 18px;
    height: 18px;
    color: var(--color-success);
    flex-shrink: 0;
    margin-top: 2px;
}

.checklist-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

/* Tool: Digital Fee Calculator */
.calc-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
}

.calc-builder {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.calc-service-selector {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 380px;
    overflow-y: auto;
    padding-right: 10px;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.calc-row:hover {
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.04);
}

.calc-row.active {
    border-color: var(--color-primary);
    background: rgba(79, 172, 254, 0.06);
}

.calc-row-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.calc-cost-breakdown {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-secondary);
}

.calc-row.active .calc-cost-breakdown {
    color: var(--color-success);
}

.calc-bill {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bill-title {
    font-size: 1.3rem;
    font-weight: 700;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    margin-bottom: 5px;
}

.bill-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 120px;
}

.bill-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.bill-total {
    border-top: 1px dashed var(--border-color);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.total-lbl {
    font-size: 1rem;
    font-weight: 700;
}

.total-val {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Service Detail Modal/Drawer */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 9, 19, 0.85);
    backdrop-filter: blur(8px);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeInModal var(--transition-fast) forwards;
}

@keyframes fadeInModal {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    width: 90%;
    max-width: 580px;
    padding: 35px;
    border-radius: 24px;
    position: relative;
    transform: scale(0.95);
    animation: scaleInModal var(--transition-normal) cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes scaleInModal {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.modal-close:hover {
    color: var(--color-danger);
    border-color: var(--color-danger);
    transform: rotate(90deg);
}

.modal-close svg {
    width: 16px;
    height: 16px;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-header-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.modal-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(79, 172, 254, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.modal-icon svg {
    width: 26px;
    height: 26px;
}

.modal-title h2 {
    font-size: 1.6rem;
}

.modal-title span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.modal-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 15px 20px;
    border-radius: 12px;
}

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

.meta-item .lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.meta-item .val {
    font-weight: 600;
    font-size: 0.95rem;
}

.meta-item .val-price {
    font-family: var(--font-heading);
    color: var(--color-success);
    font-weight: 700;
}

.modal-docs h3, .modal-steps h3 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.modal-docs-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 8px;
}

.modal-docs-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.modal-docs-list li svg {
    width: 14px;
    height: 14px;
    color: var(--color-success);
}

.modal-steps-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-steps-list li {
    display: flex;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.step-num {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--border-color);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* --- PHOTO GALLERY SHOWCASE --- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.portfolio-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.portfolio-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(6, 9, 19, 0.95) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.portfolio-info {
    position: absolute;
    bottom: -20px;
    left: 20px;
    right: 20px;
    z-index: 5;
    opacity: 0;
    transition: all var(--transition-normal);
}

.portfolio-info h4 {
    font-size: 1.15rem;
    font-weight: 700;
}

.portfolio-info p {
    font-size: 0.8rem;
    color: var(--color-primary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

.portfolio-item:hover::after {
    opacity: 1;
}

.portfolio-item:hover .portfolio-info {
    opacity: 1;
    bottom: 20px;
}

/* Custom Grid Configurations for Portfolio Showcase */
.port-1 { grid-column: span 4; height: 380px; }
.port-2 { grid-column: span 5; height: 380px; }
.port-3 { grid-column: span 3; height: 380px; }
.port-4 { grid-column: span 5; height: 280px; }
.port-5 { grid-column: span 7; height: 280px; }

/* --- TIMELINE/PROCESS SECTION --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--border-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: var(--bg-surface-opaque);
    border: 3px solid var(--color-primary);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left { left: 0; }
.right { left: 50%; }

.right::after {
    left: -8px;
}

.timeline-content {
    padding: 24px;
    position: relative;
}

.timeline-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-primary);
    opacity: 0.5;
    margin-bottom: 6px;
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stars {
    display: flex;
    gap: 3px;
    color: var(--color-accent);
}

.stars svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.testimonial-card p {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary);
    border: 1px solid var(--border-color);
}

.user-details h5 {
    font-size: 0.95rem;
    font-weight: 700;
}

.user-details span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* --- CONTACT & RESERVATION SECTION --- */
.contact-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(79, 172, 254, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-icon-box svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.contact-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.contact-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Google Maps Mock Frame */
.map-container {
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(1) invert(0.9);
}

[data-theme="light"] .map-container iframe {
    filter: none;
}

/* Contact/Booking Form */
.booking-form-card {
    padding: 40px;
    border-radius: 24px;
}

.booking-form-card h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.form-group.full-width {
    grid-column: span 2;
}

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

.form-control {
    width: 100%;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

[data-theme="light"] .form-control {
    background: rgba(0, 0, 0, 0.02);
}

.form-control:focus {
    border-color: var(--color-primary);
    background: rgba(0, 0, 0, 0.25);
}

[data-theme="light"] .form-control:focus {
    background: #ffffff;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 300;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    transform: translateY(100px);
    opacity: 0;
    animation: slideInToast var(--transition-normal) forwards;
}

@keyframes slideInToast {
    to { transform: translateY(0); opacity: 1; }
}

.toast.success {
    border-left: 4px solid var(--color-success);
}

.toast.info {
    border-left: 4px solid var(--color-primary);
}

.toast.success svg {
    color: var(--color-success);
}

.toast.info svg {
    color: var(--color-primary);
}

.toast svg {
    width: 20px;
    height: 20px;
}

/* --- FOOTER --- */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px 0;
    background: rgba(6, 9, 19, 0.5);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

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

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.social-btn:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.social-btn svg {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* --- ANIMATION HELPERS --- */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* --- MEDIA QUERIES (RESPONSIVENESS) --- */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.2rem; }
    .portfolio-grid { gap: 15px; }
    .port-1, .port-2, .port-3, .port-4, .port-5 { grid-column: span 6; height: 300px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .navbar {
        width: 95%;
        padding: 10px 20px;
    }

    .nav-menu {
        display: none; /* Mobile Navigation Toggle logic needed in prod */
    }

    .menu-toggle {
        display: block;
    }

    .hero { padding-top: 120px; }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .badge-glow { align-self: center; }
    .hero-desc { margin: 0 auto; }
    .hero-actions { justify-content: center; }
    
    .hero-visual {
        order: -1;
    }
    
    .visual-container {
        height: 380px;
    }

    .section-title { font-size: 2.2rem; }

    .cropper-layout, .checklist-layout, .calc-layout, .contact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::after {
        left: 22px;
    }

    .right { left: 0%; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.6rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .btn { width: 100%; }
    .service-tabs-nav { flex-direction: column; }
    .hub-nav-panel { grid-template-columns: 1fr; }
    .hub-tab-btn { border-bottom: none; border-left: 3px solid transparent; align-items: flex-start; padding: 15px; }
    .hub-tab-btn.active { border-left-color: var(--color-primary); border-bottom-color: transparent; }
    .form-grid { grid-template-columns: 1fr; }
    .form-group.full-width { grid-column: span 1; }
    .port-1, .port-2, .port-3, .port-4, .port-5 { grid-column: span 12; height: 260px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}
