/* 
    Silver Pine Studio - Premium Design System
    Colors:
    - Deep Pine Green: #1A3C34
    - Warm White: #F9F7F2
    - Soft Beige: #E5DED1
    - Charcoal Accents: #2C2C2C
    - Gold/Accent: #C5A059
*/

:root {
    --pine-green: #1A3C34;
    --pine-green-dark: #122a24;
    --warm-white: #F9F7F2;
    --soft-beige: #E5DED1;
    --charcoal: #2C2C2C;
    --gold: #C5A059;
    --text-color: #333333;
    --text-light: #666666;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --container-width: 1200px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--warm-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: 'Cormorant+Garamond', serif;
    font-weight: 600;
    color: var(--pine-green);
}

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

ul {
    list-style: none;
}

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

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

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--soft-beige);
}

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

/* Typography */
.section-subtitle {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 600;
}

.section-title {
    font-size: 42px;
    margin-bottom: 30px;
    position: relative;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--pine-green);
    color: white;
}

.btn-primary:hover {
    background-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--pine-green);
}

.btn-nav {
    padding: 10px 20px;
    font-size: 12px;
    background-color: var(--gold);
    color: white;
}

.btn-block {
    width: 100%;
}

.btn-text {
    font-weight: 600;
    color: var(--pine-green);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-text i {
    transition: var(--transition);
}

.btn-text:hover i {
    transform: translateX(5px);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background-color: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 10px 0;
}

.navbar {
    padding: 25px 0;
    transition: var(--transition);
}

header.scrolled .navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    color: white;
}

header.scrolled .logo {
    color: var(--pine-green);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

header.scrolled .nav-links a {
    color: var(--charcoal);
}

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

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: white;
    margin: 5px 0;
    transition: var(--transition);
}

header.scrolled .hamburger span {
    background-color: var(--pine-green);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease-out;
}

.hero:hover .hero-bg {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 60, 52, 0.8), rgba(26, 60, 52, 0.4));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero h1 {
    font-size: 64px;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.trust-badges {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.badge i {
    color: var(--gold);
}

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

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    box-shadow: 30px 30px 0 var(--soft-beige);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

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

.stat-card {
    background-color: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--pine-green);
    font-family: 'Cormorant+Garamond', serif;
}

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

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

.service-card {
    background-color: white;
    padding: 50px 40px;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

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

.service-icon {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

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

/* Why Choose Us */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.benefits-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.benefits-list i {
    color: var(--gold);
}

.split-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 350px;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 60, 52, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay span {
    color: white;
    font-family: 'Cormorant+Garamond', serif;
    font-size: 24px;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 5px;
}

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

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

/* Process Section */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    font-family: 'Cormorant+Garamond', serif;
    font-size: 60px;
    color: var(--soft-beige);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

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

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

.info-items {
    margin: 40px 0;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    width: 50px;
    height: 50px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

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

.map-container {
    border: 10px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Form Styles */
.premium-form {
    background-color: white;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

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

.form-group label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--pine-green);
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eeeeee;
    background-color: #fcfcfc;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background-color: white;
}

.success-message {
    background-color: white;
    padding: 50px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.success-message i {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background-color: var(--pine-green);
    color: white;
    padding: 80px 0 30px;
}

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

.footer .logo {
    color: white;
    margin-bottom: 20px;
    display: inline-block;
}

.footer h4 {
    color: var(--gold);
    margin-bottom: 25px;
    font-size: 20px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

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

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    font-size: 14px;
    opacity: 0.8;
}

.footer-contact i {
    color: var(--gold);
}

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

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 { font-size: 48px; }
    .about-grid, .split-layout, .contact-grid { gap: 40px; }
    .process-timeline { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: block; }
    
    .about-grid, .split-layout, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image { order: 2; }
    .about-text { order: 1; }
    
    .section-title { font-size: 32px; }
    .hero h1 { font-size: 36px; }
    
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    
    .footer-grid { grid-template-columns: 1fr; }
    
    /* Mobile Menu Active */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 40px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .nav-links.active a {
        color: var(--pine-green);
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .process-timeline { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
    .premium-form { padding: 30px 20px; }
}
