/* services-style.css - External Stylesheet for Obencars Services Page */
:root {
    --primary: #007AFF;
    --primary-dark: #0056b3;
    --dark-bg: #1a1a1a;
    --light-bg: #f2f2f7;
    --nav-bg: #ffffff;
    --text-dark: #000;
    --text-light: #fff;
    --border: #e5e7eb;
    --whatsapp: #25D366;
    --card-hover: #ffffff;
    --shadow-sm: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.01);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; background-color: var(--light-bg); color: var(--text-dark); line-height: 1.6; }

/* Navigation */
header { background: var(--nav-bg); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 8px rgba(0,0,0,0.03); }
nav { display: flex; justify-content: space-between; align-items: center; padding: 12px 5%; max-width: 1400px; margin: 0 auto; }
.logo img { height: 50px; display: block; }
.nav-links { display: flex; list-style: none; gap: 28px; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-weight: 600; transition: 0.3s ease; font-size: 0.95rem; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.menu-toggle { display: none; font-size: 1.5rem; background: none; border: none; cursor: pointer; }

/* Hero Header - enhanced H1 */
.page-title { 
    background: linear-gradient(135deg, var(--primary) 0%, #004a9e 100%);
    color: white; 
    padding: 70px 5% 80px; 
    text-align: center; 
    margin-bottom: 0;
    position: relative;
}
.page-title h1 { font-size: 3rem; margin-bottom: 18px; font-weight: 800; letter-spacing: -0.02em; }
.page-title p { font-size: 1.2rem; opacity: 0.95; max-width: 750px; margin: 0 auto; line-height: 1.5; }

/* Services Grid */
.container { max-width: 1300px; margin: 0 auto; padding: 60px 20px; }
.services-intro {
    text-align: center;
    margin-bottom: 50px;
}
.services-intro h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111;
}
.services-intro p {
    max-width: 700px;
    margin: 0 auto;
    color: #4b5563;
    font-size: 1.1rem;
}
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 32px; }

.service-card { 
    background: white; 
    border-radius: 28px; 
    overflow: hidden; 
    box-shadow: var(--shadow-sm); 
    border: 1px solid var(--border); 
    transition: all 0.4s cubic-bezier(0.1, 0.7, 0.3, 1); 
    display: flex; 
    flex-direction: column; 
    height: 100%;
}
.service-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 30px 40px -20px rgba(0,122,255,0.25); 
    border-color: var(--primary); 
}

.service-image { 
    width: 100%; 
    height: 220px; 
    overflow: hidden; 
    position: relative;
}
.service-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.6s ease;
}
.service-card:hover .service-image img { transform: scale(1.06); }

.service-content { 
    padding: 28px 26px 32px; 
    text-align: left; 
    flex-grow: 1; 
    display: flex; 
    flex-direction: column; 
    background: white;
}
.service-content h3 { 
    font-size: 1.5rem; 
    margin-bottom: 12px; 
    color: var(--text-dark);
    font-weight: 700;
}
.service-content p { 
    font-size: 0.95rem; 
    color: #4b5563; 
    margin-bottom: 24px;
    line-height: 1.6;
    flex-grow: 1;
}

.btn-sm { 
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px; 
    background: rgba(0,122,255,0.08);
    border: 1.5px solid var(--primary); 
    color: var(--primary); 
    text-decoration: none; 
    border-radius: 60px; 
    font-weight: 700; 
    font-size: 0.9rem;
    transition: all 0.3s; 
    align-self: flex-start;
}
.btn-sm:hover { 
    background: var(--primary); 
    color: white; 
    box-shadow: 0 8px 18px rgba(0,122,255,0.25);
    transform: translateX(4px);
}

.service-badge {
    display: inline-block;
    background: #e9f2ff;
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 40px;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
    width: fit-content;
}

/* CTA Section enhanced */
.cta-box { 
    background: linear-gradient(135deg, #111827 0%, #1e293b 100%);
    color: white; 
    padding: 60px 32px; 
    border-radius: 40px; 
    text-align: center; 
    margin-top: 40px; 
}
.cta-box h2 { margin-bottom: 16px; font-size: 2.2rem; font-weight: 700; color: white; }
.cta-box p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto;}
.btn-main { 
    background: var(--primary); 
    color: white; 
    padding: 14px 42px; 
    text-decoration: none; 
    border-radius: 60px; 
    font-weight: 700; 
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(0,122,255,0.4);
    border: none;
}
.btn-main:hover { 
    background: #0051c9; 
    transform: translateY(-3px);
    box-shadow: 0 18px 30px rgba(0,122,255,0.5);
}

/* Footer Styles - Same as homepage */
footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 0;
    position: relative;
    margin-top: 60px;
}
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--whatsapp), var(--primary));
}
.footer-content { max-width: 1400px; margin: 0 auto; }
.footer-main { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 50px; padding: 60px 5%; }
.footer-col h4 { color: white; font-size: 1.2rem; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 2px; background: var(--primary); }
.company-info .tagline { color: #b0b0b0; line-height: 1.6; margin: 15px 0 20px; }
.footer-logo { max-width: 180px; margin-bottom: 15px; filter: brightness(0) invert(1); }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-links a { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; background: rgba(255,255,255,0.1); border-radius: 50%; color: white; transition: all 0.3s ease; text-decoration: none; }
.social-links a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #b0b0b0; text-decoration: none; transition: all 0.3s ease; display: inline-block; }
.footer-links a i { font-size: 0.8rem; margin-right: 8px; color: var(--primary); }
.footer-links a:hover { color: white; transform: translateX(5px); }
.contact-details { list-style: none; }
.contact-details li { display: flex; gap: 15px; margin-bottom: 20px; color: #b0b0b0; }
.contact-details i { color: var(--primary); font-size: 1.2rem; margin-top: 3px; }
.contact-details a { color: #b0b0b0; text-decoration: none; }
.contact-details a:hover { color: var(--primary); }
.hours { font-size: 0.85rem; color: var(--primary); display: block; margin-top: 3px; }
.footer-cta { background: rgba(0,122,255,0.1); border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); padding: 40px 5%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.cta-content h3 { color: white; font-size: 1.5rem; margin-bottom: 5px; }
.cta-content p { color: #b0b0b0; }
.cta-buttons { display: flex; gap: 15px; }
.btn-book, .btn-call-footer { padding: 12px 25px; border-radius: 8px; text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 10px; transition: all 0.3s ease; }
.btn-book { background: var(--primary); color: white; }
.btn-book:hover { background: #0056b3; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,122,255,0.4); }
.btn-call-footer { background: rgba(255,255,255,0.1); color: white; border: 1px solid rgba(255,255,255,0.2); }
.btn-call-footer:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.footer-bottom { padding: 20px 5%; background: rgba(0,0,0,0.3); }
.bottom-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; color: #888; font-size: 0.9rem; }
.legal-links { display: flex; gap: 20px; }
.legal-links a { color: #888; text-decoration: none; transition: color 0.3s ease; }
.legal-links a:hover { color: var(--primary); }

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .nav-links.active { display: flex; flex-direction: column; position: absolute; top: 71px; left: 0; width: 100%; background: white; padding: 20px; border-bottom: 1px solid var(--border); z-index: 1000; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
    .page-title h1 { font-size: 2rem; }
    .page-title p { font-size: 1rem; padding: 0 16px; }
    .services-intro h2 { font-size: 1.8rem; }
    .services-grid { gap: 20px; }
    .service-content { padding: 22px; }
    .cta-box { padding: 40px 20px; }
    .cta-box h2 { font-size: 1.8rem; }
    .footer-main { gap: 30px; padding: 40px 5%; }
    .footer-cta { flex-direction: column; text-align: center; }
    .cta-buttons { width: 100%; flex-direction: column; }
    .btn-book, .btn-call-footer { width: 100%; justify-content: center; }
    .bottom-content { flex-direction: column; text-align: center; }
    .legal-links { justify-content: center; flex-wrap: wrap; }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid { gap: 24px; }
}