:root {
    --primary-color: purple;
    --secondary-color: #4caf50;
    --accent-color: #ff9800;
    --dark-color: #1b5e20;
    --light-color: #e8f5e9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: white;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: purple !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    padding: 0 20px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 24px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 8px 4px;
    display: block;
}

.nav-menu a:hover {
    color: #38bdf8;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* Monogram Logo */
.letter-m.monogram {
    display: flex;
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: black;
    background: linear-gradient(45deg, #ff0080, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 20px;
    border: 6px double rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(23, 38, 255, 0.158);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropbtn {
    background: none;
    color: white;
    padding: 10px 15px;
    border: none;
    font-size: 14px;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1e293b;
    min-width: 180px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    overflow: hidden;
    z-index: 10;
}

.dropdown-content a {
    padding: 10px 14px;
    white-space: nowrap;
    color: white;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background: rgba(255,255,255,0.1);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* ===== HERO SECTION ===== */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 180px 0 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-actions .btn {
    padding: 12px 30px;
    font-weight: 600;
}

.Explore-service {
    color: white;
    margin-right: 10px;
}

/* ===== SPLIT LAYOUT ===== */
.split {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.panel {
    flex: 1 1 50%;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.left {
    background: linear-gradient(gray 100%);
    color: #000;
}

.right {
    background: linear-gradient(rgb(0, 128, 90) 100%);
    border-left: 1px solid rgba(0,0,0,0.04);
    color: black;
}

.hero {
    max-width: 780px;
    margin: 0 auto;
}

.section-badge {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--primary-color);
}

/* ===== SERVICE CARDS ===== */
.services-grid {
    display: grid;
    gap: 30px;
}

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    text-align: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 3rem;
    color: var(--primary-color);
}

.service-card h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.section-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: var(--primary-color);
}

.property-location, .cattle-description {
    color: #666;
    font-style: italic;
    margin: 15px 0;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
}

/* ===== FOOTER ===== */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-section {
    flex: 1 1 220px;
    min-width: 200px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-logo i {
    color: var(--secondary-color);
}

.footer-description {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: #ccc;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-link:hover {
    color: white;
}

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
}

.contact-item i {
    color: var(--secondary-color);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-legals {
    display: flex;
    gap: 20px;
}

.footer-legals a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-legals a:hover {
    color: white;
    text-decoration: underline;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 800px) {
    .split {
        flex-direction: column;
    }
    
    .right {
        border-left: none;
        border-top: 1px solid rgba(0,0,0,0.1);
    }
    
    .panel {
        padding: 32px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    /* Mobile Navigation */
    .nav-toggle {
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
    
    .nav-menu {
        position: absolute;
        top: 100px;
        right: 20px;
        background: #0b1220;
        padding: 20px;
        border-radius: 10px;
        flex-direction: column;
        gap: 10px;
        min-width: 200px;
        box-shadow: 0 12px 30px rgba(2,6,23,0.4);
        transform-origin: top right;
        transition: opacity 0.3s ease, transform 0.3s ease;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
    }
    
    .nav-menu[data-visible="true"] {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    
    .dropdown-content {
        position: static;
        box-shadow: none;
        background: transparent;
        display: none;
    }
    
    .dropdown-content[aria-hidden="false"] {
        display: block;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .letter-m.monogram {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        padding: 10px;
    }
    
    .panel {
        padding: 20px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}