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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: static;
    width: 100%;
    z-index: 1000;
}

/* Sticky Navbar Enhancement */
.navbar.sticky-enabled {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
}

/* Centered Logo Section */
.logo-section {
    background: #000000;
    padding: 10px 0;
    text-align: center;
    border-bottom: 3px solid #dc2626;
}

.centered-logo {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.centered-logo img {
    height: 160px;
    width: auto;
    max-width: 600px;
    object-fit: contain;
    opacity: 1 !important;
    transition: none !important;
}

/* Reduce mobile logo height further for better above-the-fold */
@media (max-width: 768px) {
    .centered-logo img { height: 90px; }
}
@media (max-width: 480px) {
    .centered-logo img { height: 80px; }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-container .appointment-button {
    margin-left: auto;
    margin-right: auto;
}

/* Revert appointment button centering */
.nav-container .appointment-button { margin-left:0; margin-right:0; }
@media (max-width:768px){ .nav-container .appointment-button { margin:0; } }

.header-info {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
    justify-content: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Location link styling */
.location-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.location-link:hover .info-icon {
    background: #dc2626;
}

/* Phone link styling */
.phone-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.phone-link:hover .info-icon {
    background: #dc2626;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-label {
    font-size: 0.9rem;
    color: #dc2626;
    font-weight: 600;
}

.info-value {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.appointment-button {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.btn-appointment {
    background: #dc2626;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: inherit;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-appointment:hover,
.btn-appointment:focus,
.btn-appointment:active {
    background: #b91c1c;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.btn-appointment:visited {
    color: white;
}

.nav-menu-container {
    background: #f8f8f8;
    border-top: 1px solid #e0e0e0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 15px 0;
    transition: color 0.3s;
    border-bottom: 3px solid transparent;
    display: inline-flex;
    align-items: center;
}

.nav-menu a:hover {
    color: #dc2626;
    border-bottom-color: #dc2626;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    margin-left: 2px;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 280px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    list-style: none;
    margin: 0;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #e0e0e0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: none;
    letter-spacing: 0.3px;
    border-bottom: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #dc2626;
    padding-left: 30px;
}

.social-follow {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #666;
}

.social-follow span {
    font-weight: 500;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.social-icon:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

.cta-button {
    background: #dc2626;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #b91c1c;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    padding: 60px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 25px;
    line-height: 1.2;
    max-width: 500px;
}

.hero-text p {
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 35px;
    line-height: 1.6;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #dc2626;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #dc2626;
    padding: 15px 30px;
    text-decoration: none;
    border: 2px solid #dc2626;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #dc2626;
    color: white;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Features Section */
.features {
    background: #000000;
    padding: 80px 0;
}

.features h2 {
    color: white;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.2rem;
    font-weight: 700;
}

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

.feature-card {
    text-align: center;
    color: white;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0 40px 0;
    background: #ffffff;
}

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

.about-text h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-text p {
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 30px;
    line-height: 1.7;
}

.about-features {
    list-style: none;
    margin-bottom: 30px;
}

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #333333;
}

.about-features i {
    color: #dc2626;
    margin-right: 15px;
    font-size: 1.2rem;
}

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

.about-img-1, .about-img-2 {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-img-2 {
    margin-top: 40px;
}

/* Services Section */
.services {
    padding: 40px 0 100px 0;
    background: white;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-header p {
    font-size: 1.1rem;
    color: #333333;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid #000000;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #000000;
    margin-bottom: 15px;
}

.service-card p {
    color: #333333;
    line-height: 1.6;
}

/* Service card links */
.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card-link:hover,
.service-card-link:visited,
.service-card-link:active {
    text-decoration: none;
    color: inherit;
}

.service-card-link .service-card {
    cursor: pointer;
}

/* Premium Services Section */
.premium-services {
    background: #dc2626;
    padding: 60px 0;
    color: white;
}

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

.premium-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.premium-text p {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

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

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.premium-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Expert Section */
.expert-section {
    padding: 100px 0;
    background: #ffffff;
}

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

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

.expert-img-1 {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.expert-img-2 {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 40px;
}

.expert-text h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 25px;
    line-height: 1.2;
}

.expert-text p {
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 30px;
    line-height: 1.7;
}

.expert-features {
    list-style: none;
    margin-bottom: 30px;
}

.expert-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #333333;
}

.expert-features i {
    color: #dc2626;
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Projects Section */
.projects {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    text-align: center;
    position: relative;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #000000, #dc2626);
}

.projects h2 {
    font-size: 2.8rem;
    color: #000000;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
}

.projects p {
    font-size: 1.2rem;
    color: #444444;
    margin-bottom: 70px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
    border: 3px solid #000000;
    background: #ffffff;
}

.project-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.3);
    border-color: #dc2626;
}

.project-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
    background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%), 
                linear-gradient(-45deg, #f0f0f0 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, #f0f0f0 75%), 
                linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.project-card img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card img[loading="lazy"].loaded {
    opacity: 1;
}

.project-card:hover img {
    transform: scale(1.05);
}

/* Project overlay for captions */
.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.project-overlay h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

/* Add overlay effect */
.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.project-card:hover::after {
    opacity: 1;
}

/* CTA Section */
.cta-section {
    background: #000000;
    padding: 100px 0;
    color: white;
}

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

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.cta-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.7;
}

.cta-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Contact Section */
.contact {
    padding: 40px 0;
    background: #ffffff;
}

.contact-header {
    text-align: center;
    margin-bottom: 25px;
}

.contact-header h2 {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 8px;
}

.contact-header p {
    font-size: 0.95rem;
    color: #333333;
    margin-bottom: 0;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 6px;
    background: #fafafa;
    transition: all 0.2s ease;
}

.contact-item:hover {
    background: #f5f5f5;
    transform: translateY(-1px);
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.contact-item div {
    flex: 1;
}

.contact-item h4 {
    color: #dc2626;
    margin-bottom: 4px;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-item p {
    color: #444;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.contact-item a {
    color: #444;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: #dc2626;
}

.contact-form {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid #e5e5e5;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid #dc2626;
}

.contact-form-header h3 {
    margin: 0 0 4px 0;
    font-size: 1.3rem;
    color: #dc2626;
    font-weight: 600;
}

.contact-form-header p {
    margin: 0;
    color: #666;
    font-size: 0.85rem;
    line-height: 1.3;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
    margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 8px 10px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    font-family: inherit;
    background: #fafafa;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #dc2626;
    background: white;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 60px;
    line-height: 1.4;
}

.btn-submit {
    width: 100%;
    padding: 9px;
    background: #dc2626;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    background: #b91c1c;
    transform: translateY(-1px);
}

/* Service Area Section */
.service-area {
    padding: 60px 0;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.service-area-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
}

.service-area-text h3 {
    font-size: 1.8rem;
    color: #000000;
    text-align: center;
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
    max-width: 800px;
}

.service-area-map {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.service-area-map iframe {
    width: 100%;
    max-width: 800px;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 2px solid #dc2626;
}

.map-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 10;
}

.map-link {
    background: rgba(220, 38, 38, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.map-link:hover {
    background: rgba(185, 28, 28, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.map-link i {
    font-size: 0.7rem;
}

/* Service Area Responsive */
@media (max-width: 768px) {
    .service-area {
        padding: 40px 0;
    }
    
    .service-area-content {
        gap: 25px;
    }
    
    .service-area-text h3 {
        font-size: 1.4rem;
    }
    
    .service-area-map iframe {
        height: 300px;
        max-width: 100%;
    }
    
    .map-overlay {
        bottom: 8px;
        right: 8px;
    }
    
    .map-link {
        padding: 6px 10px;
        font-size: 0.75rem;
    }
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    height: 80px !important;
    width: auto !important;
    max-width: 250px !important;
    margin: 0 auto 20px auto !important;
    display: block !important;
    border-radius: 10px !important;
    object-fit: contain !important;
}

.footer-logo-text {
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    background: #dc2626;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.footer-spacer {
    height: 30px;
}

.footer-section p {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #dc2626;
}

.footer-section ul li i {
    margin-right: 10px;
    color: #dc2626;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #333333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #dc2626;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333333;
    color: #cccccc;
}

/* Contact Section Mobile Responsive */
@media (max-width: 768px) {
    .contact {
        padding: 15px 0;
    }
    
    .contact-header {
        margin-bottom: 10px;
    }
    
    .contact-header h2 {
        font-size: 1.5rem;
        margin-bottom: 3px;
    }
    
    .contact-header p {
        font-size: 0.85rem;
        margin-bottom: 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .contact-info {
        gap: 10px;
        padding: 12px;
    }
    
    .contact-item {
        gap: 8px;
        padding: 8px;
    }
    
    .contact-item i {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .contact-item h4 {
        font-size: 0.95rem;
        margin-bottom: 1px;
    }
    
    .contact-item p {
        font-size: 0.85rem;
    }
    
    .contact-form {
        padding: 12px;
        margin: 0;
    }
    
    .contact-form-header {
        margin-bottom: 8px;
        padding-bottom: 6px;
    }
    
    .contact-form-header h3 {
        font-size: 1.1rem;
        margin-bottom: 2px;
    }
    
    .contact-form-header p {
        font-size: 0.75rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 8px;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 8px 9px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .contact-form textarea {
        min-height: 50px;
    }
    
    .btn-submit {
        padding: 9px;
        font-size: 0.85rem;
        margin-top: 5px;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 16px;
    }
    
    .contact-form-header {
        margin-bottom: 20px;
        padding-bottom: 16px;
    }
}

/* Mobile Navigation Hamburger Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    color: #dc2626;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.mobile-menu-overlay.active {
    display: block;
}

/* Mobile Menu Panel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    color: #fff;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-close:hover {
    color: #dc2626;
}

.mobile-menu-nav {
    padding: 20px 0;
}

.mobile-menu-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-nav ul li {
    margin: 0;
}

.mobile-menu-nav ul li a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.mobile-menu-nav ul li a:hover {
    background: #dc2626;
    color: #fff;
    padding-left: 30px;
}

.mobile-menu-social {
    padding: 20px;
    border-top: 1px solid #e0e0e0;
    background: #f8f8f8;
}

.mobile-menu-social h4 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1rem;
}

.mobile-menu-social .social-links {
    display: flex;
    gap: 10px;
}

.mobile-menu-social .social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s;
}

.mobile-menu-social .social-links a:hover {
    background: #dc2626;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Centered Logo adjustments for mobile */
    .centered-logo {
        padding: 0 15px;
    }
    
    .centered-logo img {
        height: 120px;
        max-width: 400px;
    }
    
    .logo-section {
        padding: 5px 0;
    }
    
    .nav-container {
        height: auto;
        padding: 5px 10px;
        flex-direction: row;
        gap: 8px;
        justify-content: space-between;
        align-items: center;
    }
    
    .header-info {
        display: none; /* Hide contact info on mobile to save space */
    }
    
    .appointment-button {
        order: 0;
        margin: 0;
        flex-shrink: 0;
    }
    
    .btn-appointment {
        padding: 10px 15px;
        font-size: 0.8rem;
        letter-spacing: 0.3px;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu-container {
        display: none;
    }
    
    /* Mobile Dropdown Styles */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: #f0f0f0;
        min-width: auto;
        width: 100%;
        margin-top: 10px;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 10px 20px;
        border-bottom: 1px solid #e0e0e0;
        font-size: 0.9rem;
    }
    
    .dropdown-menu a:hover {
        background: #e8e8e8;
        padding-left: 20px;
    }
    
    .hero {
        padding: 10px 0 20px;
        min-height: 280px;
    }
    
    .hero-content,
    .about-content,
    .premium-content,
    .expert-content,
    .cta-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        max-width: 100%;
        margin-bottom: 8px;
    }
    
    .hero-text p {
        font-size: 0.95rem;
        max-width: 100%;
        margin-bottom: 12px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Tighten section padding for mobile */
    .features {
        padding: 20px 0;
    }
    
    .about {
        padding: 20px 0 2px 0;
    }
    
    .services {
        padding: 2px 0 5px 0;
    }
    
    .premium-services {
        padding: 5px 0 20px;
    }
    
    .expert-section {
        padding: 20px 0;
    }
    
    .projects {
        padding: 25px 0;
    }
    
    .cta-section {
        padding: 20px 0;
    }
    
    .contact {
        padding: 15px 0;
    }
    
    .service-area {
        padding: 20px 0;
    }
    
    .footer {
        padding: 20px 0 10px;
    }
    
    .services-header h2,
    .about-text h2,
    .premium-text h2,
    .expert-text h2,
    .cta-text h2 {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }
    
    .services-header p,
    .about-text p,
    .premium-text p,
    .expert-text p,
    .cta-text p {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .services-header {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .about-features {
        margin-bottom: 12px;
    }
    
    .about-features li {
        margin-bottom: 4px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    /* Tighter mobile spacing for feature cards */
    .features-grid {
        gap: 8px;
    }
    
    .feature-card {
        padding: 12px 10px;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 5px;
    }
    
    .feature-card p {
        margin-bottom: 0;
        line-height: 1.3;
        font-size: 0.9rem;
    }
    
    /* Services grid mobile optimization */
    .services-grid {
        gap: 8px;
        margin-top: 12px;
    }
    
    .service-card {
        padding: 15px 12px;
        min-height: 200px;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .service-card p {
        font-size: 0.85rem;
        margin-bottom: 0;
        line-height: 1.3;
    }
    
    .service-icon {
        margin-bottom: 10px;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-top: 10px;
    }
    
    .stat {
        text-align: center;
        padding: 5px;
    }
    
    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 1px;
    }
    
    .stat-label {
        font-size: 0.75rem;
        line-height: 1.1;
    }
    
    .about-images,
    .expert-images {
        grid-template-columns: 1fr;
    }
    
    .about-img-2,
    .expert-img-2 {
        margin-top: 0;
    }
    
    /* Projects mobile optimization */
    .projects {
        padding: 30px 15px;
    }
    
    .projects h2 {
        font-size: 1.6rem;
        margin-bottom: 8px;
        text-align: center;
    }
    
    .projects p {
        font-size: 0.85rem;
        margin-bottom: 25px;
        text-align: center;
        padding: 0 10px;
    }
    
    .projects-grid {
        display: block;
        padding: 0;
    }
    
    .project-card {
        width: 100%;
        max-width: 350px;
        margin: 0 auto 25px auto;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    
    .project-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 12px;
    }
    
    .project-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }
}

@media (max-width: 480px) {
    /* Extra mobile optimization for very small screens */
    .centered-logo img {
        height: 100px;
        max-width: 300px;
    }
    
    .nav-container {
        padding: 8px 10px;
    }
    
    .btn-appointment {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .hero {
        padding: 15px 0 30px;
        min-height: 300px;
    }
    
    .hero-text h1 {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }
    
    .hero-buttons {
        gap: 8px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 15px;
        font-size: 0.85rem;
        max-width: 260px;
    }
    
    /* Section padding for smallest screens */
    .features {
        padding: 15px 0;
    }
    
    .about {
        padding: 15px 0 1px 0;
    }
    
    .services {
        padding: 1px 0 3px 0;
    }
    
    .premium-services {
        padding: 3px 0 15px;
    }
    
    .expert-section {
        padding: 15px 0;
    }
    
    .projects {
        padding: 20px 0;
    }
    
    .cta-section {
        padding: 15px 0;
    }
    
    .contact {
        padding: 12px 0;
    }
    
    .service-area {
        padding: 15px 0;
    }
    
    .footer {
        padding: 15px 0 8px;
    }
    
    .services-header h2,
    .about-text h2,
    .premium-text h2,
    .expert-text h2,
    .cta-text h2 {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }
    
    .services-header p,
    .about-text p,
    .premium-text p,
    .expert-text p,
    .cta-text p {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    
    .services-header {
        margin-bottom: 10px;
    }
    
    .features-grid {
        gap: 6px;
    }
    
    .feature-card {
        padding: 10px 8px;
    }
    
    .services-grid {
        gap: 6px;
    }
    
    .service-card {
        padding: 12px 8px;
        min-height: 180px;
    }
    
    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .service-card p {
        font-size: 0.8rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .projects h2 {
        font-size: 1.5rem;
        margin-bottom: 4px;
    }
    
    .projects p {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .projects-grid {
        gap: 6px;
    }
    
    .project-card {
        max-width: 340px;
    }
    
    .project-card img {
        height: 180px;
    }
    
    /* Mobile menu adjustments for small screens */
    .mobile-menu {
        width: 260px;
        right: -260px;
    }
    
    .mobile-menu-header {
        padding: 15px;
    }
    
    .mobile-menu-nav ul li a {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .mobile-menu-social {
        padding: 15px;
    }
}

/* Blog Styles */
.blog-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    padding: 60px 0;
    text-align: center;
}

.blog-hero h1 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 20px;
    font-weight: 700;
}

.blog-hero p {
    font-size: 1.1rem;
    color: #333333;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-content {
    padding: 60px 0;
    background: #ffffff;
}

.blog-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 60px;
}

.blog-post {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #dc2626;
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content-area {
    padding: 30px;
}

.blog-content-area h2 {
    font-size: 1.5rem;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-excerpt {
    font-size: 1rem;
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-details {
    margin-bottom: 25px;
}

.blog-details h3 {
    color: #dc2626;
    font-size: 1.1rem;
    margin-bottom: 10px;
    margin-top: 20px;
}

.blog-details h3:first-child {
    margin-top: 0;
}

.blog-details ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.blog-details li {
    margin-bottom: 8px;
    line-height: 1.5;
    color: #333333;
}

.blog-details p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #333333;
}

.blog-cta {
    background: #000000;
    padding: 60px 0;
    border-radius: 10px;
    text-align: center;
    color: white;
}

.blog-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: white;
}

.blog-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Blog Mobile Responsive */
@media (max-width: 768px) {
    .blog-hero {
        padding: 30px 0;
    }
    
    .blog-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .blog-hero p {
        font-size: 0.95rem;
        padding: 0 20px;
    }
    
    .blog-content {
        padding: 30px 0;
    }
    
    .blog-grid {
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .blog-content-area {
        padding: 20px;
    }
    
    .blog-content-area h2 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .blog-excerpt {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .blog-details h3 {
        font-size: 1rem;
        margin-bottom: 8px;
        margin-top: 15px;
    }
    
    .blog-details ul {
        margin-bottom: 12px;
        padding-left: 16px;
    }
    
    .blog-details li {
        margin-bottom: 6px;
        font-size: 0.9rem;
    }
    
    .blog-details p {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .blog-cta {
        padding: 40px 20px;
    }
    
    .blog-cta h2 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .blog-cta p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
}

/* Image Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.modal-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(255,255,255,0.1);
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #dc2626;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(220, 38, 38, 0.8);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.modal-nav:hover {
    background-color: #dc2626;
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.modal-caption {
    text-align: center;
    color: #ffffff;
    font-size: 1.2rem;
    margin-top: 20px;
    padding: 10px;
}

.modal-counter {
    text-align: center;
    color: #ffffff;
    font-size: 1rem;
    margin-top: 10px;
    opacity: 0.8;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Make gallery images clickable */
.project-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

/* Button styles for contact triggers - ensure they inherit proper button styling */
.contact-modal-btn {
    cursor: pointer;
    border: inherit;
    font: inherit;
    text-decoration: none;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Service Area Section Enhancements */
.service-locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
    padding: 20px 0;
}

.location-column h4 {
    color: #dc2626;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    border-bottom: 2px solid #dc2626;
    padding-bottom: 8px;
}

.location-column ul {
    list-style: none;
    padding: 0;
}

.location-column li {
    padding: 8px 0;
    color: #333;
    font-weight: 500;
    border-bottom: 1px solid #eee;
    transition: color 0.3s ease;
}

.location-column li:hover {
    color: #dc2626;
    padding-left: 10px;
}

.service-commitment {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #dc2626;
    margin-top: 30px;
    font-style: italic;
    color: #555;
}

/* Responsive adjustments for service locations */
@media (max-width: 768px) {
    .service-locations {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .location-column {
        text-align: center;
    }
    
    .service-commitment {
        margin: 20px 0;
        padding: 15px;
    }
}

/* Enhanced Services Grid for 8 services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
}

/* Service card enhancements */
.service-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.15);
    border-color: #dc2626;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #991b1b, #7f1d1d);
}

.service-icon i {
    font-size: 2rem;
    color: #fff;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Collapsible (Read More) block */
.collapsible-block { position: relative; }
.collapsible-block[data-collapsed="true"] .collapsible-inner { max-height: 140px; overflow: hidden; position: relative; }
.collapsible-block[data-collapsed="true"] .collapsible-inner:after { content: ""; position: absolute; left:0; right:0; bottom:0; height:50px; background:linear-gradient(to bottom, rgba(255,255,255,0), #fff); }
.read-more-btn { margin-top:10px; background:#000; color:#fff; border:none; padding:8px 16px; font-size:0.85rem; border-radius:4px; cursor:pointer; font-weight:600; letter-spacing:.5px; }
.read-more-btn[aria-expanded="true"] { background:#dc2626; }
.read-more-btn:hover { background:#dc2626; }

/* Mobile Sticky Action Bar */
.mobile-action-bar { position:fixed; bottom:0; left:0; right:0; display:flex; justify-content:space-around; background:#111; padding:8px 6px 10px; z-index:999; box-shadow:0 -2px 10px rgba(0,0,0,.35); }
.mobile-action-bar a { flex:1; margin:0 5px; background:#dc2626; color:#fff; text-align:center; padding:10px 4px; border-radius:8px; font-size:.75rem; text-decoration:none; font-weight:600; display:flex; flex-direction:column; gap:4px; align-items:center; line-height:1.1; letter-spacing:.5px; }
.mobile-action-bar a i { font-size:1rem; }
.mobile-action-bar a:hover { background:#b91c1c; }
@media (min-width: 769px) { .mobile-action-bar { display:none; } }

/* Provide safe-area support for iOS */
.mobile-action-bar { padding-bottom: calc(env(safe-area-inset-bottom, 0) + 8px); }

/* Adjust bottom spacing so content not hidden behind action bar */
@media (max-width:768px){ body { padding-bottom:72px; } }
