/* ===================================
   ROOT VARIABLES & RESET
   =================================== */
:root {
    /* Colors - Luxury Earth Tones */
    --primary-color: #8b6f47;
    --primary-dark: #6b5235;
    --primary-light: #d4af7a;
    --secondary-color: #2d2d2d;
    --accent-gold: #c9a66b;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e8e5e0;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px 0;
    --card-radius: 8px;
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ===================================
   UTILITIES
   =================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.placeholder-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-dark);
}

.logo-subtitle {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--text-light);
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* ===================================
   BUTTONS
   =================================== */
.btn-primary,
.btn-secondary,
.btn-large {
    display: inline-block;
    padding: 15px 40px;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-white);
    border: 2px solid var(--primary-color);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    transition: var(--transition);
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: var(--text-white);
}

.btn-large {
    padding: 20px 50px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* ===================================
   HERO SLIDER
   =================================== */
.hero-slider {
    height: calc(100vh - 80px);
    min-height: 600px;
    position: relative;
    margin-top: 80px;
    overflow: hidden;
}

.slider-container {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.slide-content {
    text-align: center;
    color: var(--text-white);
    padding: 40px 20px;
    max-width: 1000px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.slide-title {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.slide-description {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

.slider-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 10;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--text-white);
    border-radius: 50%;
    color: var(--text-white);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--text-white);
    color: var(--text-dark);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border: 2px solid var(--text-white);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--text-white);
}

/* ===================================
   SECTIONS
   =================================== */
.pad {
    padding: var(--section-padding);
}

.section-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ===================================
   PAGE HEADER
   =================================== */
.page-header {
    text-align: center;
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    margin-top: 80px;
}

.page-title {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-light);
}

/* ===================================
   ABOUT PREVIEW
   =================================== */
.about-preview {
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image .image-frame {
    position: relative;
    padding: 20px;
    background: var(--bg-white);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.about-image .placeholder-image {
    height: 500px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.feature-item h4 {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 5px;
}

.feature-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* ===================================
   SERVICES
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background: var(--bg-white);
    padding: 50px 35px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    color: var(--primary-color);
}

.service-title {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

.services-cta {
    text-align: center;
    margin-top: 60px;
}

/* ===================================
   PORTFOLIO
   =================================== */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    transition: var(--transition);
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(139, 111, 71, 0.95);
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    opacity: 0;
    transition: var(--transition);
}

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

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

.portfolio-overlay h3 {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 10px;
}

.portfolio-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

.portfolio-cta {
    text-align: center;
    margin-top: 60px;
}

/* ===================================
   STATS
   =================================== */
.stats-section {
    background: var(--secondary-color);
    color: var(--text-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent-gold);
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.stat-suffix {
    font-size: 48px;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--accent-gold);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--text-white);
    text-align: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 80px 0 30px;
}

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

.footer-title {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-description {
    color: rgba(255,255,255,0.8);
    margin-bottom: 25px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 20px;
}

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact li {
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact a {
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* ===================================
   ABOUT PAGE
   =================================== */
.about-story {
    padding: 80px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-image .image-frame.large .placeholder-image {
    height: 600px;
}

.story-text {
    margin-bottom: 25px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

.story-highlights {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.highlight-item {
    text-align: center;
}

.highlight-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.highlight-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.mission-section {
    background: var(--bg-light);
    text-align: center;
}

.mission-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.mission-title {
    font-family: var(--font-display);
    font-size: 48px;
    margin-bottom: 25px;
}

.mission-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.mission-pillars {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.pillar h4 {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 10px;
}

.pillar p {
    color: var(--text-light);
    font-size: 14px;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 300px;
    height: 300px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary-light);
}

.member-name {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 5px;
}

.member-role {
    color: var(--primary-color);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.member-bio {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto;
}

.skills-section {
    background: var(--bg-light);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.skill-category {
    background: var(--bg-white);
    padding: 40px 30px;
    border: 1px solid var(--border-color);
}

.category-title {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.skill-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skill-list li {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.skill-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 16px;
}

.skill-desc {
    color: var(--text-light);
    font-size: 13px;
}

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

.value-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--bg-light);
    border: 1px solid transparent;
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* ===================================
   SERVICES PAGE
   =================================== */
.services-detail {
    padding: 80px 0;
}

.service-detail-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.service-detail-item.reverse {
    direction: rtl;
}

.service-detail-item.reverse > * {
    direction: ltr;
}

.service-number {
    font-family: var(--font-display);
    font-size: 120px;
    font-weight: 700;
    color: var(--primary-light);
    opacity: 0.3;
    line-height: 1;
}

.service-detail-title {
    font-family: var(--font-display);
    font-size: 48px;
    margin-bottom: 25px;
}

.service-detail-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    padding-left: 25px;
    position: relative;
    color: var(--text-dark);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-detail-image .placeholder-image {
    height: 500px;
}

.design-process {
    background: var(--bg-light);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border-color);
}

.process-step:last-child {
    border-bottom: none;
}

.step-number {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.step-title {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 15px;
}

.step-description {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
}

.projects-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.project-showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.project-showcase-item.reverse {
    direction: rtl;
}

.project-showcase-item.reverse > * {
    direction: ltr;
}

.project-image .placeholder-image {
    height: 400px;
}

.project-name {
    font-family: var(--font-display);
    font-size: 36px;
    margin-bottom: 10px;
}

.project-tagline {
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.project-description {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

.why-choose {
    background: var(--bg-light);
}

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

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.why-item h3 {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 10px;
}

.why-item p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* ===================================
   PORTFOLIO PAGE
   =================================== */
.portfolio-gallery {
    padding: 80px 0;
}

.portfolio-project {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-bottom: 120px;
    padding-bottom: 120px;
    border-bottom: 1px solid var(--border-color);
}

.portfolio-project:last-child {
    border-bottom: none;
}

.portfolio-project.reverse {
    direction: rtl;
}

.portfolio-project.reverse > * {
    direction: ltr;
}

.main-project-image .placeholder-image {
    height: 500px;
}

.project-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.thumbnail .placeholder-image {
    height: 150px;
    cursor: pointer;
    transition: var(--transition);
}

.thumbnail:hover .placeholder-image {
    opacity: 0.7;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.project-number {
    font-family: var(--font-display);
    font-size: 96px;
    font-weight: 700;
    color: var(--primary-light);
    opacity: 0.3;
}

.project-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: right;
}

.project-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
}

.project-year {
    font-size: 14px;
    color: var(--text-light);
}

.project-title {
    font-family: var(--font-display);
    font-size: 42px;
    margin-bottom: 15px;
}

.project-quote {
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 18px;
}

.project-highlights {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.highlight {
    font-size: 14px;
}

.highlight strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.project-features-list h4 {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 15px;
}

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

.project-features-list li {
    padding-left: 20px;
    position: relative;
    color: var(--text-light);
}

.project-features-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.portfolio-additional {
    background: var(--bg-light);
}

.portfolio-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.masonry-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.masonry-item.tall {
    grid-row: span 2;
    aspect-ratio: auto;
}

.masonry-item.wide {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.masonry-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45, 45, 45, 0.85);
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    transition: var(--transition);
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

.masonry-overlay h3 {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 5px;
}

.masonry-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

.social-media-section {
    text-align: center;
}

.social-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 50px;
}

.social-stat {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icon {
    width: 80px;
    height: 80px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.stat-value {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
}

.social-cta p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
}

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

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
}

.form-title {
    font-family: var(--font-display);
    font-size: 36px;
    margin-bottom: 15px;
}

.form-description {
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.form-success {
    display: none;
    text-align: center;
    padding: 60px 30px;
    background: var(--bg-light);
    border: 2px solid var(--primary-color);
    margin-top: 40px;
}

.form-success.show {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 20px;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-info-card {
    background: var(--bg-light);
    padding: 40px;
    margin-bottom: 30px;
}

.contact-info-card h3 {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 25px;
}

.contact-info-card p {
    color: var(--text-light);
    margin-bottom: 25px;
}

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

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    font-size: 32px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-content h4 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 8px;
}

.info-content p,
.info-content a {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.info-content a:hover {
    color: var(--primary-color);
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link-large {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.social-link-large:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.social-link-large span:first-child {
    font-size: 24px;
}

.social-link-large strong {
    display: block;
    font-size: 16px;
    margin-bottom: 3px;
}

.social-link-large small {
    color: var(--text-light);
    font-size: 12px;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefits-list li {
    padding-left: 30px;
    position: relative;
    color: var(--text-dark);
}

.map-section {
    height: 500px;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-white);
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    text-align: center;
    z-index: 10;
    max-width: 400px;
}

.map-info h3 {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 15px;
}

.map-info p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.faq-section {
    background: var(--bg-light);
}

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

.faq-item {
    background: var(--bg-white);
    padding: 30px;
    border-left: 4px solid var(--primary-color);
}

.faq-question {
    font-family: var(--font-display);
    font-size: 22px;
    margin-bottom: 15px;
}

.faq-answer {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

[data-animate="fade-up"] {
    animation: fadeIn 0.8s ease-out forwards;
}

[data-animate="slide-left"] {
    animation: slideLeft 0.8s ease-out forwards;
}

[data-animate="slide-right"] {
    animation: slideRight 0.8s ease-out forwards;
}

[data-animate="zoom-in"] {
    animation: zoomIn 0.8s ease-out forwards;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .slide-title {
        font-size: 52px;
    }
    
    .slide-description {
        font-size: 17px;
    }
    
    .about-grid,
    .story-grid,
    .service-detail-item,
    .project-showcase-item,
    .portfolio-project {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .skills-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        min-height: 500px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-white);
        flex-direction: column;
        padding: 40px;
        transition: var(--transition);
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .slide-title {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .slide-description {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .slider-controls {
        bottom: 30px;
        gap: 20px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .page-title {
        font-size: 48px;
    }
    
    .services-grid,
    .portfolio-grid,
    .portfolio-masonry,
    .stats-grid,
    .why-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .masonry-item.tall,
    .masonry-item.wide {
        grid-row: auto;
        grid-column: auto;
        aspect-ratio: 1;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        min-height: 450px;
    }
    
    .slide-content {
        padding: 20px 15px;
    }
    
    .slide-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .slide-description {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .btn-primary {
        padding: 12px 30px;
        font-size: 12px;
    }
    
    .slider-controls {
        bottom: 20px;
        gap: 15px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .service-detail-title,
    .mission-title {
        font-size: 32px;
    }
    
    .story-highlights,
    .mission-pillars {
        flex-direction: column;
        gap: 25px;
    }
    
    .social-stats {
        flex-direction: column;
        gap: 40px;
    }
}
