/* ===================================
   Bluebonnet Party Rentals - Main Stylesheet
   ================================== */

/* CSS Variables for Brand Colors */
:root {
    --primary-blue: #2E5BFF;
    --secondary-blue: #5B8BD0;
    --accent-yellow: #FFB84D;
    --dark-text: #1A202C;
    --light-gray: #F7FAFC;
    --white: #FFFFFF;
    --success-green: #48BB78;
    --border-gray: #E2E8F0;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-blue);
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--accent-yellow);
    outline-offset: 2px;
}

/* SVG Icon Styling */
.icon {
    display: inline-block;
    vertical-align: middle;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.phone-link .icon {
    margin-right: 6px;
}

/* Layout Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-gray {
    background-color: var(--light-gray);
}

/* Header & Navigation */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-contact a {
    color: var(--white);
    margin-right: 20px;
    font-weight: 600;
}

.header-contact a:hover {
    color: var(--accent-yellow);
}

.language-switcher {
    display: flex;
    gap: 10px;
}

.language-switcher a {
    color: var(--white);
    padding: 4px 10px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    font-size: 0.85rem;
}

.language-switcher a.active {
    background-color: var(--white);
    color: var(--primary-blue);
}

.nav-main {
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.logo-text {
    margin-left: 15px;
}

.logo-text h1 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--primary-blue);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.logo-text p {
    font-size: 0.85rem;
    color: var(--dark-text);
    margin: 0;
    font-style: italic;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--dark-text);
    font-weight: 600;
    padding: 10px 0;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-text);
}

/* Hero Section */
.hero {
    background: 
        linear-gradient(135deg, rgba(46, 91, 255, 0.95) 0%, rgba(91, 139, 208, 0.95) 100%),
        radial-gradient(circle at 20% 80%, rgba(255, 184, 77, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 184, 77, 0.1) 0%, transparent 50%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".1" fill="%23fff"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.1;
}

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

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-tagline {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 600;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    min-width: 44px;
    min-height: 44px;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, #FFC94D 100%);
    color: var(--dark-text);
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(255, 184, 77, 0.4);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FFD700 0%, var(--accent-yellow) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 25px rgba(255, 184, 77, 0.5),
        0 0 30px rgba(255, 184, 77, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

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

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.phone-btn {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-btn::before {
    content: '📞';
}

/* Trust Badges */
.trust-badges {
    background-color: var(--white);
    padding: 30px 0;
    border-top: 3px solid var(--accent-yellow);
}

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

@media (max-width: 968px) {
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .badges-grid {
        grid-template-columns: 1fr;
    }
}

.badge {
    padding: 35px 25px;
}

.badge-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 12px;
    margin: 0 auto 15px;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.badge-icon svg {
    stroke: var(--white);
}

.badge h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.badge p {
    font-size: 0.9rem;
    color: #6C757D;
}

/* Featured Rentals */
.featured-rentals {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 10;
}

.section-header h2 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.1rem;
    color: #6C757D;
}

.rentals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.rental-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        var(--shadow-md),
        8px 8px 0 rgba(255, 184, 77, 0.15);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 1px solid var(--border-gray);
}

.rental-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1), 
        0 10px 10px -5px rgba(0, 0, 0, 0.04),
        12px 12px 0 rgba(255, 184, 77, 0.25),
        20px 20px 0 rgba(46, 91, 255, 0.15);
    border-color: var(--primary-blue);
}

.rental-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: var(--light-gray);
}

.rental-card-content {
    padding: 40px !important;
}

.rental-card-content h3 {
    color: var(--dark-text);
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

.rental-card-price {
    font-size: 1.4rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 20px;
}

.rental-card-specs {
    font-size: 1rem;
    color: #6C757D;
    margin-bottom: 25px;
    line-height: 2;
}

.rental-card-specs ul {
    list-style: none;
}

.rental-card-specs li {
    margin-bottom: 12px;
    padding-left: 8px;
    font-size: 1.05rem;
}

.rental-card-specs li::before {
    content: '';
}

/* How It Works */
.how-it-works {
    background-color: var(--light-gray);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.step p {
    color: #6C757D;
}

/* Why Choose Us */
.why-choose {
    padding: 60px 0;
}

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

@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 16px;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-lg);
}

.feature-icon svg {
    stroke: var(--white);
}

.feature h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.feature p {
    color: #6C757D;
}

/* Service Area Map */
.service-map {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.region-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.98) 100%);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
}

.region-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-yellow));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.region-card:hover::before {
    transform: scaleX(1);
}

.region-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 12px 30px rgba(46, 91, 255, 0.15),
        0 6px 15px rgba(0,0,0,0.1);
    border-color: var(--primary-blue);
}

.region-north:hover {
    border-color: var(--primary-blue);
}

.region-central:hover {
    border-color: var(--accent-yellow);
}

.region-south:hover {
    border-color: var(--secondary-blue);
}

.region-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.region-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    box-shadow: 0 4px 12px rgba(46, 91, 255, 0.3);
    transition: transform 0.3s ease;
}

.region-card:hover .region-icon {
    transform: rotate(10deg) scale(1.1);
}

.region-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
}

.region-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.city-tag {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    font-size: 0.95rem;
    color: var(--dark-text);
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}

.city-tag:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(46, 91, 255, 0.2);
}

.service-area-cta {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(46, 91, 255, 0.05) 0%, rgba(255, 184, 77, 0.05) 100%);
    border-radius: 12px;
    border: 2px dashed var(--primary-blue);
}

.service-area-cta p {
    font-size: 1.1rem;
    margin: 0;
    color: var(--dark-text);
}

.inline-link {
    color: var(--primary-blue);
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.inline-link:hover {
    color: var(--accent-yellow);
}

@media (max-width: 968px) {
    .service-map {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Testimonials */
.testimonials {
    background-color: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    background-color: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    flex-shrink: 0;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    color: #4A5568;
    line-height: 1.75;
    font-size: 1.05rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--dark-text);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.testimonial-location {
    font-size: 0.95rem;
    color: #718096;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

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

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, #1A202C 0%, #2D3748 100%);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--accent-yellow);
    margin-bottom: 25px;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 3px solid var(--accent-yellow);
    padding-bottom: 10px;
    display: inline-block;
}

.footer-section p {
    margin-bottom: 12px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 16px;
    padding-left: 25px;
    position: relative;
    color: rgba(255,255,255,0.9);
    line-height: 1.9;
    font-size: 1.05rem;
}

.footer-section li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-yellow);
    font-weight: bold;
    font-size: 1.1rem;
}

.footer-section a {
    color: rgba(255,255,255,0.85);
    transition: color 0.3s ease;
}

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

/* Logo Watermark Backgrounds */
.logo-watermark {
    position: relative;
    overflow: hidden;
}

.logo-watermark::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background-image: url('../images/logo.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
}

/* Pattern Overlays */
.pattern-dots {
    position: relative;
}

.pattern-dots::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, var(--accent-yellow) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
}

/* Gradient Mesh Overlay */
.gradient-mesh {
    position: relative;
}

.gradient-mesh::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(46, 91, 255, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 184, 77, 0.12) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

/* Floating Animation */
@keyframes float-gentle {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.animate-float {
    animation: float-gentle 6s ease-in-out infinite;
}

/* Pulse Glow Animation */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(46, 91, 255, 0.3); }
    50% { box-shadow: 0 8px 40px rgba(46, 91, 255, 0.5), 0 0 60px rgba(255, 184, 77, 0.3); }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo {
    margin-bottom: 10px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.footer-tagline {
    font-size: 1.1rem;
    font-weight: 600;
    font-style: italic;
    color: var(--accent-yellow);
    margin: 0;
}

.footer-subtitle {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    margin: 0 0 20px 0;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 0.95rem;
}

.footer-contact svg {
    flex-shrink: 0;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--accent-yellow);
}

.social-links svg {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 30px;
    margin-top: 20px;
    text-align: center;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-bottom a {
    color: rgba(255,255,255,0.7);
    margin: 0 10px;
    transition: color 0.3s ease;
}

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

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-text);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-gray);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
    min-height: 44px;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="6 9 12 15 18 9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    padding-right: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.required {
    color: #DC3545;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid var(--border-gray);
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .header-top .container {
        justify-content: center;
        text-align: center;
    }
    
    .header-contact {
        margin-bottom: 10px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }
    h3 { font-size: 1.3rem; }
    
    .section {
        padding: 40px 0;
    }
    
    .phone-btn {
        justify-content: center;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }

.highlight {
    background-color: var(--accent-yellow);
    padding: 2px 6px;
    border-radius: 3px;
}

.badge-inline {
    background-color: var(--success-green);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}
