/* ===== ARTECH X STUDIO - VINTAGE NOTEBOOK THEME ===== */

/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Vintage Notebook Theme */
    --paper-white: #FFFEF7;
    --paper-cream: #F9F5E8;
    --paper-tan: #F0E6D2;
    --paper-brown: #E8D9C5;
    --ink-brown: #513a34;
    --ink-dark: #3E2723;
    --accent-rust: #483221b1;
    --accent-gold: #D4A76A;
    --accent-teal: #4a422f;
    --shadow-light: rgba(93, 64, 55, 0.1);
    --shadow-medium: rgba(93, 64, 55, 0.2);
    --shadow-dark: rgba(93, 64, 55, 0.3);
    
    /* Typography */
    --font-handwriting: 'Caveat', cursive;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink-dark);
    background: var(--paper-cream);
    overflow-x: hidden;
}

/* NOTEBOOK PAPER TEXTURE BACKGROUND */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, var(--shadow-light) 1px, transparent 1px),
        linear-gradient(var(--shadow-light) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
}

/* CONTAINER */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== NAVIGATION ===== */
/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
     background: 
        linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, rgba(182, 124, 77, 0.1) 0%, transparent 50%),
        var(--paper-cream);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--paper-brown);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0;
}

.navbar.scrolled {
    background: rgba(255, 254, 247, 0.98);
    box-shadow: 0 5px 20px var(--shadow-light);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: var(--container-width);
    margin: 0 auto;
    height: 80px;
}

/* LOGO - Using Image */
/* Update these styles in your navbar section */
.logo {
    display: flex;
    align-items: center;
    height: 100px !important;
    min-height: 100px !important;
    text-decoration: none;
    padding: 10px 0;
}

/* Make the logo image much larger and prominent */
.logo img.logo-image {
    height: 120px !important; /* Increased from 40px */
    width: auto !important; /* Maintain aspect ratio */
    min-height: 120px !important;
    object-fit: contain;
    margin-right: 15px;
}
.logo-corner-enhanced {
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.logo-corner-enhanced .logo-circle {
    width: 90px;
    height: 90px;
    background: var(--paper-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    box-shadow: 0 5px 15px var(--shadow-light);
    border: 2px solid var(--accent-gold);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.logo-corner-enhanced .logo-circle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-rust));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-corner-enhanced:hover .logo-circle::before {
    opacity: 0.3;
}

.logo-corner-enhanced:hover .logo-circle {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px var(--shadow-dark);
}

.logo-corner-enhanced .logo-circle img {
    height: 100px;
    width: 120px;
    transition: all 0.3s ease;
}

.logo-corner-enhanced:hover .logo-circle img {
    filter: brightness(1.1);
}

.logo-corner-enhanced .logo-label {
    font-family: var(--font-handwriting);
    font-size: 0.9rem;
    color: var(--accent-rust);
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.logo-corner-enhanced:hover .logo-label {
    opacity: 1;
    transform: translateY(0);
}
/* Also update nav-container height to match */
.nav-container {
    height: 100px !important;
    min-height: 100px; /* Add min-height */
}

/* Fallback text logo if image not loaded */
.logo-text {
    display: flex;
    flex-direction: row;
    align-items: baseline; /* Align text elements on the same baseline */
    line-height: 1;
    font-family: var(--font-serif);
    margin-right: 50px;
    white-space: nowrap; /* Prevent text from wrapping to next line */
}

.logo-main {
    font-size: 1rem;
    font-weight: 600; 
    color: var(--accent-gold);
    /* letter-spacing: 0.8px; */
}

.logo-sub {
    font-family: var(--font-handwriting);
    font-size: 0.8rem;
    color: var(--ink-brown);
    margin-left: 4px; /* Replace negative top margin with left margin */
    transform: rotate(-2deg);
    margin-top: 0; /* Reset the negative margin */
}

/* NAV MENU - Better Spacing */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    color: var(--ink-brown);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-item i {
    font-size: 1.1rem;
    color: var(--accent-gold);
    min-width: 20px;
    text-align: center;
}

.nav-item span {
    transition: transform 0.3s ease;
}

.nav-item:hover {
    background: rgba(139, 69, 19, 0.1);
    color: var(--accent-rust);
}

.nav-item:hover i {
    color: var(--accent-rust);
}

.nav-item:hover span {
    transform: translateX(3px);
}

.nav-item.active {
    background: var(--paper-tan);
    color: var(--accent-rust);
    font-weight: 600;
}

.nav-item.active i {
    color: var(--accent-rust);
}
/* ===== PROFESSIONAL HERO ANIMATIONS ===== */
/* Simple Logo Styling */
.simple-hero-logo {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid var(--accent-gold);
    z-index: 10;
}

.simple-hero-logo img {
    height: 80px;
    width: auto;
    display: block;
}
/* Smooth transitions for hero elements */
.notebook-paper,
.handwritten-header,
.hero-subtitle,
.sticky-note-cta,
.hero-social {
    will-change: transform, opacity;
}

/* Enhanced floating animation */
@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    33% { 
        transform: translateY(-15px) rotate(5deg); 
    }
    66% { 
        transform: translateY(5px) rotate(-5deg); 
    }
}

/* Smooth hover transitions */
.floating-icon,
.social-icon,
.nav-item,
.journal-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Performance optimizations */
.hero-section {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Subtle pulse animation for CTA */
@keyframes pulse {
    0%, 100% { 
        transform: translateY(0) rotate(3deg); 
        box-shadow: 0 5px 15px var(--shadow-medium);
    }
    50% { 
        transform: translateY(-5px) rotate(3deg); 
        box-shadow: 0 10px 25px var(--shadow-dark);
    }
}

.sticky-note {
    animation: pulse 4s ease-in-out infinite;
}

/* Typing cursor animation */
.typing-text::after {
    animation: blink 1s infinite;
    color: var(--accent-teal);
    font-weight: 300;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ===== SMOOTH SECTION TRANSITIONS ===== */
section {
    scroll-margin-top: 80px;
}

/* ===== REDUCED MOTION PREFERENCE ===== */
@media (prefers-reduced-motion: reduce) {
    .notebook-paper,
    .handwritten-header,
    .hero-subtitle,
    .sticky-note-cta,
    .hero-social,
    .floating-icon {
        animation: none !important;
        transition: none !important;
    }
    
    .typing-text::after {
        animation: none !important;
        opacity: 0;
    }
}
/* DROPDOWN - Improved */
.dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 12px 18px;
    border-radius: 8px;
}

.dropdown-trigger:hover {
    background: rgba(139, 69, 19, 0.1);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--paper-white);
    border: 1px solid var(--paper-brown);
    border-radius: 8px;
    box-shadow: 0 10px 30px var(--shadow-medium);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: 10px 0;
    margin-top: 5px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--ink-brown);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: var(--paper-tan);
    color: var(--accent-rust);
    padding-left: 25px;
}

.dropdown-menu a i {
    width: 20px;
    color: var(--accent-gold);
    font-size: 1rem;
}

/* NAV CTA BUTTON - Much Better */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-rust), var(--accent-gold));
    color: white !important;
    padding: 12px 25px !important;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
    margin-left: 10px;
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta i {
    color: white !important;
    font-size: 1.1rem;
}

/* MOBILE TOGGLE - Improved */
.mobile-toggle {
    display: none;
    width: 45px;
    height: 45px;
    background: var(--paper-tan);
    border: 1px solid var(--paper-brown);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--accent-rust);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    background: var(--accent-rust);
    color: white;
    border-color: var(--accent-rust);
}

/* ===== RESPONSIVE NAVBAR ===== */
@media (max-width: 1100px) {
    .nav-item {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .nav-cta {
        padding: 10px 20px !important;
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--paper-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px var(--shadow-medium);
        border-top: 1px solid var(--paper-brown);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-item {
        width: 100%;
        justify-content: flex-start;
        padding: 15px 20px;
        border-radius: 8px;
        margin-bottom: 5px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--paper-tan);
        margin: 10px 0 0 20px;
        padding: 10px 0;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-trigger {
        justify-content: space-between;
        width: 100%;
    }
    
    .nav-cta {
        margin: 20px 0 0 0;
        width: 100%;
        justify-content: center;
    }
    
    .mobile-toggle {
        display: flex;
    }
}

/* ===== DROPDOWN FIX: Separate hover (desktop) and click (mobile) ===== */
/* ===== DROPDOWN HOVER EFFECT ===== */

/* Desktop - Hover effect */
@media (min-width: 993px) {
    /* Main dropdown container */
    .dropdown {
        position: relative;
    }
    
    /* Hide dropdown menu by default */
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 250px;
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border-radius: 8px;
        padding: 10px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    /* Show on hover */
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    /* Arrow animation */
    .dropdown-trigger .dropdown-arrow {
        transition: transform 0.3s ease;
    }
    
    .dropdown:hover .dropdown-trigger .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    /* Dropdown items styling */
    .dropdown-menu a {
        display: flex;
        align-items: center;
        padding: 12px 20px;
        color: #333;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .dropdown-menu a:hover {
        background: #f8f9fa;
        color: #007bff;
        padding-left: 25px;
    }
    
    .dropdown-menu a i {
        margin-right: 10px;
        width: 20px;
        text-align: center;
    }
    
    .dropdown-divider {
        height: 1px;
        background: #eee;
        margin: 8px 0;
    }
}

/* ===== MOBILE STYLES ===== */
@media (max-width: 992px) {
    /* Mobile mein hover nahi, click se kaam karega */
    .dropdown-menu {
        display: none;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        padding: 0;
        background: #f8f9fa;
        border-radius: 5px;
        margin: 5px 0;
    }
    
    .dropdown-menu.active {
        display: block;
        max-height: 500px;
        opacity: 1;
        transform: translateY(0);
        padding: 10px 0;
    }
    
    .dropdown-trigger {
        cursor: pointer;
        position: relative;
    }
    
    .dropdown-trigger .dropdown-arrow {
        transition: transform 0.3s ease;
    }
    
    .dropdown-trigger.active .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .dropdown-menu a {
        padding: 12px 20px 12px 40px;
        font-size: 14px;
    }
}
/* ===== FIXED NAVBAR FIXES ===== */
body {
    padding-top: 100px; /* Match navbar height */
}

/* Force navbar to stay fixed */
.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
}

/* Adjust first section to account for navbar */
.hero-section,
.service-hero,
.about-header,
.contact-hero {
    padding-top: 120px; /* Add extra padding for fixed navbar */
}

/* ===== MOBILE TOGGLER FIX ===== */
@media (max-width: 992px) {
    body {
        padding-top: 80px; /* Smaller padding for mobile */
    }
    
    /* Mobile menu positioning */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: var(--paper-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px var(--shadow-medium);
        border-top: 1px solid var(--paper-brown);
        transition: left 0.4s ease;
        overflow-y: auto;
        z-index: 999;
        display: flex !important; /* Force display */
        height: calc(100vh - 80px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Show mobile toggle */
    .mobile-toggle {
        display: flex !important;
        background: var(--paper-tan);
        border: 1px solid var(--paper-brown);
        border-radius: 8px;
        width: 45px;
        height: 45px;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        color: var(--accent-rust);
        cursor: pointer;
        z-index: 1001;
    }
    
    /* Mobile nav items */
    .nav-item {
        width: 100%;
        justify-content: flex-start;
        padding: 15px 20px;
        border-radius: 8px;
        margin-bottom: 5px;
    }
    
    /* Mobile dropdowns */
    .dropdown {
        width: 100%;
    }
    
    .dropdown-trigger {
        width: 100%;
        justify-content: space-between;
    }
    
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        width: 100% !important;
        background: var(--paper-tan) !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 10px 0 0 0 !important;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .nav-cta {
        margin: 20px 0 0 0;
        width: 100%;
        justify-content: center;
    }
}

/* Mobile menu toggle button animation */
.mobile-toggle .fa-bars {
    transition: transform 0.3s ease;
}

.mobile-toggle.active .fa-bars {
    transform: rotate(90deg);
}

/* Close mobile menu on outside click */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(0, 0, 0, 0.3);
    z-index: 998;
}

.mobile-overlay.active {
    display: block;
}
/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: 
        linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, rgba(182, 124, 77, 0.1) 0%, transparent 50%),
        var(--paper-cream);
    overflow: hidden;
}

/* ARTISTIC BACKGROUND ELEMENTS */
.artistic-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sketch {
    position: absolute;
    border: 2px dashed var(--accent-gold);
    opacity: 0.3;
}

.pencil-sketch {
    top: 20%;
    left: 10%;
    width: 200px;
    height: 150px;
    transform: rotate(-15deg);
}

.paint-stroke {
    bottom: 15%;
    right: 10%;
    width: 250px;
    height: 100px;
    background: linear-gradient(90deg, transparent, rgba(212, 167, 106, 0.1), transparent);
    border: none;
    border-radius: 50%;
    transform: rotate(10deg);
}

.design-grid {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background-image: 
        linear-gradient(var(--accent-gold) 1px, transparent 1px),
        linear-gradient(90deg, var(--accent-gold) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--paper-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-rust);
    box-shadow: 0 5px 15px var(--shadow-light);
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(4) {
    top: 30%;
    right: 15%;
    animation-delay: 0s;
}

.floating-icon:nth-child(5) {
    top: 60%;
    left: 20%;
    animation-delay: 2s;
}

.floating-icon:nth-child(6) {
    bottom: 25%;
    right: 25%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* NOTEBOOK PAPER HERO */
.notebook-paper {
    position: relative;
    background: var(--paper-white);
    padding: 60px;
    border-radius: 2px;
    box-shadow: 
        0 5px 15px var(--shadow-light),
        0 0 0 1px var(--paper-brown),
        0 0 0 2px var(--paper-tan);
    max-width: 800px;
    margin: 0 auto;
    transform: rotate(1deg);
}

.notebook-paper::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        var(--accent-gold) 10%, 
        transparent 20%,
        transparent 80%,
        var(--accent-gold) 90%,
        transparent 100%);
}

.handwritten-header {
    font-family: var(--font-handwriting);
    font-size: 4rem;
    color: var(--ink-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.handwritten-line {
    display: block;
    font-weight: 700;
    color: var(--accent-rust);
}

.typing-text {
    color: var(--accent-teal);
    position: relative;
}

.typing-text::after {
    content: '|';
    position: absolute;
    right: -10px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.paper-underline {
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-teal));
    margin: 30px 0;
    border-radius: 2px;
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--ink-brown);
    font-style: italic;
    margin-bottom: 40px;
    padding-left: 20px;
    border-left: 3px solid var(--accent-gold);
}

/* STICKY NOTE CTA */
.sticky-note-cta {
    display: inline-block;
    transform: rotate(3deg);
}

.sticky-note {
    background: linear-gradient(135deg, #FFF9C4, #FFECB3);
    padding: 25px;
    border-radius: 2px;
    box-shadow: 
        0 5px 15px var(--shadow-medium),
        0 0 0 1px rgba(212, 167, 106, 0.3);
    position: relative;
    max-width: 300px;
}

.sticky-note::before {
    content: '';
    position: absolute;
    top: -10px;
    right: 30px;
    width: 20px;
    height: 20px;
    background: inherit;
    transform: rotate(45deg);
    z-index: -1;
}

.sticky-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--accent-rust);
    font-weight: 600;
}

.sticky-header i {
    font-size: 1.2rem;
}

.sticky-note p {
    color: var(--ink-brown);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.sticky-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-teal);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: var(--accent-rust);
    transform: translateX(5px);
}

/* HERO SOCIAL */
.hero-social {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--paper-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-brown);
    font-size: 1.2rem;
    text-decoration: none;
    box-shadow: 0 3px 10px var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-teal));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    color: var(--accent-rust);
}

.social-icon:hover::before {
    opacity: 1;
}

/* ===== SECTIONS COMMON ===== */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.notebook-title {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.notebook-title h2 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--ink-dark);
    display: flex;
    align-items: center;
    gap: 15px;
}

.notebook-title .handwritten {
    font-family: var(--font-handwriting);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--accent-rust);
}

.notebook-title i {
    color: var(--accent-gold);
    font-size: 2rem;
}

.notebook-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.section-subtitle {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--ink-brown);
    font-style: italic;
}

/* ===== SERVICES PREVIEW ===== */
.service-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(93, 64, 55, 0.15);
}

.service-card:hover .card-arrow {
    transform: translateX(5px);
    color: #b35441;
}
.services-preview {
    background: var(--paper-tan);
    position: relative;
    overflow: hidden;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* JOURNAL STYLE CARD */
.journal-card {
    background: var(--paper-white);
    border-radius: 2px;
    padding: 30px;
    position: relative;
    border: 1px solid var(--paper-brown);
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: all 0.4s ease;
    cursor: pointer;
}

.journal-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 15px 30px var(--shadow-medium);
    border-color: var(--accent-gold);
}

.card-sticker {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--accent-rust);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 3px 10px var(--shadow-medium);
}

.card-content {
    padding-top: 20px;
}

.card-content h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--ink-dark);
    margin-bottom: 15px;
}

.card-content p {
    color: var(--ink-brown);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.card-tags span {
    background: var(--paper-tan);
    color: var(--accent-rust);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--paper-brown);
}

.card-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--paper-tan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-rust);
    transition: all 0.3s ease;
}

.journal-card:hover .card-arrow {
    background: var(--accent-rust);
    color: white;
    transform: translateX(5px);
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
    background: var(--paper-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* NOTEBOOK FRAME */
.notebook-frame {
    position: relative;
    background: var(--paper-cream);
    padding: 20px;
    border-radius: 2px;
    box-shadow: 
        0 10px 30px var(--shadow-light),
        0 0 0 1px var(--paper-brown),
        0 0 0 20px var(--paper-tan);
    transform: rotate(-2deg);
}

.notebook-binding {
    position: absolute;
    left: -10px;
    top: 20px;
    bottom: 20px;
    width: 20px;
    background: linear-gradient(to right, 
        var(--accent-rust) 0%,
        var(--accent-gold) 30%,
        var(--accent-rust) 100%);
    border-radius: 10px 0 0 10px;
}

.notebook-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 2px;
    filter: sepia(0.2) contrast(1.1);
}

.notebook-notes {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 15px;
    border-radius: 2px;
    box-shadow: 0 5px 15px var(--shadow-medium);
    transform: rotate(3deg);
}

.notebook-notes .note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--ink-brown);
    font-size: 0.9rem;
}

.notebook-notes .note i {
    color: var(--accent-teal);
}

/* JOURNAL PAGE */
.journal-page {
    background: var(--paper-cream);
    padding: 40px;
    border-radius: 2px;
    box-shadow: 
        0 10px 30px var(--shadow-light),
        inset 0 0 0 1px var(--paper-brown);
    position: relative;
    transform: rotate(1deg);
}

.journal-page::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: repeating-linear-gradient(
        to bottom,
        transparent,
        transparent 20px,
        var(--accent-gold) 20px,
        var(--accent-gold) 22px
    );
}

.journal-header {
    margin-bottom: 30px;
}

.journal-date {
    display: inline-block;
    background: var(--paper-tan);
    color: var(--accent-rust);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.journal-header h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--ink-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.journal-header h2 i {
    color: var(--accent-gold);
}

.journal-underline {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
}

.journal-entry p {
    color: var(--ink-brown);
    margin-bottom: 20px;
    line-height: 1.7;
    position: relative;
    padding-left: 20px;
}

.quote-start {
    position: absolute;
    left: -10px;
    top: -10px;
    color: var(--accent-gold);
    font-size: 1.5rem;
}

.journal-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--paper-tan);
    padding: 10px;
    border-radius: 4px;
    color: var(--ink-brown);
    font-size: 0.9rem;
}

.feature i {
    color: var(--accent-teal);
}

.journal-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-rust);
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.journal-btn:hover {
    background: var(--ink-dark);
    transform: translateX(5px);
}

.journal-btn.outline {
    background: transparent;
    color: var(--accent-rust);
    border: 2px solid var(--accent-rust);
}

.journal-btn.outline:hover {
    background: var(--accent-rust);
    color: white;
}

/* ===== WHY CHOOSE US ===== */
.why-choose {
    background: var(--paper-cream);
    position: relative;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 20px,
        var(--accent-gold) 20px,
        var(--accent-gold) 22px
    );
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.sketchbook-card {
    background: var(--paper-white);
    padding: 40px 30px;
    border-radius: 2px;
    text-align: center;
    position: relative;
    border: 1px solid var(--paper-brown);
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: all 0.4s ease;
}

.sketchbook-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-medium);
    border-color: var(--accent-teal);
}

.feature-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--accent-teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 3px 10px var(--shadow-medium);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--paper-tan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--accent-rust);
    transition: all 0.3s ease;
}

.sketchbook-card:hover .feature-icon {
    background: var(--accent-rust);
    color: white;
    transform: rotate(15deg);
}

.sketchbook-card h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--ink-dark);
    margin-bottom: 15px;
}

.sketchbook-card p {
    color: var(--ink-brown);
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
}

.feature-dots span {
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0.5;
}

/* ===== PORTFOLIO ===== */
.portfolio-preview {
    background: var(--paper-tan);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.4s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.portfolio-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: sepia(0.3);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
    filter: sepia(0);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, 
        rgba(93, 64, 55, 0.9) 0%, 
        rgba(93, 64, 55, 0.7) 50%, 
        rgba(93, 64, 55, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-tag {
    display: inline-block;
    background: var(--accent-teal);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    align-self: flex-start;
}

.portfolio-overlay h3 {
    color: white;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.portfolio-link {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-rust);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    background: var(--accent-rust);
    color: white;
    transform: rotate(90deg);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--paper-white);
}

.testimonial-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.testimonial-intro .journal-page.small {
    padding: 30px;
    transform: rotate(-2deg);
}

.testimonial-slider {
    position: relative;
}

.slider-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-card {
    background: var(--paper-cream);
    padding: 40px;
    border-radius: 2px;
    border: 1px solid var(--paper-brown);
    box-shadow: 0 10px 30px var(--shadow-light);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-mark {
    color: var(--accent-gold);
    font-size: 2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--ink-brown);
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.7;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-gold);
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    color: var(--ink-dark);
    font-family: var(--font-serif);
    margin-bottom: 5px;
}

.client-details span {
    color: var(--accent-rust);
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.slider-btn {
    width: 45px;
    height: 45px;
    background: var(--paper-tan);
    border: 1px solid var(--paper-brown);
    border-radius: 50%;
    color: var(--accent-rust);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--accent-rust);
    color: white;
    transform: translateY(-3px);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--paper-brown);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-rust);
    transform: scale(1.3);
}

/* ===== CONTACT CTA ===== */
.contact-cta {
    background: linear-gradient(135deg, 
        rgba(139, 69, 19, 0.05) 0%, 
        rgba(157, 153, 92, 0.05) 100%),
        var(--paper-cream);
}

.notebook-paper.large {
    max-width: 900px;
    margin: 0 auto;
    transform: rotate(-1deg);
}

.paper-content {
    text-align: center;
}

.paper-content h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--ink-dark);
    margin-bottom: 20px;
}

.paper-content p {
    color: var(--ink-brown);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: var(--accent-rust);
    color: white;
}

.cta-btn.secondary {
    background: transparent;
    color: var(--accent-rust);
    border: 2px solid var(--accent-rust);
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--shadow-medium);
}

.cta-btn.primary:hover {
    background: var(--ink-dark);
}

.cta-btn.secondary:hover {
    background: var(--accent-rust);
    color: white;
}

.cta-notes {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-notes .note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-rust);
    font-weight: 500;
}

.cta-notes .note i {
    color: var(--accent-teal);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--ink-dark);
    color: var(--paper-tan);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--paper-white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.footer-logo .logo-main {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--paper-white);
    font-weight: 900;
}

.footer-logo .logo-sub {
    font-family: var(--font-handwriting);
    font-size: 1.4rem;
    color: var(--accent-gold);
    transform: rotate(-2deg);
}

.footer-desc {
    color: var(--paper-brown);
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--paper-tan);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-gold);
    color: var(--ink-dark);
    transform: translateY(-3px);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--paper-brown);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-col ul li a i {
    width: 20px;
    color: var(--accent-gold);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--paper-brown);
    margin-bottom: 15px;
}

.contact-info p i {
    color: var(--accent-gold);
    width: 20px;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-rust);
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.footer-cta:hover {
    background: var(--accent-gold);
    color: var(--ink-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--paper-brown);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-bottom strong {
    color: var(--accent-gold);
}

.footer-bottom i {
    color: #e74c3c;
    margin: 0 5px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    :root {
        --container-width: 1000px;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--paper-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px var(--shadow-medium);
        border-top: 1px solid var(--paper-brown);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-social {
        display: none;
    }
    
    .handwritten-header {
        font-size: 3rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonial-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonial-intro {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .handwritten-header {
        font-size: 2.5rem;
    }
    
    .notebook-paper {
        padding: 30px;
    }
    
    .notebook-title h2 {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .notebook-title .handwritten {
        font-size: 2.5rem;
    }
    
    .services-grid,
    .features-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .journal-features {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .paper-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .handwritten-header {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .sticky-note {
        max-width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .notebook-paper {
        padding: 20px;
    }
}
/* about page css */
 /* Inherit your existing CSS variables and base styles */
        :root {
            --paper-white: #FFFEF7;
            --paper-cream: #F9F5E8;
            --paper-tan: #F0E6D2;
            --paper-brown: #E8D9C5;
            --ink-brown: #513a34;
            --ink-dark: #3E2723;
            --accent-rust: #483221b1;
            --accent-gold: #D4A76A;
            --accent-teal: #4a422f;
            --shadow-light: rgba(93, 64, 55, 0.1);
            --shadow-medium: rgba(93, 64, 55, 0.2);
            --shadow-dark: rgba(93, 64, 55, 0.3);
            --font-handwriting: 'Caveat', cursive;
            --font-serif: 'Playfair Display', serif;
            --font-sans: 'Montserrat', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-sans);
            background: var(--paper-cream);
            color: var(--ink-dark);
            overflow-x: hidden;
        }

        /* NOTEBOOK BACKGROUND TEXTURE */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(90deg, var(--shadow-light) 1px, transparent 1px),
                linear-gradient(var(--shadow-light) 1px, transparent 1px);
            background-size: 40px 40px;
            opacity: 0.3;
            pointer-events: none;
            z-index: -1;
        }

        /* ===== ABOUT PAGE HEADER ===== */
        .about-header {
            padding: 140px 20px 80px;
            text-align: center;
            background: linear-gradient(135deg, rgba(139, 69, 19, 0.05) 0%, transparent 50%);
            position: relative;
            overflow: hidden;
        }

        /* .about-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--accent-gold), var(--accent-rust), var(--accent-teal));
        } */

        .page-breadcrumb {
            margin-bottom: 30px;
            font-family: var(--font-sans);
            color: var(--accent-rust);
            font-size: 0.95rem;
        }

        .page-breadcrumb a {
            color: var(--accent-rust);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .page-breadcrumb a:hover {
            color: var(--accent-teal);
            text-decoration: underline;
        }

        .page-title {
            font-family: var(--font-handwriting);
            font-size: 4.5rem;
            color: var(--accent-rust);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .page-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
        }

        .page-subtitle {
            font-family: var(--font-serif);
            font-size: 1.3rem;
            color: var(--ink-brown);
            font-style: italic;
            max-width: 600px;
            margin: 30px auto;
            padding: 20px;
            position: relative;
        }

        .page-subtitle::before,
        .page-subtitle::after {
            content: '"';
            font-family: var(--font-serif);
            font-size: 3rem;
            color: var(--accent-gold);
            position: absolute;
            opacity: 0.5;
        }

        .page-subtitle::before {
            top: 0;
            left: 0;
        }

        .page-subtitle::after {
            bottom: 0;
            right: 0;
        }

        /* ===== MAIN CONTENT SECTIONS ===== */
        .section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-family: var(--font-serif);
            font-size: 2.8rem;
            color: var(--ink-dark);
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--accent-gold);
        }

        .handwritten-accent {
            font-family: var(--font-handwriting);
            color: var(--accent-rust);
            font-size: 3.2rem;
            font-weight: 700;
        }

        /* ===== OUR STORY SECTION ===== */
        .our-story {
            background: var(--paper-white);
            position: relative;
        }

        .our-story::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
        }

        .story-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .story-journal {
            background: var(--paper-cream);
            padding: 40px;
            border-radius: 2px;
            box-shadow: 
                0 10px 30px var(--shadow-light),
                inset 0 0 0 1px var(--paper-brown);
            position: relative;
            transform: rotate(-1deg);
        }

        .story-journal::before {
            content: '';
            position: absolute;
            left: 40px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: repeating-linear-gradient(
                to bottom,
                transparent,
                transparent 20px,
                var(--accent-gold) 20px,
                var(--accent-gold) 22px
            );
        }

        .journal-date {
            display: inline-block;
            background: var(--paper-tan);
            color: var(--accent-rust);
            padding: 5px 15px;
            border-radius: 15px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .story-journal h3 {
            font-family: var(--font-serif);
            font-size: 2rem;
            color: var(--ink-dark);
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .story-journal h3 i {
            color: var(--accent-gold);
        }

        .story-journal p {
            color: var(--ink-brown);
            margin-bottom: 20px;
            line-height: 1.7;
            position: relative;
            padding-left: 20px;
        }

        .story-sketch {
            position: relative;
            transform: rotate(2deg);
        }

        .sketch-frame {
            background: var(--paper-cream);
            padding: 20px;
            border-radius: 2px;
            box-shadow: 
                0 10px 30px var(--shadow-light),
                0 0 0 1px var(--paper-brown),
                0 0 0 20px var(--paper-tan);
        }

        .sketch-placeholder {
            height: 400px;
            background: linear-gradient(135deg, var(--paper-tan), #e8d9c0);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 2px;
            position: relative;
            overflow: hidden;
        }

        .sketch-placeholder::after {
            content: 'ARTECH X';
            position: absolute;
            font-family: var(--font-handwriting);
            font-size: 6rem;
            color: rgba(169, 125, 93, 0.1);
            font-weight: 900;
            letter-spacing: 10px;
            transform: rotate(-15deg);
        }

        .sketch-placeholder i {
            font-size: 4rem;
            color: var(--accent-gold);
            z-index: 2;
            position: relative;
        }

        .sketch-notes {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background: white;
            padding: 15px;
            border-radius: 2px;
            box-shadow: 0 5px 15px var(--shadow-medium);
            transform: rotate(5deg);
        }

        .sketch-notes .note {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 8px;
            color: var(--ink-brown);
            font-size: 0.9rem;
        }

        .sketch-notes .note i {
            color: var(--accent-teal);
        }

        /* ===== MISSION VISION SECTION ===== */
        .mission-vision {
            background: var(--paper-tan);
            position: relative;
        }

        .mission-vision::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: repeating-linear-gradient(
                90deg,
                transparent,
                transparent 20px,
                var(--accent-gold) 20px,
                var(--accent-gold) 22px
            );
        }

        .mv-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .mv-card {
            background: var(--paper-white);
            padding: 40px 30px;
            border-radius: 2px;
            border: 1px solid var(--paper-brown);
            box-shadow: 0 5px 15px var(--shadow-light);
            position: relative;
            transition: all 0.4s ease;
        }

        .mv-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px var(--shadow-medium);
            border-color: var(--accent-teal);
        }

        .mv-card.vision {
            border-left: 5px solid var(--accent-teal);
        }

        .mv-card.mission {
            border-left: 5px solid var(--accent-rust);
        }

        .mv-icon {
            width: 70px;
            height: 70px;
            background: var(--paper-tan);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 1.8rem;
            color: var(--accent-teal);
            border: 2px solid var(--accent-gold);
        }

        .mission .mv-icon {
            color: var(--accent-rust);
        }

        .mv-card h3 {
            font-family: var(--font-serif);
            font-size: 1.8rem;
            color: var(--ink-dark);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .mv-card p {
            color: var(--ink-brown);
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .mv-list {
            list-style: none;
        }

        .mv-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            color: var(--ink-brown);
        }

        .mv-list li i {
            color: var(--accent-gold);
            width: 20px;
        }

        /* ===== OUR VALUES SECTION ===== */
        .our-values {
            background: var(--paper-white);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .value-card {
            background: var(--paper-cream);
            padding: 35px 30px;
            border-radius: 2px;
            border: 1px solid var(--paper-brown);
            box-shadow: 0 5px 15px var(--shadow-light);
            text-align: center;
            position: relative;
            transition: all 0.4s ease;
        }

        .value-card:hover {
            transform: translateY(-10px) rotate(1deg);
            box-shadow: 0 15px 30px var(--shadow-medium);
            border-color: var(--accent-gold);
        }

        .value-number {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background: var(--accent-rust);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            box-shadow: 0 3px 10px var(--shadow-medium);
        }

        .value-icon {
            width: 80px;
            height: 80px;
            background: var(--paper-tan);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: var(--accent-rust);
            border: 2px solid var(--accent-gold);
            transition: all 0.3s ease;
        }

        .value-card:hover .value-icon {
            background: var(--accent-rust);
            color: white;
            transform: rotate(15deg);
        }

        .value-card h3 {
            font-family: var(--font-serif);
            font-size: 1.5rem;
            color: var(--ink-dark);
            margin-bottom: 15px;
        }

        .value-card p {
            color: var(--ink-brown);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* ===== TEAM EXPERTISE SECTION ===== */
     /* Expertise Section - Professional Version */
.team-expertise {
    background: var(--paper-tan);
    padding: 100px 20px;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 25px auto 60px;
    color: var(--ink-brown);
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Wrapper for centering */
.expertise-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Professional Container */
.expertise-container {
    background: var(--paper-white);
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.08),
        0 5px 15px rgba(0, 0, 0, 0.03),
        inset 0 0 0 1px rgba(139, 69, 19, 0.1);
    position: relative;
    overflow: hidden;
}

/* Elegant top border */
.expertise-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent-gold) 20%, 
        var(--accent-gold) 80%, 
        transparent 100%);
    border-radius: 0 0 2px 2px;
}

/* Grid Layout */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Tablet: 2 columns */
@media (max-width: 992px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile: 1 column */
@media (max-width: 576px) {
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 450px;
        margin: 0 auto;
    }
}

/* Professional Expertise Item */
.expertise-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--paper-white);
    border-radius: 10px;
    border: 1px solid rgba(139, 69, 19, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    
    /* Animation properties */
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
    
    /* Professional shadow */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .expertise-item {
        padding: 35px 25px;
    }
}

/* Professional Hover Effects */
.expertise-item:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 69, 19, 0.3);
    
    /* Professional shadow enhancement */
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 15px 30px rgba(139, 69, 19, 0.08),
        0 5px 15px rgba(255, 215, 0, 0.05);
    
    /* Subtle background enhancement */
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(250, 245, 235, 0.95) 100%);
}

/* Add subtle accent border on hover */
.expertise-item::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 11px;
    border: 2px solid transparent;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.1) 0%, 
        rgba(184, 115, 51, 0.1) 50%, 
        rgba(255, 215, 0, 0.1) 100%) border-box;
    -webkit-mask: 
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.expertise-item:hover::after {
    opacity: 1;
}

/* Staggered delays */
.expertise-item.delay-1 { animation-delay: 0.15s; }
.expertise-item.delay-2 { animation-delay: 0.3s; }
.expertise-item.delay-3 { animation-delay: 0.45s; }

/* Animation keyframes */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Professional Expertise Icon */
.expertise-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, 
        rgba(255, 250, 240, 0.9) 0%, 
        rgba(245, 235, 220, 0.9) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: var(--accent-rust);
    border: 1.5px solid rgba(184, 115, 51, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Professional icon hover */
.expertise-item:hover .expertise-icon {
    transform: scale(1.08);
    background:  var(--paper-tan);
    color: var(--accent-rust-dark);
    border-color: var(--accent-gold);
    box-shadow: 
        0 10px 30px rgba(139, 69, 19, 0.1),
        0 5px 15px rgba(255, 215, 0, 0.15);
}

/* Add subtle glow to icon */
.expertise-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: radial-gradient(circle at center, 
        rgba(255, 215, 0, 0.1) 0%, 
        transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.expertise-item:hover .expertise-icon::before {
    opacity: 1;
}

/* Professional Expertise Name */
.expertise-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--ink-brown);
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.3px;
    transition: all 0.3s ease;
}

.expertise-item:hover .expertise-name {
    color: var(--ink-darker);
}

/* Professional Expertise Description */
.expertise-desc {
    color: var(--ink-brown);
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 400;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.expertise-item:hover .expertise-desc {
    color: var(--ink-dark);
    opacity: 1;
}

/* Add a subtle divider */
.expertise-desc::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: rgba(139, 69, 19, 0.2);
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.expertise-item:hover .expertise-desc::before {
    width: 60px;
    background: var(--accent-gold);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .team-expertise {
        padding: 70px 15px;
    }
    
    .expertise-container {
        padding: 45px 30px;
        border-radius: 10px;
    }
    
    .expertise-item:hover {
        transform: translateY(-6px);
    }
    
    .expertise-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .expertise-name {
        font-size: 1.3rem;
    }
    
    .expertise-desc {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .team-expertise {
        padding: 50px 10px;
    }
    
    .expertise-container {
        padding: 35px 25px;
        border-radius: 8px;
    }
    
    .expertise-item {
        padding: 30px 20px;
    }
    
    .expertise-item:hover {
        transform: translateY(-4px);
    }
    
    .expertise-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
    }
    
    .expertise-name {
        font-size: 1.2rem;
    }
    
    .expertise-desc {
        font-size: 0.95rem;
    }
}
        /* ===== CLIENT STORIES SECTION ===== */
        .client-stories {
            background: var(--paper-white);
        }

        .stories-container {
            max-width: 800px;
            margin: 50px auto 0;
            position: relative;
        }

        .story-card {
            background: var(--paper-cream);
            padding: 40px;
            border-radius: 2px;
            border: 1px solid var(--paper-brown);
            box-shadow: 0 10px 30px var(--shadow-light);
            position: relative;
            margin-bottom: 30px;
        }

        .story-card::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            width: 30px;
            height: 30px;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23D4A76A" d="M0,40 Q20,20 40,40 T80,40 L80,80 L0,80 Z"/></svg>');
            background-size: contain;
            opacity: 0.2;
        }

        .story-text {
            font-family: var(--font-serif);
            font-size: 1.2rem;
            color: var(--ink-brown);
            font-style: italic;
            line-height: 1.7;
            margin-bottom: 25px;
            position: relative;
            padding-left: 30px;
        }

        .story-text::before {
            content: '"';
            font-family: var(--font-serif);
            font-size: 4rem;
            color: var(--accent-gold);
            position: absolute;
            left: -10px;
            top: -20px;
            opacity: 0.3;
        }

        .story-client {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .client-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--paper-tan);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: var(--accent-rust);
            border: 2px solid var(--accent-gold);
        }

        .client-info h4 {
            font-family: var(--font-serif);
            color: var(--ink-dark);
            margin-bottom: 5px;
        }

        .client-info p {
            color: var(--accent-rust);
            font-size: 0.9rem;
        }

        /* ===== CALL TO ACTION ===== */
        .about-cta {
            background: linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, rgba(166, 157, 91, 0.1) 100%);
            padding: 100px 20px;
            text-align: center;
        }

        .cta-notebook {
            background: var(--paper-white);
            padding: 50px;
            border-radius: 2px;
            box-shadow: 
                0 10px 30px var(--shadow-medium),
                0 0 0 1px var(--paper-brown),
                0 0 0 2px var(--paper-tan);
            max-width: 800px;
            margin: 0 auto;
            transform: rotate(-1deg);
            position: relative;
        }

        .cta-notebook::before {
            content: '';
            position: absolute;
            left: 40px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, 
                transparent 0%, 
                var(--accent-gold) 10%, 
                transparent 20%,
                transparent 80%,
                var(--accent-gold) 90%,
                transparent 100%);
        }

        .cta-notebook h2 {
            font-family: var(--font-serif);
            font-size: 2.5rem;
            color: var(--ink-dark);
            margin-bottom: 20px;
        }

        .cta-notebook p {
            color: var(--ink-brown);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 35px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .cta-btn.primary {
            background: var(--accent-rust);
            color: white;
        }

        .cta-btn.secondary {
            background: transparent;
            color: var(--accent-rust);
            border: 2px solid var(--accent-rust);
        }

        .cta-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px var(--shadow-medium);
        }

        .cta-btn.primary:hover {
            background: var(--ink-dark);
        }

        .cta-btn.secondary:hover {
            background: var(--accent-rust);
            color: white;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 992px) {
            .page-title {
                font-size: 3.5rem;
            }
            
            .story-container,
            .mv-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .story-journal,
            .story-sketch {
                transform: none;
            }
            
            .section-title {
                font-size: 2.3rem;
            }
            
            .handwritten-accent {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .page-title {
                font-size: 2.8rem;
            }
            
            .section {
                padding: 60px 20px;
            }
            
            .cta-notebook {
                padding: 30px 20px;
            }
            
            .cta-notebook h2 {
                font-size: 2rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-btn {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .page-title {
                font-size: 2.3rem;
            }
            
            .page-subtitle {
                font-size: 1.1rem;
                padding: 15px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .story-journal,
            .expertise-container {
                padding: 25px 20px;
            }
            
            .sketch-placeholder {
                height: 300px;
            }
            
            .sketch-placeholder::after {
                font-size: 4rem;
            }
        }

        /* ===== ANIMATIONS ===== */
        .story-journal,
        .story-sketch,
        .mv-card,
        .value-card,
        .expertise-item,
        .story-card,
        .cta-notebook {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .animate {
            opacity: 1;
            transform: translateY(0);
        }

        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }
        .delay-4 { transition-delay: 0.4s; }
    /* ===== ABOUT PAGE STYLES ===== */
.about-header {
    padding: 140px 20px 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.about-header .container {
    position: relative;
    z-index: 2;
}

.page-breadcrumb {
    margin-bottom: 30px;
    font-family: var(--font-sans);
    color: var(--accent-rust);
    font-size: 0.95rem;
}

.page-breadcrumb a {
    color: var(--accent-rust);
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-breadcrumb a:hover {
    color: var(--accent-teal);
    text-decoration: underline;
}

.page-title {
    font-family: var(--font-handwriting);
    font-size: 4.5rem;
    color: var(--accent-rust);
    margin-bottom: 20px;
}

.page-subtitle {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--ink-brown);
    font-style: italic;
    max-width: 600px;
    margin: 30px auto 0;
}

.decoration {
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    color: var(--accent-gold);
}

.decoration.pencil {
    top: 30%;
    left: 10%;
    transform: rotate(-15deg);
}

.decoration.brush {
    bottom: 20%;
    right: 10%;
    transform: rotate(15deg);
}

/* Story Grid */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.studio-photo {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 2px;
    filter: sepia(0.3) contrast(1.1);
}

/* Mission Vision Cards */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: var(--paper-white);
    padding: 40px 30px;
    border-radius: 2px;
    border: 1px solid var(--paper-brown);
    box-shadow: 0 5px 15px var(--shadow-light);
    position: relative;
}

.mission-card {
    border-left: 5px solid var(--accent-rust);
}

.vision-card {
    border-left: 5px solid var(--accent-teal);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Expertise Container */
.expertise-container {
    background: var(--paper-tan);
    padding: 40px;
    border-radius: 2px;
    margin-top: 40px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.expertise-item {
    text-align: center;
    padding: 25px 20px;
    background: var(--paper-white);
    border-radius: 2px;
    border: 1px solid var(--paper-brown);
}

.expertise-icon {
    width: 60px;
    height: 60px;
    background: var(--paper-tan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--accent-rust);
}

/* Responsive */
@media (max-width: 992px) {
    .story-grid,
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .page-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.8rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}/* ===== CLEAN CONTACT PAGE STYLES ===== */

/* Contact Hero */
.contact-hero {
    padding: 140px 20px 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05) 0%, transparent 50%);
}

.contact-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero .breadcrumb {
    margin-bottom: 20px;
    color: var(--accent-rust);
    font-size: 0.9rem;
}

.contact-hero .breadcrumb a {
    color: var(--accent-rust);
    text-decoration: none;
}

.contact-hero .breadcrumb a:hover {
    text-decoration: underline;
}

.contact-hero h1 {
    font-family: var(--font-handwriting);
    font-size: 3.5rem;
    color: var(--accent-rust);
    margin-bottom: 15px;
}

.contact-hero .subtitle {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--ink-brown);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Main */
.contact-main {
    padding: 80px 20px;
    background: var(--paper-white);
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Section Header */
.section-header {
    margin-bottom: 40px;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--ink-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-header h2 i {
    color: var(--accent-gold);
}

.section-header p {
    color: var(--ink-brown);
    font-size: 1rem;
}

/* Contact Form */
.contact-form-section {
    background: var(--paper-cream);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--paper-brown);
    box-shadow: 0 5px 20px var(--shadow-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--ink-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--accent-gold);
}
.form-status {
    margin-top: 20px;
    font-size: 16px;
}

.form-status .success {
    background: #d4f7d4;
    color: #2a7f2a;
    padding: 12px 18px;
    border-left: 4px solid #2a7f2a;
    border-radius: 6px;
}

.form-status .error {
    background: #ffd6d6;
    color: #a30000;
    padding: 12px 18px;
    border-left: 4px solid #a30000;
    border-radius: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--paper-brown);
    border-radius: 4px;
    background: var(--paper-white);
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--ink-dark);
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-rust);
    box-shadow: 0 0 0 3px rgba(212, 167, 106, 0.1);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: var(--accent-rust);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 4px;
    font-family: var(--font-serif);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background: var(--ink-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-medium);
}

.form-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(212, 167, 106, 0.1);
    border-radius: 4px;
    color: var(--ink-brown);
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-note i {
    color: var(--accent-teal);
    margin-top: 2px;
}

/* Contact Info */
.contact-info-section {
    background: var(--paper-cream);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--paper-brown);
    box-shadow: 0 5px 20px var(--shadow-light);
}

.contact-cards {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--paper-white);
    border-radius: 6px;
    border: 1px solid var(--paper-brown);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--accent-gold);
    transform: translateX(5px);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--paper-tan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-rust);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.card-content h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--ink-dark);
    margin-bottom: 5px;
}

.card-content a {
    color: var(--accent-rust);
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.card-content a:hover {
    text-decoration: underline;
}

.card-content p {
    color: var(--ink-brown);
    font-size: 0.9rem;
    margin: 0;
}

/* Social Section */
.social-section {
    padding-top: 20px;
    border-top: 1px solid var(--paper-brown);
}

.social-section h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--ink-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-section h3 i {
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--paper-tan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-brown);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--accent-rust);
    color: white;
    transform: translateY(-3px);
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: var(--paper-tan);
}

.faq-section .section-header.center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--paper-white);
    border-radius: 8px;
    border: 1px solid var(--paper-brown);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 3px 10px var(--shadow-light);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--paper-white);
}

.faq-question h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--ink-dark);
    margin: 0;
}

.faq-question i {
    color: var(--accent-rust);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--paper-cream);
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    color: var(--ink-brown);
    line-height: 1.6;
    border-top: 1px solid var(--paper-brown);
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, rgba(212, 200, 121, 0.1) 100%);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--ink-dark);
    margin-bottom: 15px;
}

.cta-content p {
    color: var(--ink-brown);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--accent-rust);
    color: white;
    border: none;
}

.btn-secondary {
    background: transparent;
    color: var(--accent-rust);
    border: 2px solid var(--accent-rust);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow-medium);
}

.btn-primary:hover {
    background: var(--ink-dark);
}

.btn-secondary:hover {
    background: var(--accent-rust);
    color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 20px 60px;
    }
    
    .contact-hero h1 {
        font-size: 2.3rem;
    }
    
    .contact-main,
    .faq-section,
    .cta-section {
        padding: 60px 20px;
    }
    
    .contact-form-section,
    .contact-info-section {
        padding: 30px;
    }
    
    .section-header h2 {
        font-size: 1.7rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-form-section,
    .contact-info-section {
        padding: 25px 20px;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
    }
    
    .card-icon {
        margin: 0 auto;
    }
}
/* Success Message Styles */
.success-message {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 2px solid #4CAF50;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.15);
    animation: slideIn 0.5s ease-out;
}

.success-content {
    display: flex;
    align-items: flex-start;
    position: relative;
}

.success-icon {
    font-size: 3rem;
    color: #4CAF50;
    margin-right: 20px;
    flex-shrink: 0;
    animation: bounceIn 0.6s ease-out;
}

.success-text h3 {
    color: #2E7D32;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.success-text p {
    color: #388E3C;
    margin-bottom: 8px;
    line-height: 1.6;
}

.close-success {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    color: #4CAF50;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 50%;
}

.close-success:hover {
    background: rgba(76, 175, 80, 0.1);
    transform: rotate(90deg);
}

/* Form submission loading state */
.submit-btn.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

.submit-btn.loading i {
    display: none;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}