:root {
    --primary-color: #B26215;
    /* Brand Primary: Timber */
    --secondary-color: #134577;
    /* Brand Secondary: Deep Blue */
    --accent-color: #f1c40f;
    /* Gold for highlights */
    --text-body: #2c3e50;
    /* Dark slate for body text */
    --text-light: #ecf0f1;
    /* Keeping for specific needs */
    --card-bg: #ffffff;
    --card-border: rgba(0, 0, 0, 0.08);
    --blur-strength: 15px;
    --transition-speed: 0.4s;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Background Image Removal */
.bg-image {
    display: none;
}

.overlay {
    display: none;
}

/* Header */
.main-header {
    width: 100%;
    text-align: center;
    padding: 2rem 0;
    position: relative;
    z-index: 10;
}

.header-logo {
    max-width: 200px;
    height: auto;
    display: inline-block;
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

/* Footer Logo */
.footer-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 1rem;
    opacity: 1;
}

/* Slider */
.slider-container {
    width: calc(100% - 200px);
    max-width: 1400px;
    /* Optional: limit max width on very large screens */
    height: 350px;
    position: relative;
    overflow: hidden;
    margin: 0 auto 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

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

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

.slider-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.slider-dot.active,
.slider-dot:hover {
    background: var(--primary-color);
}

/* Main Container */
.container {
    max-width: 1200px;
    width: 90%;
    margin: 2rem auto 4rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    padding: 2rem 0;
    margin-bottom: 4rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.hero .subtitle {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 300;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.hero .tagline {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    color: #555;
    font-weight: 500;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 15px rgba(178, 98, 21, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.cta-button:hover {
    background: #8F4E11;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(178, 98, 21, 0.4);
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    margin-bottom: 4rem;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: left;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
    background: #fff;
}

.card h2 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.card h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.card:hover h2::after {
    width: 100%;
}

.card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

.card.highlight-card {
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(178, 98, 21, 0.1);
}

/* Footer Section */
.footer-note {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    /* Added subtle shadow */
}

.contact-heading {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-bottom: 1.5rem;
}

.contact-details p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

.brand-signature {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 1rem;
}

footer {
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #7f8c8d;
    width: 100%;
    position: relative;
    z-index: 10;
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

.delay-5 {
    animation-delay: 1s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .main-header {
        position: relative;
        top: 0;
        left: 0;
        padding: 1.5rem;
        text-align: center;
    }

    .container {
        margin-top: 2rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .slider-container {
        margin: 20px;
        /* Reduced margins for mobile */
        height: 250px;
        width: 92%;
        /* Optional adjustment */
    }
}