:root {
    --primary: #FF6B00; 
    --secondary: #2D2D2D;
    --white: #FFFFFF;
    --light: #F4F4F4;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: var(--secondary); scroll-behavior: smooth; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Navbar & Logo Adjustments */
.navbar { background: var(--white); padding: 10px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 15px rgba(0,0,0,0.05); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }

.logo-wrapper { display: flex; align-items: center; gap: 12px; }
.main-logo { height: 60px; width: auto; border-radius: 5px; } /* Adjusted logo size */
.logo-text { display: flex; flex-direction: column; }
.brand-name { font-weight: 800; font-size: 1.2rem; color: var(--secondary); line-height: 1; }
.tagline { font-size: 0.8rem; color: var(--primary); font-weight: 600; }

.nav-links a { text-decoration: none; color: var(--secondary); margin-left: 20px; font-weight: 600; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }
.nav-cta { background: var(--primary); color: white !important; padding: 8px 20px; border-radius: 5px; }


/* Hero Section */
.hero { padding: 80px 0; background: linear-gradient(rgba(255,255,255,0.45), rgba(255,255,255,0.45)), url('assets/hero.png'); background-size: cover; text-align: center; }
.hero h1 { font-size: 2.8rem; margin: 20px 0; font-weight: 800; }
.text-orange { color: var(--primary); }
.badge { background: #FFE8D6; color: var(--primary); padding: 5px 15px; border-radius: 50px; font-weight: bold; }
.btn { padding: 15px 30px; border-radius: 8px; text-decoration: none; font-weight: bold; display: inline-block; transition: 0.3s; }
.btn-primary { background: var(--primary); color: white; }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); margin-left: 10px; }
.btn-call { background: var(--primary); color: white; }
.btn-whatsapp { background: #25D366; color: white; }

.contact-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
    color: white;
}

.social-icon.youtube {
    background: #ff0000;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.social-icon.youtube:hover {
    background: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.social-icon.facebook {
    background: #1877f2;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.social-icon.facebook:hover {
    background: #0d66d8;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.4);
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
}

/* Sections & Cards */
.section { padding: 80px 0; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.card { background: white; padding: 30px; border-radius: 12px; box-shadow: var(--shadow); border-bottom: 4px solid var(--primary); transition: 0.3s; }
.card:hover { transform: translateY(-10px); }
.card-icon { font-size: 35px; color: var(--primary); margin-bottom: 15px; }

/* Drilling Section */
.drilling-section { background: var(--secondary); color: white; padding: 80px 0; }
.drilling-content { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.drilling-text { flex: 1; min-width: 300px; }
.drill-item { margin-bottom: 20px; border-left: 4px solid var(--primary); padding-left: 15px; }
.drilling-image img { width: 100%; border-radius: 12px; max-width: 500px; }

/* Video */
.video-wrapper { margin-top: 30px; position: relative; padding-bottom: 56.25%; height: 0; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 15px; }

/* Footer */
.footer { background: #1a1a1a; color: white; padding: 50px 0 20px; }
.footer-logo { height: 50px; margin-bottom: 15px; border-radius: 4px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
.footer-bottom { text-align: center; margin-top: 40px; padding-top: 20px; border-top: 1px solid #333; font-size: 0.9rem; }

/* Floating Buttons */
.fab-container { position: fixed; bottom: 20px; right: 20px; display: flex; flex-direction: column; gap: 10px; }
.fab { width: 55px; height: 55px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 22px; text-decoration: none; box-shadow: 0 5px 15px rgba(0,0,0,0.2); transition: 0.3s; }
.fab-whatsapp { background: #25D366; }
.fab-call { background: var(--primary); }

/* Mobile Menu */
.menu-icon { display: none; font-size: 24px; color: var(--secondary); cursor: pointer; }

@media (max-width: 768px) {
    .menu-icon { display: block; }
    .nav-links { display: none; position: absolute; top: 80px; left: 0; width: 100%; background: white; flex-direction: column; padding: 20px; box-shadow: var(--shadow); }
    .nav-links.active { display: flex; }
    .nav-links a { margin: 10px 0; }
    .hero h1 { font-size: 2rem; }
    .contact-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .social-icons {
        justify-content: center;
        margin-top: 10px;
    }
}