/* 1. IMPORT GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* General Reset */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    background-color: #ffffff;
    color: #1a1a1a;
    -webkit-font-smoothing: antialiased;
}

/* Auth Buttons Design */
.nav-auth {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-login { 
    text-decoration: none; 
    color: #333; 
    border: 1px solid #ddd; 
    padding: 10px 24px; 
    border-radius: 6px; 
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-login:hover { 
    background: #f5f5f5; 
    border-color: #ccc;
}

.btn-signup { 
    background: #e67e22; 
    color: white; 
    padding: 10px 24px; 
    border-radius: 6px; 
    text-decoration: none; 
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(230, 126, 34, 0.2);
    transition: 0.3s;
}

.btn-signup:hover { 
    background: #d35400; 
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(230, 126, 34, 0.3);
}

/* Navigation */
nav {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    padding: 15px 8%; 
    background: #fff; 
    position: sticky; 
    top: 0; 
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.nav-left { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    font-weight: 800; 
    font-size: 1.1rem;
    letter-spacing: -0.5px;
}

.logo { height: 45px; }

.nav-links { display: flex; list-style: none; gap: 35px; }
.nav-links a { 
    text-decoration: none; 
    color: #444; 
    font-weight: 500; 
    font-size: 0.95rem;
    transition: 0.3s ease;
}

.nav-links a:hover, .nav-links a.active { 
    color: #e67e22; 
    border-bottom: 2px solid #e67e22;
}

/* Hero Slider Section */
.hero { 
    position: relative; 
    height: 90vh; 
    color: white; 
    text-align: center; 
    overflow: hidden; 
}

/* --- ZOOM IN/OUT EFFECT LOGIC --- */
.slide { 
    position: absolute; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    filter: brightness(0.4); 
    display: none; 
    transition: transform 6s ease-in-out, opacity 1s ease-in-out;
    transform: scale(1); /* Default size */
}

.slide.active { 
    display: block; 
    transform: scale(1.15); /* Dahan-dahang mag-zo-zoom habang naka-active */
}

.hero-overlay { 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    width: 85%; 
    max-width: 900px;
    z-index: 5;
}

.badge { 
    background: #e67e22; 
    padding: 8px 20px; 
    border-radius: 30px; 
    font-size: 0.75rem; 
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 { 
    font-size: 4rem; 
    font-weight: 800; 
    margin: 25px 0; 
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 35px;
    opacity: 0.9;
}

.hero-btns { display: flex; justify-content: center; gap: 20px; }

.btn-orange { 
    background: #e67e22; 
    color: white; 
    padding: 16px 40px; 
    border-radius: 8px; 
    text-decoration: none; 
    font-weight: 600;
    transition: 0.3s;
}

.btn-orange:hover { background: #d35400; transform: translateY(-3px); }

.btn-outline { 
    border: 2px solid white; 
    color: white; 
    padding: 16px 40px; 
    border-radius: 8px; 
    text-decoration: none; 
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline:hover { background: white; color: #1a1a1a; }

/* Dots Navigation */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    height: 12px;
    width: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.4s;
}

.dot.active {
    background: #e67e22;
    width: 35px; /* Long dot effect */
    border-radius: 10px;
}

/* Services Grid Section */
.services-preview { 
    padding: 100px 8%; 
    text-align: center; 
    background: #fcfcfc; 
}

.services-preview h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.services-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 30px; 
    margin-top: 60px; 
}

.service-card { 
    background: white; 
    padding: 50px 40px; 
    border-radius: 20px; 
    text-align: left; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.02); 
    border: 1px solid #f2f2f2;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover { 
    transform: translateY(-12px); 
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    border-color: #e67e22;
}

.icon-box { 
    background: #fff8f0; 
    width: 65px; 
    height: 65px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 15px; 
    margin-bottom: 25px; 
    font-size: 30px; 
    color: #e67e22; 
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}