/* Modern Color Palette & Typography */
:root {
    --primary-color: #2e7d32; /* Eco Green */
    --secondary-color: #1565c0; /* Trust Blue */
    --accent-color: #ffca28; /* Highlight */
    --text-color: #333333;
    --bg-color: #f4f7f6;
    --card-bg: #ffffff;
    --font-main: 'Poppins', sans-serif;
    --transition-speed: 0.3s;
}

html {
    scroll-behavior: smooth;
}

* { box-sizing: border-box; }

body {
    font-family: var(--font-main);
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Header & Navigation */
header {
    background: white;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
}

header nav a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 1.5rem;
    font-weight: 500;
    transition: color var(--transition-speed);
}

header nav a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.9), rgba(21, 101, 192, 0.8)), url('../../images/Office-Clearances-scaled.webp');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 20px;
    text-align: center;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 4px 6px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease-out;
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    animation: fadeInUp 1s ease-out;
}

.cta-button {
    background: var(--accent-color);
    color: #333;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

section {
    background: var(--card-bg);
    padding: 2.5rem;
    margin-bottom: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform var(--transition-speed);
}

section:hover {
    transform: translateY(-5px);
}

h2 {
    color: var(--primary-color);
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 0.5rem;
    display: inline-block;
    margin-top: 0;
}

/* Services Grid (New Idea) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    text-align: center;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 12px;
    transition: background var(--transition-speed);
}

.service-card:hover {
    background: #e8f5e9;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Live Activity Ticker */
#live-activity {
    border-left: 5px solid var(--secondary-color);
    background: linear-gradient(to right, #e3f2fd, #ffffff);
}

/* Locations List */
.locations-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.locations-list li {
    background: white;
    padding: 1.2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    border: 1px solid #eee;
}

.locations-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.locations-list a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    display: block;
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonials blockquote {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    position: relative;
    margin: 0;
}

.testimonials cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Forms */
form {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

form div { margin-bottom: 1.5rem; }

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

input, textarea, select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color var(--transition-speed);
}

input:focus, textarea:focus, select:focus {
    border-color: var(--primary-color);
    outline: none;
}

button {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition-speed);
}

button:hover {
    background: #1b5e20;
}

#whatsappBtn {
    background: #25d366;
    margin-left: 10px;
}

#whatsappBtn:hover {
    background: #128c7e;
}

#photoQuoteBtn {
    background: var(--secondary-color);
    margin-left: 10px;
}

/* FAB */
.fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    z-index: 2000;
    transition: transform var(--transition-speed);
}

.fab:hover {
    transform: scale(1.1) rotate(10deg);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .container { padding: 1.5rem; }
    section { padding: 1.5rem; }
    form { padding: 1.5rem; }
    button { width: 100%; margin: 10px 0 0 0; }
    #quoteForm {
        max-width: 90%;
        margin: 0 auto;
    }
}
