/* Compiled on 2026-07-06T11:01:55.214Z */

/* --- File: 01-variables.css --- */
/* --- GLOBAL & AMBIENT BACKGROUND --- */
@property --border-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}
html {
    scroll-behavior: smooth;
}
:root {
    --text-primary: #F2EFE9;
    --accent-color: #8C8472;
    --card-bg: rgba(255, 255, 255, 0.05);
    --nav-bg: rgba(58, 53, 50, 0.9);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background-color: #2e2d2d;
    color: var(--text-primary);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}
body.modal-open {
    overflow: hidden;
}
h1, h2, h3, h4 { font-weight: 300; letter-spacing: 12px; text-transform: uppercase; transition: color 0.5s ease; }
h1 { font-size: clamp(3rem, 10vw, 6rem); line-height: 1; }
h2 { font-size: clamp(2rem, 6vw, 4rem); }
.serif { font-family: 'Playfair Display', serif; text-transform: none; letter-spacing: normal; }
a { color: var(--text-primary); text-decoration: none; }

/* Elegant Geometric Background Elements */
.bg-lines {
    position: fixed; inset: 0; z-index: -1; pointer-events: none;
    background-image: 
        linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
}
.floating-shape {
    position: fixed; border: 1px solid rgba(140, 132, 114, 0.15); z-index: -1;
    pointer-events: none; animation: slowRotate 40s infinite linear;
}
.shape-1 { width: 40vw; height: 40vw; top: -10%; left: -10%; border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
.shape-2 { width: 30vw; height: 30vw; bottom: 10%; right: 5%; border-radius: 50%; }
@keyframes slowRotate {
    from { transform: rotate(0deg) translate(0, 0); }
    50% { transform: rotate(180deg) translate(2vw, 2vh); }
    to { transform: rotate(360deg) translate(0, 0); }
}

/* --- SCROLL ANIMATIONS --- */
.reveal { opacity: 0; transform: translateY(50px); transition: all 1s cubic-bezier(0.25, 1, 0.5, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Staggered Hero Animation */
.hero-content h1 {
    opacity: 0;
    transform: translateY(40px);
    animation: heroStagger 1s cubic-bezier(0.25, 1, 0.5, 1) 0.3s forwards;
}
.hero-content p {
    opacity: 0;
    transform: translateY(30px);
    animation: heroStagger 1s cubic-bezier(0.25, 1, 0.5, 1) 0.7s forwards;
}
@keyframes heroStagger {
    to { opacity: 1; transform: translateY(0); }
}


/* --- File: 02-navigation.css --- */
/* --- NAVIGATION --- */
nav {
    position: fixed; top: 0; width: 100%; display: flex; justify-content: space-between;
    align-items: center; padding: 1.5rem 5%; z-index: 100; transition: all 0.3s;
}
nav.scrolled { background: var(--nav-bg); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.1); }
.logo { position: relative; display: flex; align-items: center; }
.logo img { height: 60px; width: auto; filter: brightness(0) invert(1); transition: transform 0.3s ease; }
.logo:hover img { transform: scale(1.05); }
.nav-links { display: flex; gap: 2rem; font-size: 0.8rem; font-weight: 500; }
.nav-links a { position: relative; transition: color 0.3s; }
.nav-links a:hover { color: var(--accent-color); }
.btn-primary {
    border: 1px solid var(--text-primary); padding: 0.8rem 1.5rem; border-radius: 50px;
    text-transform: uppercase; font-size: 0.8rem; cursor: pointer; background: transparent;
    color: var(--text-primary); transition: all 0.3s; font-family: 'Montserrat';
}
.btn-primary:hover { background: var(--text-primary); color: #000; }
.btn-cta {
    background: var(--accent-color);
    color: #000;
    border: 1px solid var(--accent-color);
    font-weight: 700;
}
.btn-cta:hover { background: var(--text-primary); border-color: var(--text-primary); color: #000; }


/* --- File: 03-hero.css --- */
/* --- HERO SECTION --- */
.hero { height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
    background: url('../assets/Various/Landing.webp') center/cover;
    filter: brightness(0.45) saturate(1.1);
    animation: kenburns 30s infinite alternate linear;
}
@keyframes kenburns { 0% { transform: scale(1); } 100% { transform: scale(1.15); } }
.hero-content { text-align: center; z-index: 1; }
.hero h1 { 
    font-size: 4.5rem; 
    line-height: 1.1; 
    margin-bottom: 1.5rem; 
    position: relative;
    display: inline-block;
}
.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    transform: translateX(-50%);
    transition: width 1.5s cubic-bezier(0.25, 1, 0.5, 1) 1s;
}
.hero h1.active::after {
    width: 80%;
}
.hero-content .reveal {
    transition-delay: 1.2s;
}
.reveal-underline {
    position: relative;
    display: inline-block;
}
.reveal-underline::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    transform: translateX(-50%);
    transition: width 1.5s cubic-bezier(0.25, 1, 0.5, 1) 1s;
}
.reveal-underline.active::after {
    width: 80%;
}
.hero p { 
    font-size: 1.3rem; 
    letter-spacing: 5px; 
    font-weight: 400; 
    background: rgba(0,0,0,0.3);
    padding: 0.5rem 2rem;
    backdrop-filter: blur(5px);
    border-left: 2px solid var(--accent-color);
    display: inline-block;
    margin-top: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    transition: all 0.8s ease;
}
.hero:hover p {
    background: rgba(140, 132, 114, 0.2);
    letter-spacing: 7px;
}


/* --- File: 04-sections.css --- */
/* --- LAYOUT UTILS --- */
section { padding: 8rem 10%; position: relative; scroll-margin-top: 50px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

/* --- STUDIO & WORKFLOW --- */
#workflow {
    min-height: calc(100vh - 100px);
}
.mask-arch { border-top-left-radius: 500px; border-top-right-radius: 500px; overflow: hidden; aspect-ratio: 3/4; border: 1px solid rgba(255,255,255,0.1);}
.mask-quarter { border-top-left-radius: 100%; overflow: hidden; aspect-ratio: 1; width: 80%; margin-left: auto; border: 1px solid rgba(255,255,255,0.1);}
.img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.img-wrapper:hover img { transform: scale(1.05); }
.text-content h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.text-content .serif { font-size: 1.5rem; margin-bottom: 2rem; opacity: 0.9; line-height: 1.4;}
.text-content p { margin-bottom: 1.5rem; opacity: 0.8; font-weight: 300; }

/* Badges */
.badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; text-align: center; }
.badge-circle { width: 70px; height: 70px; border: 2px solid var(--accent-color); border-radius: 50%; margin: 0 auto 1rem; display: flex; justify-content: center; align-items: center; font-size: 1.8rem; background: rgba(0,0,0,0.25); transition: 0.3s; color: var(--accent-color); }
.badge-circle:hover { background: var(--accent-color); color: #000; transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.3); }
.badge-text { font-size: 0.7rem; font-weight: 600; }


/* --- File: 05-highlights.css --- */
/* --- HIGHLIGHTS (STICKY SCROLL JACKING) --- */
.highlights-wrapper { height: 250vh; position: relative; scroll-margin-top: 100px; }
.highlights-sticky {
    position: sticky; top: 100px; height: calc(100vh - 100px); width: 100%; display: flex; flex-direction: column;
    align-items: center; justify-content: center; overflow: hidden;
}
.highlights-sticky h2 { margin-bottom: 2rem; z-index: 10; text-shadow: 0 4px 10px rgba(0,0,0,0.5); }
.hl-container { position: relative; width: 80%; height: 70vh; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.5); background: #000; }
.hl-img {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
    opacity: 0; transform: translateY(40px); filter: blur(20px);
    transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.7s cubic-bezier(0.25, 1, 0.5, 1),
                filter 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}
.hl-img.revealed {
    opacity: 1; transform: translateY(0); filter: blur(0);
}
.hl-label {
    position: absolute; bottom: 30px; left: 30px; background: rgba(0,0,0,0.7);
    padding: 1rem 2rem; border-radius: 10px; backdrop-filter: blur(10px); z-index: 20;
    opacity: 0; transform: translateY(15px);
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.15s,
                transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.15s;
}
.hl-label.revealed {
    opacity: 1; transform: translateY(0);
}
.hl-label h3 { font-size: 1.2rem; margin: 0; }
.hl-label p { font-size: 0.9rem; color: var(--accent-color); margin: 0; }


/* --- File: 06-portfolio.css --- */
/* --- PORTFOLIO --- */
.portfolio-header { text-align: center; margin-bottom: 4rem; }
.portfolio-header p { opacity: 0.8; font-weight: 300; max-width: 600px; margin: 1rem auto; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.port-card {
    position: relative; aspect-ratio: 16/9; border-radius: 10px; overflow: hidden; cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
    transition: border-color 0.3s;
}
.port-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    padding: 2px;
    background: conic-gradient(transparent 0deg, var(--accent-color) 90deg, transparent 180deg, var(--accent-color) 270deg, transparent 360deg);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 5;
}
.port-card:hover::before {
    opacity: 1;
    animation: rotateBorderOnce 1.5s linear forwards;
}
@keyframes rotateBorderOnce {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.port-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.port-card .overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.75); display: flex; flex-direction: column; justify-content: center; align-items: center; opacity: 0; transition: 0.4s; z-index: 2; }
.port-card .overlay i { font-size: 2.5rem; color: var(--accent-color); margin-bottom: 1rem; }
.port-card:hover img { transform: scale(1.1); }
.port-card:hover .overlay { opacity: 1; }
.port-card:hover { border-color: var(--accent-color); }

/* --- ADVANCED PORTFOLIO MODAL - NON-FULLSCREEN --- */
.modal-overlay {
    position: fixed; inset: 0; z-index: 999;
    display: none;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.modal-overlay.open { display: block; }
.modal-wrapper {
    position: fixed; inset: 0; z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.modal-wrapper.open { opacity: 1; pointer-events: all; }
.modal {
    background: rgba(20, 18, 16, 0.98);
    border-radius: 20px;
    width: 92vw;
    max-width: 1500px;
    height: 80vh;
    display: flex;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.06);
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
}
.modal-wrapper.open .modal {
    transform: scale(1) translateY(0);
}
.modal-left { 
    flex: 2; overflow-x: auto; overflow-y: hidden; padding: 2rem;
    display: flex; align-items: center; gap: 3rem;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    user-select: none;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE and Edge */
    transition: opacity 0.4s ease;
}
.modal-left::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}
.modal-left:active { cursor: grabbing; }

/* --- DRAG TO SCROLL TOAST --- */
.drag-toast {
    position: absolute;
    bottom: 15px;
    left: 40%; /* Centers perfectly horizontally within the modal-left area (flex: 2 / 3 of modal width) */
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: none;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.modal-wrapper.open .drag-toast {
    opacity: 1;
    visibility: visible;
}

.drag-toast i {
    font-size: 0.9rem;
    color: var(--accent-color);
}

.drag-toast span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    white-space: nowrap;
}

.modal-img-wrapper {
    flex-shrink: 0;
    height: 60vh;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    will-change: transform, filter, opacity;
}
.modal-img-wrapper img {
    height: 100%;
    width: auto;
    display: block;
    border-radius: 0;
    object-fit: contain;
}
.modal-right { 
    flex: 0 0 320px; padding: 3rem 2.5rem; display: flex; flex-direction: column; justify-content: center;
    border-left: 1px solid rgba(255,255,255,0.08); position: relative;
    background: rgba(0,0,0,0.2);
}
.modal-content-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}
.modal-header {
    flex-shrink: 0;
    margin-bottom: 1.5rem;
}
#modal-description {
    flex: 1;
    overflow-y: auto;
    padding-right: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) rgba(255,255,255,0.05);
}
#modal-description::-webkit-scrollbar {
    width: 6px;
}
#modal-description::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 3px;
}
#modal-description::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 3px;
}
.close-btn {
    position: absolute; top: 1.2rem; right: 1.2rem; width: 40px; height: 40px; border-radius: 50%;
    font-size: 1.5rem; cursor: pointer; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
    color: white; transition: all 0.3s; display: flex; align-items: center; justify-content: center;
}
.close-btn:hover { background: var(--accent-color); color: #000; transform: rotate(90deg); }


/* --- File: 07-pricing.css --- */
/* --- PRICING --- */
.pricing { text-align: center; }
.pricing-intro { max-width: 900px; margin: 0 auto 3rem; font-weight: 300; opacity: 0.8; font-size: 1.1rem; line-height: 1.8; }
.pricing-intro a { color: var(--accent-color); text-decoration: underline; transition: opacity 0.3s; }
.pricing-intro a:hover { opacity: 0.7; }
.toggle-container { display: flex; justify-content: center; gap: 1rem; margin-bottom: 2rem; }
.toggle-btn { padding: 1rem 2.5rem; background: transparent; border: 1px solid var(--accent-color); color: var(--text-primary); border-radius: 50px; cursor: pointer; transition: 0.3s; font-family: 'Montserrat'; font-weight: 600; letter-spacing: 1px;}
.toggle-btn i { margin-right: 8px; }
.toggle-btn.active { background: var(--accent-color); color: #000; }
.discount-highlight {
    color: #f0d060;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(240, 208, 96, 0.3);
}
.pro-tip { background: rgba(140, 132, 114, 0.15); border-left: 4px solid var(--accent-color); padding: 1.5rem; text-align: left; max-width: 1000px; margin: 0 auto 3rem; font-size: 0.95rem; border-radius: 0 10px 10px 0; }

.pricing-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 1000px; margin: 0 auto; }
.price-card { background: var(--card-bg); padding: 3rem; border-radius: 15px; text-align: left; position: relative; border: 1px solid rgba(255,255,255,0.05); transition: border-color 0.3s; }
.badge-discount { position: absolute; top: 25px; right: -35px; background: var(--accent-color); color: #000; padding: 5px 40px; transform: rotate(45deg); font-size: 0.8rem; font-weight: bold; letter-spacing: 1px;}
.price-card h3 { font-size: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 1rem; margin-bottom: 1rem; color: #fff; text-shadow: 0 0 10px rgba(140, 132, 114, 0.5);}
.price-val { font-size: 3.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.price-val span { font-size: 1.2rem; font-weight: 400; opacity: 0.7; }
.price-card ul { list-style: none; opacity: 0.9; font-weight: 300; }
.price-card li { margin-bottom: 1rem; display: flex; gap: 10px; line-height: 1.4; }
.price-card li::before { content: '✓'; color: var(--accent-color); font-weight: bold;}
.price-card li { color: #fff; font-weight: 400; }

/* Shared timeline card */
.timeline-shared {
    background: var(--card-bg);
    border-radius: 15px;
    border-top: 4px solid var(--accent-color);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    border-left: 1px solid rgba(255,255,255,0.05);
    border-right: 1px solid rgba(255,255,255,0.05);
    padding: 2rem;
    max-width: 1000px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    text-align: left;
}
.timeline-item h4 { margin-bottom: 1rem; font-size: 1.2rem; color: #fff; text-shadow: 0 0 10px rgba(140, 132, 114, 0.3); }
.timeline-item:first-child { border-right: 1px solid rgba(255,255,255,0.05); padding-right: 2rem; }
.timeline-item p { opacity: 0.9; font-weight: 400; color: #fff; }


/* --- File: 08-testimonials.css --- */
/* --- TESTIMONIALS (STICKY HORIZONTAL SCROLL) --- */
.testimonials-wrapper { height: 250vh; position: relative; scroll-margin-top: 100px; }
.testimonials-sticky {
    position: sticky; top: 100px; height: calc(100vh - 100px); width: 100%; display: flex; flex-direction: column;
    align-items: center; justify-content: center; overflow: hidden;
}
.testimonials { overflow: hidden; padding-bottom: 3rem; cursor: grab; }
.testimonials:active { cursor: grabbing; }
.test-header { text-align: center; margin-bottom: 3rem; }
.test-track { display: flex; gap: 2rem; padding: 0 15%; width: max-content; transition: transform 0.1s ease-out; }
.quote-card { width: 450px; background: var(--card-bg); padding: 3rem; border-radius: 15px; border: 1px solid rgba(255,255,255,0.05); user-select: none; display: flex; flex-direction: column; justify-content: space-between; position: relative; }
.quote-card i.fa-quote-left { font-size: 2rem; color: var(--accent-color); opacity: 0.3; margin-bottom: 1rem; }
.quote-card p { font-size: 1.2rem; margin-bottom: 2rem; font-style: italic; pointer-events: none; line-height: 1.8; }
.quote-card span { font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; color: var(--accent-color); text-transform: uppercase; pointer-events: none; }

/* --- GLOW CARD (Animated Border Gradient) --- */
.glow-card {
    --border-angle: 0deg;
    position: relative;
}
.glow-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: conic-gradient(
        from var(--border-angle),
        transparent 0%,
        transparent 60%,
        rgba(140, 132, 114, 0.6) 72%,
        rgba(255, 255, 255, 0.35) 82%,
        rgba(140, 132, 114, 0.8) 92%,
        rgba(255, 255, 255, 0.2) 97%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}
.glow-card:hover::before {
    opacity: 1;
    animation: glowRotate 3s linear infinite;
}
.glow-card:hover {
    box-shadow: 0 0 20px rgba(140, 132, 114, 0.12), 0 0 40px rgba(140, 132, 114, 0.05);
}
@keyframes glowRotate {
    to { --border-angle: 360deg; }
}


/* --- File: 09-contact-footer.css --- */
/* --- CONTACT FORM --- */
.contact { background-color: rgba(0,0,0,0.2); text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }
.contact p { opacity: 0.8; font-weight: 300; margin-bottom: 3rem; }
form { max-width: 750px; margin: 0 auto; text-align: left; }
.form-row { display: flex; gap: 2rem; margin-bottom: 1.5rem; }
.input-group { flex: 1; display: flex; flex-direction: column; }
label { font-size: 0.85rem; margin-bottom: 0.6rem; letter-spacing: 1px; font-weight: 500; color: var(--accent-color); }
input, textarea { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); padding: 1.2rem; color: white; border-radius: 8px; font-family: 'Montserrat'; width: 100%; transition: all 0.3s; }
input:focus, textarea:focus { outline: none; border-color: var(--accent-color); background: rgba(255,255,255,0.08); }
.subtext { font-size: 0.75rem; opacity: 0.5; margin-top: 0.5rem; font-weight: 300; }
.submit-btn { width: 100%; background: var(--text-primary); color: #000; padding: 1.2rem; border: none; font-weight: 700; font-size: 1rem; letter-spacing: 2px; cursor: pointer; border-radius: 8px; margin-top: 1.5rem; transition: 0.3s; }
.submit-btn:hover { background: var(--accent-color); color: white; }
.submit-btn i { margin-right: 8px; }
.success-message { text-align: center; color: var(--accent-color); display: none; padding: 4rem; border: 1px solid var(--accent-color); border-radius: 8px; background: rgba(140, 132, 114, 0.1); }

/* --- FOOTER --- */
footer { padding: 5rem 10% 2rem; border-top: 1px solid rgba(255,255,255,0.05); display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3rem; font-size: 0.9rem; background-color: #222; }
.footer-col h4 { margin-bottom: 1.5rem; color: #fff; font-size: 1.1rem; border-bottom: 1px solid var(--accent-color); display: inline-block; padding-bottom: 5px; }
.footer-col p { opacity: 0.7; margin-bottom: 0.8rem; font-weight: 300; }
.copyright { grid-column: span 3; text-align: center; margin-top: 4rem; opacity: 0.4; font-size: 0.8rem; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem; font-weight: 300; }
.social-link { cursor: pointer; }


