/* ============================================
   RankPro SEO Agency - Paradise Media Style
   Clean, Minimal, Conversion-Focused
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

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

:root {
    --primary: #0F52BA;
    --primary-light: #3d7dd9;
    --dark: #0a1628;
    --text: #162d48;
    --text-light: #4b5e77;
    --white: #ffffff;
    --gray-bg: #f7f9fc;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ============================================
   Header
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--dark);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
}

.logo svg {
    width: 44px;
    height: 44px;
}

.nav-menu {
    display: flex;
    gap: 50px;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-actions .btn {
    display: none;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 18px 40px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: #1d4ed8;
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--gray-bg);
}

/* ============================================
   Hero Section - Paradise Style
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark);
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
}

.hero-label {
    color: var(--primary-light);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 58px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 20px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-cta {
    margin-bottom: 0;
}

/* ============================================
   Stats Section - Paradise Style
   ============================================ */
.stats-section {
    background: var(--dark);
    padding: 80px 0;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 100px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================
   Clients Section
   ============================================ */
.clients {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.clients-label {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.clients-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.client-logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-light);
    opacity: 0.5;
}

/* ============================================
   Section Common Styles
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Services Section
   ============================================ */
.services {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    padding: 50px 40px;
    background: var(--gray-bg);
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: var(--white);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
}

.service-icon svg {
    width: 36px;
    height: 36px;
    color: var(--white);
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.service-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.service-link {
    display: none;
}

/* ============================================
   Why Us Section
   ============================================ */
.why-us {
    padding: 100px 0;
    background: var(--dark);
}

.why-us .section-label {
    color: var(--primary-light);
}

.why-us .section-title {
    color: var(--white);
}

.why-us .section-description {
    color: rgba(255,255,255,0.7);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.feature-icon svg {
    width: 36px;
    height: 36px;
    color: var(--primary-light);
}

.feature-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* ============================================
   CTA Section
   ============================================ */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
    text-align: center;
}

.cta h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.cta p {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    padding: 100px 0;
    background: var(--gray-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-method-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
    color: var(--white);
}

.contact-method h4 {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-method p,
.contact-method a {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
}

.contact-method a:hover {
    color: var(--primary);
}

.contact-form-card {
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-form-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.contact-form-card > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-submit {
    margin-top: 30px;
}

.form-submit .btn {
    width: 100%;
    padding: 20px;
    font-size: 16px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    padding: 60px 0 40px;
    background: var(--dark);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 50px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    max-width: 320px;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    gap: 100px;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links a {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.footer-legal {
    display: flex;
    gap: 40px;
}

.footer-legal a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.footer-legal a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
}

/* ============================================
   Page Header
   ============================================ */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #f8faff 0%, #e8f0ff 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

.page-header p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.breadcrumb a {
    color: var(--primary);
}

/* ============================================
   Service Detail Page
   ============================================ */
.service-detail {
    padding: 100px 0;
}

.service-detail:nth-child(even) {
    background: var(--gray-bg);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-detail:nth-child(even) .service-detail-content {
    direction: rtl;
}

.service-detail:nth-child(even) .service-detail-content > * {
    direction: ltr;
}

.service-detail-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

.service-detail-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.service-features {
    margin-bottom: 35px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--text);
}

.service-features li svg {
    color: var(--primary);
    flex-shrink: 0;
}

.service-detail-image {
    background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
    border-radius: 10px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-image svg {
    width: 140px;
    height: 140px;
    color: var(--white);
    opacity: 0.9;
}

/* ============================================
   About Page
   ============================================ */
.about-intro {
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 25px;
}

.about-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
    border-radius: 10px;
    padding: 50px;
}

.stats-card {
    background: var(--white);
    border-radius: 10px;
    padding: 40px;
}

.stats-card .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-box {
    text-align: center;
    padding: 25px;
    background: var(--gray-bg);
    border-radius: 10px;
}

.stat-box .stat-number {
    font-size: 36px;
    color: var(--primary);
}

.stat-box .stat-label {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 5px;
}

.values-section {
    padding: 100px 0;
    background: var(--gray-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

.value-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 50%;
    color: var(--white);
}

.value-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.team-section {
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.team-card {
    text-align: center;
}

.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
}

.team-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.team-card .role {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   Case Studies
   ============================================ */
.case-studies-grid {
    padding: 100px 0;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.case-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.case-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.case-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-image svg {
    width: 70px;
    height: 70px;
    color: var(--white);
    opacity: 0.9;
}

.case-content {
    padding: 35px;
}

.case-tag {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    border-radius: 5px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.case-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.case-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.case-metrics {
    display: flex;
    gap: 40px;
    padding-top: 25px;
    border-top: 1px solid #e5e7eb;
}

.case-metric {
    text-align: center;
}

.case-metric .value {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.case-metric .label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* ============================================
   Alerts
   ============================================ */
.alert {
    padding: 20px 25px;
    border-radius: 5px;
    margin-bottom: 25px;
    font-size: 15px;
    font-weight: 500;
}

.alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 46px;
    }

    .stats-grid {
        gap: 60px;
    }

    .stat-number {
        font-size: 44px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        flex-direction: column;
        gap: 50px;
    }

    .footer-links {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 30px;
        gap: 0;
        box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 140px 0 80px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 17px;
    }

    .stats-grid {
        flex-direction: column;
        gap: 40px;
    }

    .stat-number {
        font-size: 48px;
    }

    .section-title {
        font-size: 32px;
    }

    .services-grid,
    .cases-grid {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-content,
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .service-detail:nth-child(even) .service-detail-content {
        direction: ltr;
    }

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

    .form-group.full-width {
        grid-column: span 1;
    }

    .cta h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .page-header {
        padding: 140px 0 60px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .clients-logos {
        gap: 30px;
    }

    .contact-form-card {
        padding: 35px;
    }
}

/* ============================================
   Simple Contact Page - Paradise Style
   ============================================ */
.contact-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark);
    padding: 120px 0 80px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-label {
    color: var(--primary-light);
    display: block;
    margin-bottom: 20px;
}

.contact-info h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 15px;
}

.contact-address {
    font-size: 14px !important;
    color: rgba(255,255,255,0.5) !important;
    margin-bottom: 40px !important;
}

.contact-emails {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-email-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-email-item:last-child {
    border-bottom: none;
}

.email-icon {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.email-address {
    color: var(--primary-light);
    font-weight: 600;
    font-size: 14px;
}

.email-label {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

.contact-form-box {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
}

.simple-contact-form .form-group {
    margin-bottom: 20px;
}

.simple-contact-form .form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 8px;
    display: block;
}

.simple-contact-form .form-group input,
.simple-contact-form .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
}

.simple-contact-form .form-group input:focus,
.simple-contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.simple-contact-form .btn {
    padding: 14px 30px;
    font-size: 13px;
}

/* ============================================
   Careers Page - Paradise Style
   ============================================ */
.careers-hero {
    padding: 180px 0 100px;
    background: var(--dark);
    text-align: center;
}

.careers-hero .section-label {
    color: var(--primary-light);
    display: block;
    margin-bottom: 20px;
}

.careers-hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
}

.careers-hero p {
    font-size: 20px;
    color: rgba(255,255,255,0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.careers-values {
    padding: 100px 0;
    background: var(--white);
}

.values-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.career-value {
    text-align: center;
    padding: 40px;
}

.career-value h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

.career-value p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.positions-section {
    padding: 100px 0;
    background: var(--gray-bg);
}

.positions-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 50px;
}

.position-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    padding: 25px 35px;
    border-radius: 10px;
    transition: all 0.3s;
}

.position-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.position-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.position-info p {
    font-size: 14px;
    color: var(--text-light);
}

.position-arrow {
    font-size: 24px;
    color: var(--primary);
}

.careers-fallback {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: var(--white);
    border-radius: 10px;
}

.careers-fallback p {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.careers-fallback a {
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
}

.careers-fallback a:hover {
    text-decoration: underline;
}

/* Responsive for Contact and Careers */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info h1 {
        font-size: 32px;
    }

    .contact-form-box {
        padding: 30px;
    }

    .careers-hero h1 {
        font-size: 36px;
    }

    .values-grid-3 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .career-value {
        padding: 30px 20px;
    }

    .position-card {
        padding: 20px 25px;
    }

    .position-info h3 {
        font-size: 17px;
    }
}
