/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
    /* Modernized Premium Color Scheme */
    --primary: #0a2e16; /* Dark Forest Green */
    --secondary: #164a27; /* Rich Green */
    --accent: #B87B2D; /* Logo Gold */
    --accent-hover: #9E6A24; /* Darker Logo Gold */
    --text-dark: #1a202c; 
    --text-muted: #4a5568;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--light-bg);
    /* Subtle mesh background gradient using the new gold */
    background-image: radial-gradient(at 0% 0%, rgba(184, 123, 45, 0.04) 0px, transparent 50%),
                      radial-gradient(at 100% 0%, rgba(10, 46, 22, 0.04) 0px, transparent 50%);
    background-attachment: fixed;
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
}

/* Smooth Fade-in Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

/* Modern Trust Badges */
.trust-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.trust-badge i {
    color: var(--accent);
    margin-right: 6px;
}

/* Glassmorphism Header */
header {
    background-color: rgba(10, 46, 22, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--white);
    padding: 1rem 0;
    display: flex;
    justify-content: center; 
    align-items: center;
    flex-direction: column; 
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.logo-container {
    text-align: center; 
    padding: 0.5rem 5%; 
    width: 100%; 
}

/* --- LOGO SIZE UPDATED HERE --- */
.logo-container img {
    max-height: 180px; /* Massively increased to make all text readable */
    width: auto; 
    display: block; 
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.logo-container img:hover {
    transform: scale(1.03);
}

nav { width: 100%; padding: 0.5rem 5%; }

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center; 
    flex-wrap: wrap; 
    width: 100%;
    gap: 1.5rem;
}

nav ul li { position: relative; margin: 0 0.5rem; }

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 0.2rem;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

/* Animated Nav Underline */
nav ul li a::after {
    content: '';
    position: absolute;
    width: 0; height: 2px;
    bottom: 0; left: 50%;
    background-color: var(--accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav ul li a:hover { color: var(--accent); }
nav ul li a:hover::after { width: 100%; }

/* Modern Dropdown */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 260px;
    box-shadow: 0px 20px 40px rgba(0,0,0,0.15);
    z-index: 10;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 5px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content a {
    color: var(--text-dark);
    padding: 16px 24px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid var(--light-bg);
    font-size: 0.95rem;
    text-transform: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.dropdown-content a::after { display: none; }

.dropdown-content a:hover {
    background-color: var(--light-bg);
    color: var(--primary);
    padding-left: 32px; 
}

/* Modern Pill Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    color: var(--white); 
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px; 
    font-weight: 800;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 15px rgba(184, 123, 45, 0.3);
    position: relative;
    overflow: hidden;
}

/* Button inner glow effect */
.btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.4), rgba(255,255,255,0));
    transform: skewX(-25deg);
    transition: all 0.5s ease;
}

.btn:hover::before { left: 150%; }

.btn:hover {
    background-color: var(--accent-hover); 
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 25px rgba(184, 123, 45, 0.5);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    box-shadow: none;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Hero Sections */
.hero {
    background-color: var(--secondary);
    background-image: linear-gradient(rgba(10, 46, 22, 0.88), rgba(10, 46, 22, 0.88)), url('Hero.png'); 
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 12rem 2rem 10rem 2rem;
    position: relative;
}

.hero h2 {
    font-size: 4.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    color: var(--white);
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2.5rem auto;
    color: #f1f5f9;
    font-weight: 400;
}

.hero-small {
    background-color: var(--primary);
    background-image: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    text-align: center;
    padding: 7rem 2rem;
    margin-bottom: 4rem;
    position: relative;
}

.hero-small h2 {
    font-size: 3.2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

/* Layout & Typography */
main {
    padding: 2rem 5% 6rem 5%;
    max-width: 1280px;
    margin: 0 auto;
}

section { padding: 5rem 0; }

.bg-white { background-color: var(--white); padding: 5rem 5%; border-radius: 24px; box-shadow: 0 20px 50px rgba(0,0,0,0.03); }
.bg-light { background-color: rgba(255,255,255,0.7); backdrop-filter: blur(10px); padding: 5rem 5%; border-radius: 24px; border: 1px solid rgba(255,255,255,0.8); box-shadow: 0 10px 40px rgba(0,0,0,0.02); }

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.8rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-top: 1.5rem;
    margin-bottom: 4rem;
    font-size: 1.15rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* Grids & Soft Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.span-full { grid-column: 1 / -1; }

.card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.04); 
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

/* Card subtle gradient hover border effect */
.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before { opacity: 1; }

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(10, 46, 22, 0.08);
}

.card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.card h3 i {
    color: var(--accent);
    font-size: 2rem;
    background: rgba(184, 123, 45, 0.1);
    padding: 15px;
    border-radius: 14px;
}

.service-link { text-decoration: none; color: inherit; display: block; }

/* Icon Lists */
.icon-list { list-style: none; margin: 1.5rem 0; }
.icon-list li { margin-bottom: 1.2rem; display: flex; align-items: flex-start; gap: 15px; font-size: 1.05rem; }
.icon-list li i { color: var(--primary); margin-top: 4px; font-size: 1.2rem; }

/* Process Steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: center;
}

.process-step {
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    transition: transform 0.4s ease;
    border: 1px solid var(--border-color);
}

.process-step:hover { transform: translateY(-8px); }

.process-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--accent);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 10px 25px rgba(10, 46, 22, 0.2);
    transition: transform 0.3s ease;
}

.process-step:hover .process-icon { transform: scale(1.1) rotate(5deg); }

/* Projects Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: start;
}

.gallery-grid img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    z-index: 2;
    position: relative;
}

/* Forms & Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.contact-info-panel {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 4rem;
}

.contact-info-panel h3 { color: var(--accent); margin-bottom: 1.5rem; font-size: 2rem; }
.contact-info-panel p { margin-bottom: 1.5rem; display: flex; align-items: center; gap: 15px; font-size: 1.1rem; }
.contact-info-panel a { color: var(--white); text-decoration: none; transition: color 0.3s ease; }
.contact-info-panel a:hover { color: var(--accent); }

form { padding: 4rem; }

.form-group { margin-bottom: 2rem; }
.form-group label { display: block; margin-bottom: 0.8rem; font-weight: 600; font-size: 0.95rem; color: var(--text-dark); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background-color: var(--light-bg);
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(10, 46, 22, 0.05);
}

form button[type="submit"] { margin-top: 1rem; width: 100%; padding: 1.2rem; font-size: 1.1rem; }

/* Footer */
footer {
    background-color: #041008; 
    color: var(--white);
    padding: 5rem 5% 2rem 5%;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    max-width: 1280px;
    margin: 0 auto 4rem auto;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 4rem;
}

.footer-col h4 { color: var(--accent); margin-bottom: 2rem; font-size: 1.3rem; letter-spacing: 1px; }
.footer-col p { color: #94a3b8; margin-bottom: 1.5rem; line-height: 1.8; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 1rem; }
.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}
.footer-col ul li a:hover { color: var(--accent); transform: translateX(5px); }
.footer-bottom { text-align: center; color: #64748b; font-size: 0.95rem; }
.agency-credit { margin-top: 0.8rem; }
.agency-credit a { color: var(--accent); text-decoration: none; font-weight: 600; }

/* Responsive */
@media (max-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .hero h2 { font-size: 3.2rem; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-wrapper form { border-right: none; }
}

@media (max-width: 768px) {
    header { padding: 1rem; }
    
    /* NEW: Scale logo down slightly on phones so it doesn't take up the whole screen */
    .logo-container img { max-height: 130px; }
    
    nav ul { gap: 0.5rem; }
    .hero h2 { font-size: 2.5rem; }
    .hero { padding: 8rem 1rem 6rem 1rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    form { padding: 2rem; }
    .contact-info-panel { padding: 2rem; }
}