/* ============================================
   BOOKER TEXAS - MAIN STYLESHEET
   Professional, Modern, Distinctive Design
   ============================================ */

/* CSS Variables */
:root {
    --primary-color: #1a365d;
    --primary-dark: #0f2642;
    --primary-light: #2d5986;
    --accent-color: #d97706;
    --accent-light: #f59e0b;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --font-display: 'DM Serif Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

p { margin-bottom: 1rem; color: var(--text-medium); }
a { text-decoration: none; color: var(--primary-color); transition: var(--transition); }
a:hover { color: var(--accent-color); }
img { max-width: 100%; height: auto; display: block; }

/* Navigation */
.navbar {
    padding: 1.25rem 0;
    background: var(--bg-white) !important;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-md);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    font-weight: 400;
}

.brand-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
}

.brand-text {
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 6px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-color);
    background: rgba(217, 119, 6, 0.1);
}

.btn-contact {
    background: var(--accent-color) !important;
    color: white !important;
    padding: 0.625rem 1.5rem !important;
    border-radius: 8px;
}

.btn-contact:hover {
    background: var(--accent-light) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Buttons */
.btn {
    font-weight: 500;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    transition: var(--transition);
    border: none;
    font-family: var(--font-body);
}

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

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

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

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.125rem;
}

/* Hero Section */
.hero-section {
    padding-top: 120px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.geometric-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-color);
    top: -200px;
    right: -150px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-color);
    bottom: -100px;
    left: -100px;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--primary-light);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-title .highlight {
    color: var(--accent-color);
    position: relative;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
}

.hero-visual img {
    border-radius: 16px;
}

.floating-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
}

.floating-card i {
    font-size: 2rem;
    color: var(--accent-color);
}

.card-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.8;
}

/* Philosophy Section */
.philosophy-section {
    background: var(--bg-light);
}

.philosophy-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.philosophy-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.philosophy-card .card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.philosophy-card .card-icon i {
    font-size: 1.75rem;
    color: white;
}

.philosophy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.philosophy-card p {
    color: var(--text-medium);
    margin: 0;
}

/* Services Preview */
.service-preview-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-image {
    overflow: hidden;
    height: 280px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-preview-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-content p {
    color: var(--text-medium);
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.service-price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.125rem;
}

.service-link {
    color: var(--accent-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-link:hover {
    gap: 0.75rem;
}

/* Process Timeline */
.process-section {
    background: var(--bg-light);
}

.process-timeline {
    position: relative;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:not(:last-child):after {
    content: '';
    position: absolute;
    left: 23px;
    top: 64px;
    width: 2px;
    height: calc(100% + 24px);
    background: var(--border-color);
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    z-index: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.step-content p {
    color: var(--text-medium);
    margin: 0;
}

/* Insights Section */
.insight-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.insight-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.insight-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.insight-category {
    background: rgba(217, 119, 6, 0.1);
    color: var(--accent-color);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
}

.insight-date {
    color: var(--text-light);
    font-size: 0.875rem;
}

.insight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.insight-card h3 a {
    color: var(--primary-color);
}

.insight-card h3 a:hover {
    color: var(--accent-color);
}

.insight-card p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.insight-link {
    color: var(--accent-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.insight-link:hover {
    gap: 0.75rem;
}

/* Trust Section */
.trust-badge {
    text-align: center;
    padding: 1.5rem;
}

.trust-badge i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.trust-badge span {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-content .btn-primary {
    background: var(--accent-color);
}

.cta-content .btn-primary:hover {
    background: var(--accent-light);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

.footer h5 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.875rem;
}

/* Page Header */
.page-header {
    padding-top: 140px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.page-title {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.page-description {
    font-size: 1.25rem;
    color: var(--text-medium);
}

/* Contact Form */
.contact-form-wrapper,
.contact-info-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(217, 119, 6, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.info-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-family: var(--font-body);
    font-weight: 600;
}

.info-content p {
    margin: 0;
    color: var(--text-medium);
}

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

.info-content a:hover {
    color: var(--accent-color);
}

.contact-note {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
}

/* Policy Pages */
.policy-page {
    padding-top: 120px;
    padding-bottom: 80px;
    background: var(--bg-light);
}

.policy-page h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.policy-updated {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.policy-content {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.policy-content h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.policy-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.policy-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-content ul,
.policy-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
    .section-title { font-size: 2.25rem; }
    .page-title { font-size: 2.75rem; }
    
    .hero-cta { flex-direction: column; }
    .cta-buttons { flex-direction: column; width: 100%; }
    .cta-buttons .btn { width: 100%; }
}

@media (max-width: 768px) {
    section { padding: 60px 0; }
    .hero-section { padding-top: 100px; padding-bottom: 60px; }
    .hero-title { font-size: 2.5rem; }
    .hero-description { font-size: 1.125rem; }
    .section-title { font-size: 2rem; }
    .page-title { font-size: 2.25rem; }
    
    .process-step { flex-direction: column; gap: 1rem; }
    .process-step:after { display: none; }
    
    .contact-form-wrapper,
    .contact-info-wrapper { padding: 1.5rem; }
    .policy-content { padding: 2rem 1.5rem; }
}

@media (max-width: 576px) {
    .floating-card { position: static; margin-top: 1rem; }
    .hero-visual img { margin-bottom: 1rem; }
}




.navbar-brand img{
    max-width: 200px;
    width: 200px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}


footer .navbar-brand img{
    filter: brightness(0) invert(1);
}

#cookie-banner p{
    color: #fff!important;
}


.process-number,.included-item .item-icon, .value-icon, .info-box i, .limitation-card i, .client-type-card i, .limitation-item i{
    display: flex;
    width: 50px;
    height: 50px;
    background: #ececec;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.footer-brand p{
    color: #fff;
}

.blog-meta{
    margin-top: 10px;
}

.article-page{
    padding-top: 120px;
}

.article-body{
    margin-top: 20px;
}

.article-cta{
    margin-bottom: 60px;
}

.service-features ul,.commitment-card i, .checklist{
    list-style: none;
    padding-left: 0;
}

.service-hero{
    padding-top: 110px;
}