/* CSS Variables */
:root {
    --primary-color: #2c5f7f;
    --secondary-color: #b8860b;
    --primary-light: #4a7fa0;
    --secondary-light: #d4a84a;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #e0e0e0;
    --primary-rgb: 44, 95, 127;
    --primary-light-rgb: 44, 95, 127;
    --secondary-rgb: 184, 134, 11;
    --secondary-light-rgb: 212, 168, 74;
    
    /* Typography */
    --font-heading: 'Georgia', serif;
    --font-body: 'Arial', sans-serif;
    
    /* Responsive Font Sizes */
    --fs-h1: clamp(2rem, 5vw, 3.5rem);
    --fs-h2: clamp(1.75rem, 4vw, 2.5rem);
    --fs-h3: clamp(1.25rem, 3vw, 1.75rem);
    --fs-h4: clamp(1.1rem, 2.5vw, 1.4rem);
    --fs-h5: clamp(1rem, 2vw, 1.2rem);
    --fs-h6: clamp(0.9rem, 1.5vw, 1rem);
    --fs-body: 1rem;
    
    /* Container */
    --container-max-width: 1200px;
    --container-padding: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: 1.3rem; }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }
h6 { font-size: var(--fs-h6); }

p {
    font-size: var(--fs-body);
    margin-bottom: 1rem;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: var(--fs-body);
    font-weight: 600;
    text-align: center;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 127, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--secondary-light);
    border-color: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

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

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

.btn-outline-small {
    padding: 10px 24px;
    font-size: 0.95rem;
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.btn-block {
    width: 100%;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

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

.section-header p {
    color: var(--text-light);
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    transition: color 0.3s ease;
}

.top-bar-item:hover {
    color: var(--secondary-light);
}

.top-bar-item svg {
    flex-shrink: 0;
}

.top-bar-right {
    display: flex;
    gap: 0px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 50px;
    width: auto;
}

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

.nav-menu > li > a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu > li > a:hover::after {
    width: 100%;
}

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

.dropdown-arrow {
    display: inline-block;
    margin-left: 6px;
    vertical-align: middle;
    transition: transform 0.3s ease;
    width: 16px;
    height: 16px;
}

.dropdown:hover .dropdown-arrow,
.dropdown-menu.active ~ .dropdown-toggle .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

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

.dropdown-menu li {
    border-bottom: 1px solid var(--gray-medium);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    background: url('https://images.unsplash.com/photo-1615874959474-d609969a20ed?w=100%&h=100%&fit=crop" viewBox="0 0 1920 800"%3E%3Crect fill="%232c5f7f" width="1920" height="800"/%3E%3Cpath fill="%23b8860b" opacity="0.3" d="M0,400 L480,300 L960,450 L1440,250 L1920,400 L1920,800 L0,800 Z"/%3E%3C/svg%3E') center/cover;
    position: relative;
    padding: 100px 0;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 95, 127, 0.9) 0%, rgba(44, 95, 127, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.hero-left p {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.trust-point {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.trust-point svg {
    color: var(--secondary-color);
    flex-shrink: 0;
}

/* Lead Form */
.lead-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.lead-form h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--gray-medium);
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--gray-light);
}

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

.about-left {
    display: flex;
}

.about-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.about-right h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
}

.about-right p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Services Section */
.services {
    padding: 80px 0;
}

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

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-content {
    padding: 25px;
}

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

.service-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* CTA Sections */
.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-primary {
    background:
        linear-gradient(
            135deg,
            rgba(var(--primary-rgb), 0.9) 0%,
            rgba(var(--primary-light-rgb), 0.7) 100%
        ),
        url("https://images.unsplash.com/photo-1615875605825-5eb9bb5d52ac?w=100%&h=100%&fit=crop");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
}

.cta-secondary {
    background:
        linear-gradient(
            135deg,
            rgba(var(--primary-rgb), 0.9) 0%,
            rgba(var(--primary-light-rgb), 0.7) 100%
        ),
        url("https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?w=100%&h=100%&fit=crop");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
}

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

.cta-content h2 {
    color: var(--white);
    margin-bottom: 25px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* Why Choose Us Section */
.why-choose {
    padding: 80px 0;
    background-color: var(--gray-light);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.why-choose-left h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
}

.why-choose-left p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.why-choose-right {
    display: flex;
}

.why-choose-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

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

.feature {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: transform 0.3s ease;
}

.feature:hover .feature-icon {
    transform: scale(1.1);
}

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

.feature p {
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--gray-light);
}

.testimonials-slider {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-container {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

.testimonial {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex: 0 0 calc((100% - 60px) / 3);
    box-sizing: border-box;
}

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

.testimonial-stars {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--primary-color);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

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

.slider-btn.prev {
    left: 0px;
}

.slider-btn.next {
    right: 0px;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
}

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

.gallery-item {
    cursor: pointer;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 300px;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 95, 127, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: var(--gray-light);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px 60px 20px 25px;
    cursor: pointer;
    color: var(--primary-color);
    position: relative;
    transition: background-color 0.3s ease;
    margin-bottom: 0;
}

.faq-item.active .faq-question {
    margin-bottom: 0;
    background-color: var(--primary-color);
    color: var(--white);
}

.faq-item.active .faq-question::after {
    color: var(--white);
}

.faq-item.active {
    background-color: var(--primary-color);
}

.faq-item.active .faq-answer p {
    color: var(--white);
}

.faq-question:hover {
    background-color: var(--gray-light);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Areas We Serve Section */
.areas-serve {
    padding: 80px 0;
}

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

.areas-left {
    display: flex;
}

.areas-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.areas-right h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.areas-right p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.areas-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.areas-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.areas-list li a {
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.areas-list li a:hover {
    color: var(--primary-color);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--gray-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-left iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 8px;
}

.contact-right h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-right p {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 0;
}

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

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

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

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

.footer-logo img {
    height: 50px;
    width: auto;
}

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

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

.footer-social a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

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

.footer-contact li svg {
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: var(--secondary-color);
}

.business-hours {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.business-hours strong {
    display: block;
    margin-bottom: 10px;
}

.business-hours p {
    margin-bottom: 10px;
}

.business-hours .license {
    font-size: 0.85rem;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 4px;
    display: inline-block;
    font-weight: 600;
    margin-top: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-bottom a {
    color: var(--secondary-color);
    font-weight: 600;
}

.footer-bottom a:hover {
    color: var(--secondary-light);
}

/* Mobile Sticky Phone Button */
.mobile-phone-btn {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 16px 20px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    z-index: 999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.mobile-phone-btn:hover {
    background-color: var(--secondary-light);
}

.mobile-phone-btn svg {
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content,
    .about-content,
    .areas-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-choose-right {
        order: -1;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
    }
    
    .slider-btn.prev {
        left: 0px;
    }
    
    .slider-btn.next {
        right: 0px;
    }
}

@media (max-width: 768px) {
    /* Hide top bar on mobile */
    .top-bar {
        display: none;
    }
    
    /* Show mobile phone button */
    .mobile-phone-btn {
        display: flex;
    }
    
    /* Add padding to body for mobile phone button */
    body {
        padding-bottom: 70px;
    }
    
    /* Mobile padding adjustments */
    .hero {
        padding: 60px 0;
    }
    
    .services,
    .about,
    .why-choose,
    .features,
    .gallery,
    .faq,
    .areas-serve,
    .contact {
        padding: 40px 0;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .testimonials {
        padding: 40px 0;
    }
    
    /* Form group mobile margin */
    .form-group {
        margin-bottom: 10px;
    }
    
    /* Footer bottom padding mobile */
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom p {
        margin-bottom: 0;
    }
    
    /* Navigation mobile styles */
    .nav {
        position: fixed;
        top: 78px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .nav.active {
        transform: translateX(0);
    }
    
    .nav-menu {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }
    
    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid var(--gray-medium);
    }
    
    .nav-menu > li > a {
        display: block;
        padding: 15px 0;
    }
    
    /* Fix Services arrow alignment on mobile */
    .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        width: 100%;
    }
    
    /* Keep arrow inline and prevent line break */
    .dropdown-arrow {
        background-color: var(--primary-color);
        color: var(--white);
        border-radius: 4px;
        padding: 6px;
        width: 28px;
        height: 28px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-left: auto;
    }
    
    svg.dropdown-arrow {
        margin-left: 65%;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background-color: var(--gray-light);
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown-menu.active {
        max-height: 400px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .header-content .btn-primary {
        display: none;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .top-bar-left {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Gallery mobile - 2 columns, equal heights */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    /* Testimonials mobile - single column */
    .testimonial {
        flex: 0 0 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    /* Areas list mobile - 2 columns */
    .areas-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* FAQ mobile heading size */
    .faq-question {
        font-size: 1.1rem;
    }
    
    /* Form row mobile */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 15px;
    }
    
    .lead-form {
        padding: 25px 20px;
    }
    
    .btn {
        padding: 12px 24px;
    }
    
    .top-bar-item span {
        font-size: 0.85rem;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.feature,
.testimonial {
    animation: fadeInUp 0.6s ease-out;
}
