@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@300;400;500;600;700;800&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

/* CSS Variables for Premium Design System */
:root {
    --color-primary: #5d6d4f;       /* Warm Olive Green */
    --color-primary-light: #eef2eb; /* Very Soft Olive Green */
    --color-primary-dark: #46523b;  /* Dark Olive Green */
    --color-secondary: #4a5c66;     /* Slate Blue-Gray */
    --color-secondary-light: #f2f5f7; /* Very Soft Blue-Gray */
    --color-accent: #c0904d;        /* Warm Wood Ochre */
    --color-bg: #FAF9F6;            /* Calming Off-white/Cream */
    --color-card-bg: #ffffff;
    --color-text-dark: #222523;     /* Dark Slate/Charcoal */
    --color-text-muted: #5a605c;    /* Muted Slate Gray */
    --color-white: #ffffff;
    
    --font-heading: 'Rubik', sans-serif;
    --font-body: 'Assistant', sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(93, 109, 79, 0.05);
    --shadow-md: 0 8px 24px rgba(93, 109, 79, 0.08);
    --shadow-lg: 0 16px 40px rgba(44, 62, 80, 0.12);
    
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    --max-width: 1200px;
}

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

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

body {
    direction: rtl;
    text-align: right;
    background-color: var(--color-bg);
    color: var(--color-text-dark);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    gap: 8px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(93, 109, 79, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(93, 109, 79, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
}

.btn-text {
    padding: 8px 16px;
    color: var(--color-primary);
    font-weight: 600;
    border-radius: 4px;
}

.btn-text:hover {
    background-color: var(--color-primary-light);
}

/* --- HEADER & NAVIGATION --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 1000;
    transition: var(--transition-smooth);
    background-color: transparent;
}

header.scrolled {
    background-color: rgba(250, 249, 246, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 70px;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(93, 109, 79, 0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

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

.logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    position: relative;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border-radius: 50%;
    background-color: var(--color-bg);
    transition: var(--transition-smooth);
}

header.scrolled .logo-icon::after {
    background-color: var(--color-white);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--color-text-dark);
}

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

nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    position: relative;
    padding: 6px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-smooth);
}

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

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

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

/* Mobile Menu Toggle button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text-dark);
    position: absolute;
    transition: var(--transition-smooth);
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 11px; }
.menu-toggle span:nth-child(3) { bottom: 0; }

.menu-toggle.open span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* --- HERO SECTION --- */
.hero-section {
    padding-top: 180px;
    padding-bottom: 100px;
    position: relative;
    background: radial-gradient(circle at 10% 20%, rgba(93, 109, 79, 0.05) 0%, rgba(74, 92, 102, 0.03) 90%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(93, 109, 79, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 650px;
}

.hero-tagline {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--color-primary-light);
    color: var(--color-primary-dark);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(93, 109, 79, 0.15);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-title span {
    display: block;
    color: var(--color-primary);
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-box {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4/5;
    border-radius: var(--border-radius-lg);
    background-color: var(--color-secondary-light);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--color-white);
    transform: rotate(2deg);
    transition: var(--transition-smooth);
}

.hero-image-box:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-badge {
    position: absolute;
    bottom: 24px;
    right: -20px;
    background-color: var(--color-white);
    padding: 16px 24px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: rotate(-2deg);
    z-index: 2;
}

.hero-image-badge .badge-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--color-accent);
    position: relative;
}

.hero-image-badge .badge-icon::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 1px solid var(--color-accent);
    animation: pulse 2s infinite;
}

.hero-image-badge .badge-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text-dark);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* --- SECTION DEFAULTS --- */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 20px;
}

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

/* --- ABOUT METHOD (4 STEPS) --- */
.about-method-section {
    background-color: var(--color-white);
}

.about-intro-text {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: -20px auto 60px auto;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.step-card {
    background-color: var(--color-bg);
    padding: 40px 30px;
    border-radius: var(--border-radius-md);
    position: relative;
    transition: var(--transition-smooth);
    border: 1px solid rgba(93, 109, 79, 0.05);
    height: 100%;
}

.step-card:hover {
    background-color: var(--color-white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-color: rgba(93, 109, 79, 0.15);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(93, 109, 79, 0.15);
    position: absolute;
    top: 20px;
    left: 24px;
    line-height: 1;
    transition: var(--transition-smooth);
}

.step-card:hover .step-number {
    color: var(--color-primary);
    opacity: 0.25;
    transform: scale(1.1);
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 12px;
}

.step-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 3px;
    background-color: var(--color-accent);
    border-radius: 2px;
}

.step-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* --- WHO IS IT FOR --- */
.audience-section {
    background-color: var(--color-bg);
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.audience-card {
    background-color: var(--color-white);
    padding: 48px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--color-secondary);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.audience-card:nth-child(2) {
    border-top-color: var(--color-primary);
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.audience-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--color-primary);
}

.audience-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.audience-list {
    list-style: none;
}

.audience-list li {
    position: relative;
    padding-right: 28px;
    margin-bottom: 14px;
    font-size: 1.05rem;
    color: var(--color-text-muted);
}

.audience-list li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--color-primary);
    font-weight: 700;
}

/* --- WHY CAMERA --- */
.why-camera-section {
    background-color: var(--color-white);
    position: relative;
}

.why-camera-box {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, rgba(93, 109, 79, 0.02) 100%);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    border: 1px solid rgba(93, 109, 79, 0.15);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.why-camera-content h3 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--color-primary-dark);
}

.why-camera-content p {
    font-size: 1.15rem;
    color: var(--color-text-dark);
    margin-bottom: 24px;
    line-height: 1.8;
}

.why-camera-quote {
    border-right: 4px solid var(--color-accent);
    padding-right: 20px;
    font-style: italic;
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

.why-camera-visual {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.visual-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.visual-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.visual-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.visual-text p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* --- ABOUT ME --- */
.about-me-section {
    background-color: var(--color-bg);
}

.about-me-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-me-img-box {
    position: relative;
}

.about-me-img {
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 10px solid var(--color-white);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.about-me-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-me-experience {
    position: absolute;
    bottom: 10px;
    left: -10px;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    font-size: 0.9rem;
}

.about-me-content h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--color-primary-dark);
}

.about-me-title {
    font-size: 1.1rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 24px;
}

.about-me-text p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

/* --- SERVICES --- */
.services-section {
    background-color: var(--color-white);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--color-bg);
    border-radius: var(--border-radius-lg);
    padding: 50px 40px;
    text-align: center;
    border: 1px solid rgba(93, 109, 79, 0.05);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    background-color: var(--color-white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: rgba(93, 109, 79, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.service-title {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: var(--color-primary-dark);
}

.service-desc {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
    flex-grow: 1;
}

/* --- CTA CLOSING --- */
.cta-closing-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-closing-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.04);
}

.cta-closing-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-closing-title {
    font-size: 2.2rem;
    color: var(--color-white);
    margin-bottom: 30px;
}

.cta-closing-section .btn-primary {
    background-color: var(--color-white);
    color: var(--color-primary-dark);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.cta-closing-section .btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* --- FAQ PAGE --- */
.faq-hero {
    padding-top: 160px;
    padding-bottom: 60px;
    background: radial-gradient(circle at 50% 120%, rgba(93, 109, 79, 0.08) 0%, rgba(255, 255, 255, 0) 60%);
    text-align: center;
}

.faq-title {
    font-size: 3rem;
    margin-bottom: 16px;
}

.faq-subtitle {
    color: var(--color-text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.faq-container-box {
    max-width: 800px;
    margin: 0 auto 100px auto;
    padding: 0 24px;
}

.accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(93, 109, 79, 0.05);
    transition: var(--transition-smooth);
}

.accordion-item:hover {
    border-color: rgba(93, 109, 79, 0.15);
    box-shadow: var(--shadow-md);
}

.accordion-header {
    width: 100%;
    padding: 24px 30px;
    background: none;
    border: none;
    text-align: right;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 20px;
}

.accordion-question {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin: 0;
}

.accordion-icon {
    font-size: 1.4rem;
    color: var(--color-primary);
    transition: var(--transition-smooth);
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    background-color: var(--color-primary);
    color: var(--color-white);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
}

.accordion-body {
    padding: 0 30px 30px 30px;
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* FAQ Footer CTA */
.faq-help-box {
    background-color: var(--color-primary-light);
    border-radius: var(--border-radius-md);
    padding: 40px;
    text-align: center;
    margin-top: 60px;
    border: 1px solid rgba(93, 109, 79, 0.1);
}

.faq-help-box h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.faq-help-box p {
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

/* --- FOOTER --- */
footer {
    background-color: var(--color-text-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px 0;
    font-size: 0.95rem;
}

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

.footer-info .logo-text {
    color: var(--color-white);
    margin-bottom: 20px;
}

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

.footer-info p {
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-links h4, .footer-contact h4 {
    color: var(--color-white);
    margin-bottom: 24px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 8px;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24px;
    height: 2px;
    background-color: var(--color-accent);
}

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

.footer-links a:hover {
    color: var(--color-white);
    padding-right: 6px;
}

.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact-icon {
    color: var(--color-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.85rem;
}

/* --- ANIMATION & REVEAL CLASS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delay modifiers for stagger effect */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* --- RESPONSIVE DESIGN (MEDIA QUERIES) --- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-camera-box {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    .about-me-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .about-me-img-box {
        max-width: 300px;
        margin: 0 auto;
    }
    .about-me-content h3 {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Header & Mobile nav */
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--color-bg);
        box-shadow: -5px 0 25px rgba(0,0,0,0.05);
        z-index: 999;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 40px 40px 40px;
        gap: 40px;
        transition: var(--transition-smooth);
    }
    
    nav.open {
        right: 0;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 24px;
        width: 100%;
    }
    
    .nav-links a {
        font-size: 1.1rem;
        display: block;
        width: 100%;
    }
    
    .nav-container .btn {
        width: 100%;
    }
    
    /* Layout adjustments */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 30px auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-image-box {
        margin: 0 auto;
    }
    
    .audience-grid, .services-grid, .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 520px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .why-camera-box {
        padding: 30px 20px;
    }
    .why-camera-content h3 {
        font-size: 1.6rem;
    }
    .why-camera-quote {
        font-size: 0.95rem;
    }
}

/* --- CONTACT PAGE --- */
.contact-hero {
    padding-top: 160px;
    padding-bottom: 60px;
    background: radial-gradient(circle at 50% 120%, rgba(93, 109, 79, 0.08) 0%, rgba(255, 255, 255, 0) 60%);
    text-align: center;
}

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

.contact-info-card {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(93, 109, 79, 0.05);
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: fit-content;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-method-icon {
    font-size: 2rem;
    color: var(--color-primary);
    background-color: var(--color-primary-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-details h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.contact-method-details p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.btn-whatsapp {
    background-color: #25d366;
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.contact-form-card {
    background-color: var(--color-white);
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(93, 109, 79, 0.05);
}

.contact-form-card h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--color-primary-dark);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--color-text-dark);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(93, 109, 79, 0.15);
    background-color: var(--color-bg);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text-dark);
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: var(--color-white);
    box-shadow: 0 0 0 4px rgba(93, 109, 79, 0.1);
}

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

.radio-group {
    display: flex;
    gap: 24px;
    margin-top: 8px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    color: var(--color-text-muted);
}

.radio-label input[type="radio"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(93, 109, 79, 0.3);
    border-radius: 50%;
    outline: none;
    transition: var(--transition-fast);
    position: relative;
    cursor: pointer;
}

.radio-label input[type="radio"]:checked {
    border-color: var(--color-primary);
}

.radio-label input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-primary);
}

.radio-label input[type="radio"]:focus {
    box-shadow: 0 0 0 4px rgba(93, 109, 79, 0.1);
}

.radio-label:hover {
    color: var(--color-text-dark);
}

.form-submit-btn {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
}

/* Success State Styles */
.form-success-message {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 4rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

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

/* --- ABOUT PAGE SPECIFIC STYLES --- */
.about-hero {
    padding-top: 160px;
    padding-bottom: 60px;
    background: radial-gradient(circle at 50% 120%, rgba(93, 109, 79, 0.08) 0%, rgba(255, 255, 255, 0) 60%);
    text-align: center;
}

.about-details-section {
    background-color: var(--color-white);
    padding: 80px 0;
}

.about-details-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Sidebar with sticky profile card */
.about-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-profile-card {
    background-color: var(--color-bg);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    border: 1px solid rgba(93, 109, 79, 0.05);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.about-profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    overflow: hidden;
    border: 5px solid var(--color-white);
    box-shadow: var(--shadow-sm);
}

.about-profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-profile-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 6px;
}

.about-profile-title {
    font-size: 1rem;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 20px;
}

.about-profile-info {
    list-style: none;
    padding-top: 20px;
    border-top: 1px solid rgba(93, 109, 79, 0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: right;
}

.about-profile-info li {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Main bio narrative style */
.about-bio-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.bio-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bio-block h3 {
    font-size: 1.4rem;
    color: var(--color-primary-dark);
    position: relative;
    padding-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bio-block h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background-color: var(--color-accent);
    border-radius: 2px;
}

.bio-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.bio-paragraph strong {
    color: var(--color-text-dark);
    font-weight: 600;
}

/* Quote styles */
.about-quote {
    background-color: var(--color-primary-light);
    border-right: 6px solid var(--color-accent);
    padding: 30px;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    margin: 20px 0;
    box-shadow: var(--shadow-sm);
}

.about-quote-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    line-height: 1.7;
    margin-bottom: 12px;
}

.about-quote-author {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Professional Disclaimer card */
.disclaimer-card {
    background-color: #fcf8f2;
    border: 1px dashed var(--color-accent);
    border-radius: var(--border-radius-md);
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 20px;
}

.disclaimer-icon {
    font-size: 2rem;
    color: var(--color-accent);
    line-height: 1;
}

.disclaimer-text h4 {
    font-size: 1.15rem;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.disclaimer-text p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .about-details-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-sidebar {
        position: static;
    }
    .about-profile-card {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}

/* --- KNOWLEDGE CENTER --- */
.knowledge-hero {
    padding-top: 160px;
    padding-bottom: 60px;
    background: radial-gradient(circle at 50% 120%, rgba(93, 109, 79, 0.08) 0%, rgba(255, 255, 255, 0) 60%);
    text-align: center;
}

.knowledge-grid-section {
    background-color: var(--color-bg);
    padding: 60px 0 100px 0;
}

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

.article-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    padding: 40px;
    border: 1px solid rgba(93, 109, 79, 0.05);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(93, 109, 79, 0.15);
}

.article-card-tag {
    align-self: flex-start;
    padding: 4px 12px;
    background-color: var(--color-primary-light);
    color: var(--color-primary-dark);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 20px;
}

.article-card-title {
    font-size: 1.4rem;
    color: var(--color-text-dark);
    margin-bottom: 16px;
    line-height: 1.35;
}

.article-card-excerpt {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-bottom: 24px;
    flex-grow: 1;
    line-height: 1.7;
}

.article-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(93, 109, 79, 0.08);
    padding-top: 20px;
    margin-top: auto;
}

.article-read-time {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Detailed Article View */
.article-detail-section {
    display: none; /* Controlled by JS */
    background-color: var(--color-white);
    padding: 60px 0 100px 0;
}

.article-detail-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.article-detail-header {
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(93, 109, 79, 0.1);
    padding-bottom: 30px;
}

.article-detail-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 30px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.article-detail-back-btn:hover {
    color: var(--color-primary-dark);
    transform: translateX(-4px); /* RTL: moves it slightly to the right/left */
}

.article-detail-title {
    font-size: 2.5rem;
    line-height: 1.25;
    margin-bottom: 20px;
    color: var(--color-text-dark);
}

.article-detail-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    flex-wrap: wrap;
}

.article-detail-body {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--color-text-dark);
}

.article-detail-body p {
    margin-bottom: 24px;
}

.article-detail-body h3 {
    font-size: 1.6rem;
    color: var(--color-primary-dark);
    margin: 40px 0 20px 0;
    position: relative;
    padding-bottom: 8px;
}

.article-detail-body h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background-color: var(--color-accent);
    border-radius: 2px;
}

.article-detail-body ul {
    margin-bottom: 30px;
    padding-right: 24px;
    list-style-type: none;
}

.article-detail-body ul li {
    position: relative;
    padding-right: 24px;
    margin-bottom: 12px;
}

.article-detail-body ul li::before {
    content: '•';
    position: absolute;
    right: 0;
    color: var(--color-accent);
    font-weight: bold;
    font-size: 1.3rem;
    line-height: 1;
    top: 2px;
}

/* Custom styles for article highlights or steps */
.article-step-box {
    background-color: var(--color-bg);
    border-radius: var(--border-radius-md);
    padding: 30px;
    margin: 30px 0;
    border-right: 4px solid var(--color-primary);
}

.article-step-box h4 {
    font-size: 1.2rem;
    color: var(--color-primary-dark);
    margin-bottom: 12px;
}

/* Responsive grid for articles */
@media (max-width: 768px) {
    .knowledge-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .article-detail-title {
        font-size: 2rem;
    }
    .article-card {
        padding: 30px 24px;
    }
}

