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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
    background-color: #fafafa;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0066cc 0%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loader-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Top Announcement Bar */
.announcement-bar {
    display: flex;
    width: 100%;
    background-color: #2c3e50;
    color: #fff;
    font-size: 0.875rem;
    z-index: 1001;
}

.announcement-left {
    flex: 1;
    background-color: #1a252f;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.announcement-left svg {
    color: #0066cc;
}

.announcement-right {
    flex: 1;
    background-color: #0066cc;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
}

.announcement-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.announcement-email a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.announcement-email a:hover {
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 0.5rem;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #1a252f;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: #2c3e50;
}

/* Header Styles */
.main-header {
    background: #000000;
    position: sticky;
    top: 0;
    z-index: 997;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.header-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
    pointer-events: auto;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-links li a {
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #0066cc, #004499);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 80%;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #fff;
    transform: translateY(-2px);
}

.nav-links li a.active {
    color: #fff;
    font-weight: 600;
}

/* Services Dropdown */
.nav-links li {
    position: relative;
}

.nav-links li.dropdown {
    position: relative;
}

.nav-links li.dropdown > a {
    position: relative;
}

.nav-links li.dropdown > a::after {
    content: '▼';
    font-size: 0.65rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    opacity: 0.8;
    display: inline-block;
}

.nav-links li.dropdown:hover > a::after {
    transform: rotate(180deg);
}

.services-dropdown {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #ffffff;
    min-width: 300px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
    z-index: 1001;
    padding: 0.5rem 0;
    list-style: none;
    overflow: hidden;
    border: 2px solid rgba(0, 0, 0, 0.08);
}

.nav-links li.dropdown:hover .services-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.services-dropdown li {
    margin: 0;
    padding: 0;
}

.services-dropdown a {
    display: flex;
    align-items: center;
    padding: 1.25rem 1.75rem;
    color: #000000 !important;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 4px solid transparent;
    font-weight: 700;
    font-size: 0.95rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.services-dropdown a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(0, 102, 204, 0.1), transparent);
    transition: width 0.3s ease;
}

.services-dropdown a:hover {
    background: linear-gradient(90deg, rgba(0, 102, 204, 0.08), rgba(0, 102, 204, 0.03));
    color: #0066cc;
    border-left-color: #0066cc;
    padding-left: 2rem;
    transform: translateX(4px);
}

.services-dropdown a:hover::before {
    width: 100%;
}

.services-dropdown a::after {
    display: none;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Mobile Menu */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    max-width: 85%;
    height: 100%;
    background-color: #fff;
    z-index: 999;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

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

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    padding: 0.5rem;
    z-index: 1000;
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
}

.mobile-nav-links {
    list-style: none;
    padding: 2rem 2rem 2rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 3rem;
}

.mobile-nav-links li {
    border-bottom: 1px solid #e5e7eb;
}

.mobile-nav-links li a {
    display: block;
    padding: 1.25rem 0;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.mobile-nav-links li a:hover,
.mobile-nav-links li a.active {
    color: #0066cc;
}

/* Mobile Dropdown/Submenu */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown > a {
    position: relative;
}

.mobile-dropdown > a::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.mobile-dropdown.active > a::after {
    transform: rotate(180deg);
}

.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #f8fafc;
    border-left: 3px solid #0066cc;
    margin-left: 1rem;
    margin-top: 0.5rem;
}

.mobile-dropdown.active .mobile-submenu {
    max-height: 200px;
    padding: 0.5rem 0;
}

.mobile-submenu li {
    border-bottom: none;
}

.mobile-submenu li a {
    padding: 0.875rem 1.5rem 0.875rem 2.5rem;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: none;
    display: block;
    position: relative;
}

.mobile-submenu li a::before {
    content: '→';
    position: absolute;
    left: 1rem;
    color: #0066cc;
    font-size: 0.8rem;
}

.mobile-submenu li a:hover,
.mobile-submenu li a.active {
    color: #0066cc;
    background-color: #e2e8f0;
    padding-left: 2.75rem;
}

.logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
    max-width: 250px;
}

.quote-btn {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: #fff;
    border: none;
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.quote-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.quote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.quote-btn:hover::before {
    left: 100%;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
    text-align: left;
    color: #fff;
    z-index: 10;
    max-width: 950px;
    width: 90%;
    padding: 2rem;
}

.hero-breadcrumb {
    font-size: 0.9rem;
    color: #0066cc;
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-heading {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    flex-direction: column;
    max-width: 900px;
}

.hero-heading-white {
    color: #fff;
    display: block;
    white-space: nowrap;
}

.hero-heading-red {
    color: #0066cc;
    display: block;
    white-space: nowrap;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #fff;
    line-height: 1.5;
    font-weight: 300;
    max-width: 600px;
}

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

.hero-cta-btn {
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.hero-cta-btn.contact-btn {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.hero-cta-btn.contact-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.hero-cta-btn.service-btn {
    background-color: #0066cc;
    color: #fff;
    border: 1px solid #0066cc;
}

.hero-cta-btn.service-btn:hover {
    background-color: #0052a3;
    border-color: #0052a3;
    transform: translateY(-2px);
}

/* Slider Navigation - Hidden for single video slide */
.slider-nav {
    display: none;
}

.slider-dots {
    display: none;
}

/* About Us Styles */
.about-us {
    padding: 3.125rem 2rem;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.about-us-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-us-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.1;
    background: linear-gradient(135deg, #0066cc 0%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-us-content > p {
    font-size: 1.15rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-us-content .quote-btn {
    margin-top: 1.5rem;
}

.about-us-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.about-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 3.125rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.why-choose-us-container {
    max-width: 1400px;
    margin: 0 auto;
}

.why-choose-us-section h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #1e293b;
    text-align: center;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.1;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #0066cc 0%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-choose-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

.why-choose-us-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 2rem;
    background: #fff;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.why-choose-us-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.15);
}

.why-choose-us-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #fff;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.why-choose-us-item:hover .why-choose-us-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.4);
}

.why-choose-us-icon svg {
    width: 40px;
    height: 40px;
}

.why-choose-us-item h3 {
    font-size: 1.4rem;
    color: #1e293b;
    margin-bottom: 0.75rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.3px;
}

.why-choose-us-item p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* Contact Us Section */
.contact-us-section {
    padding: 3.125rem 2rem;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
    color: #1a1a1a;
}

.contact-us-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-us-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-us-heading {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0066cc 0%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 1rem 0;
    text-transform: capitalize;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.contact-us-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-us-details p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.4;
}

.contact-us-details strong {
    color: #1e293b;
    font-weight: 600;
}

.contact-us-details a {
    color: #0066cc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    border-bottom: 2px solid transparent;
}

.contact-us-details a:hover {
    color: #0066cc;
    border-bottom-color: #0066cc;
}

.contact-us-details a:hover {
    color: #0066cc;
}

.map-placeholder {
    margin-top: 0.5rem;
}

.google-map-iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 8px;
}

.map-consent-box {
    background-color: #2a2a2a;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.map-info-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #555;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.map-consent-title {
    font-size: 1.3rem;
    color: #ccc;
    margin: 0 0 1rem 0;
    font-weight: 500;
}

.map-consent-text {
    font-size: 0.9rem;
    color: #999;
    margin: 0 0 1.5rem 0;
    line-height: 1.5;
}

.map-accept-btn {
    background-color: #3a3a3a;
    color: #ccc;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.map-accept-btn:hover {
    background-color: #4a4a4a;
}

.contact-us-right {
    display: flex;
    flex-direction: column;
}

.contact-form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    letter-spacing: -0.3px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    background-color: #fff;
    border: 1px solid #ddd;
    color: #333;
    padding: 0.875rem;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group select {
    cursor: pointer;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="date"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
    transform: translateY(-2px);
}

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.5;
    cursor: pointer;
    color: #2c3e50;
}

.required-note {
    font-size: 0.85rem;
    color: #666;
    margin: -0.5rem 0 0 0;
}

.contact-submit-btn {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 102, 204, 0.4);
}

.contact-submit-btn:hover::before {
    left: 100%;
}

/* Form Success Message */
.form-success-message {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    animation: slideInDown 0.4s ease-out;
    position: relative;
    overflow: hidden;
}

.form-success-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
}

.form-success-message .success-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.4s ease-out;
}

.form-success-message .success-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.form-success-message p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
    flex: 1;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.form-success-message {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.form-error-message {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #fff;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
    animation: slideInDown 0.4s ease-out;
    position: relative;
    overflow: hidden;
}

.form-error-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
}

.form-error-message .error-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.4s ease-out;
}

.form-error-message .error-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.form-error-message p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
    flex: 1;
}

.form-error-message {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Services Section */
/* Mission, Vision & Goals Section */
.mission-vision-section {
    padding: 3.125rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.3), transparent);
}

.mission-vision-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.mission-vision-header {
    text-align: center;
    margin-bottom: 2rem;
}

.mission-vision-tagline {
    font-size: 0.875rem;
    color: #0066cc;
    margin-bottom: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    padding-left: 1.5rem;
}

.mission-vision-tagline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 2px;
    background: #0066cc;
}

.mission-vision-header h2 {
    font-size: 3.5rem;
    margin: 0;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
    background: linear-gradient(135deg, #0066cc 0%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.mission-vision-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.mission-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #004499);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.mission-vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.15);
    border-color: rgba(0, 102, 204, 0.2);
}

.mission-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.vision-card {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

.goals-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.mission-vision-card-inner {
    padding: 3rem 2.5rem;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mission-vision-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 102, 204, 0.08);
    line-height: 1;
    font-family: 'Arial', sans-serif;
    letter-spacing: -2px;
}

.mission-vision-icon-wrapper {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.mission-vision-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.25);
    transition: all 0.4s ease;
    position: relative;
}

.mission-vision-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0066cc, #004499);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(8px);
}

.mission-vision-card:hover .mission-vision-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(0, 102, 204, 0.35);
}

.mission-vision-card:hover .mission-vision-icon::after {
    opacity: 0.6;
}

.mission-vision-icon svg {
    width: 32px;
    height: 32px;
}

.mission-vision-card h3 {
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
    color: #1e293b;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.mission-vision-card p {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.75;
    margin: 0;
    position: relative;
    z-index: 2;
}

.services-section {
    padding: 3.125rem 2rem;
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
}

.home-gallery-section {
    padding: 3.125rem 2rem;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.home-gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.home-gallery-button-wrapper {
    text-align: center;
    margin-top: 3rem;
}

.services-header {
    text-align: center;
    margin-bottom: 2rem;
}

.services-tagline {
    font-size: 1rem;
    color: #0066cc;
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.services-header h2 {
    font-size: 3rem;
    background: linear-gradient(135deg, #0066cc 0%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.2);
}

.service-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c3e50 0%, #1a1a1a 100%);
    background-size: cover;
    background-position: center;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-icon-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 10;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.4);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-overlay {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.5);
}

.service-icon-overlay svg {
    width: 28px;
    height: 28px;
}

.service-content {
    padding: 2.5rem 2rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 5;
}

.service-title {
    font-size: 1.75rem;
    color: #1e293b;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.service-description {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-btn {
    display: inline-block;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: #fff;
    padding: 0.875rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 10px;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    position: relative;
    overflow: hidden;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 102, 204, 0.4);
}

.service-btn:hover::before {
    left: 100%;
}

/* Team Section */
.team-section {
    padding: 3.125rem 2rem;
    background-color: #fff;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    font-weight: 800;
    background: linear-gradient(135deg, #0066cc 0%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-card {
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.team-card img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 4px solid #0066cc;
}

.team-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.team-card p {
    color: #666;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 3.125rem 2rem;
    background-color: #fff;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin: 0 0 1rem 0;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.1;
    background: linear-gradient(135deg, #0066cc 0%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.decorative-line {
    flex: 1;
    height: 1px;
    background-color: #d1d5db;
    max-width: 150px;
}

.decorative-dots {
    color: #9ca3af;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.subtitle-text {
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.google-reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    font-weight: 600;
    color: #5f6368;
    margin-bottom: 1.5rem;
}

.google-reviews-badge svg {
    width: 20px;
    height: 20px;
}

.testimonials-intro {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background-color: #fff;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.testimonial-stars-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars-top svg {
    width: 18px;
    height: 18px;
    filter: drop-shadow(0 1px 2px rgba(255, 184, 0, 0.3));
}

.testimonial-title {
    font-size: 1.25rem;
    color: #2c3e50;
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.5;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.testimonial-separator {
    width: 100%;
    height: 1px;
    background-color: #e5e7eb;
    margin: 1.5rem 0;
}

.testimonial-name {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.testimonial-location {
    font-size: 0.85rem;
    color: #9ca3af;
    margin: 0;
}

.testimonials-footer {
    text-align: center;
    margin-top: 3rem;
}

.review-google-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #0066cc;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.3);
}

.review-google-btn:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
}

.review-google-btn svg {
    width: 20px;
    height: 20px;
}

/* Contact Strip */
.contact-strip {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item {
    position: relative;
    z-index: 1;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: #0066cc;
    transition: all 0.3s ease;
}

.contact-item:hover svg {
    color: #004499;
    transform: scale(1.1);
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-item a {
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #0066cc;
    transform: translateX(5px);
}

.contact-item span {
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    padding: 4rem 2rem 1.5rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.footer-links li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-links li a:hover {
    color: #0066cc;
    padding-left: 8px;
    transform: translateX(3px);
}

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.hours-day {
    font-weight: 500;
    color: #ffffff;
}

.hours-time {
    color: rgba(255, 255, 255, 0.9);
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-address svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.footer-address p {
    margin: 0;
    line-height: 1.4;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.footer-social-icon {
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
}

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

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

.footer-bottom a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-bottom a {
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: #0066cc;
    text-decoration: underline;
}

.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.features-list li {
    margin-bottom: 0;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    border-left: 4px solid transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.features-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15);
}

.features-list li:hover::before {
    transform: scaleY(1);
}

.features-list li h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.features-list li p {
    color: #666;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .why-choose-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .mission-vision-grid {
        gap: 2rem;
    }

    .service-features-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .home-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .service-card {
        flex-direction: column;
    }

    .service-image-wrapper {
        height: 250px;
    }

    .service-content {
        padding: 2rem 1.5rem;
    }

    .mission-vision-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .mission-vision-card-inner {
        padding: 2rem 1.5rem;
    }

    .why-choose-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .damage-types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 968px) {
    .announcement-bar {
        flex-direction: column;
    }

    .announcement-left,
    .announcement-right {
        justify-content: center;
        padding: 0.5rem 1rem;
    }

    .header-nav {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0 1rem;
        position: relative;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 1;
    }

    .logo {
        order: 2;
        flex: 1;
        justify-content: center;
    }

    .nav-links {
        display: none;
    }

    .header-right {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .contact-us-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-us-heading {
        font-size: 2.5rem;
    }

    .about-us-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-choose-us-section {
        padding: 4rem 2rem;
    }

    .about-us,
    .contact-us-section,
    .about-us-page,
    .services-section,
    .home-gallery-section,
    .team-section,
    .testimonials-section,
    .quote-form-section,
    .contact-info-section,
    .mission-vision-section {
        padding: 3.125rem 2rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-vision-header h2 {
        font-size: 2.5rem;
    }

    .mission-vision-card-inner {
        padding: 2.5rem 2rem;
    }

    .mission-vision-number {
        font-size: 3rem;
        top: 1.5rem;
        right: 1.5rem;
    }

    .why-choose-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .why-choose-us-item {
        padding: 2rem 1.5rem;
    }

    .damage-types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .about-us-image {
        min-height: 300px;
    }

    .hero-heading {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .slide-content {
        padding: 1.5rem;
        width: 95%;
        left: 1rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta-btn {
        width: 100%;
        padding: 0.875rem 2rem;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .slider-nav.prev {
        left: 1rem;
    }

    .slider-nav.next {
        right: 1rem;
    }

}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr !important;
    }

    .services-header h2 {
        font-size: 2rem;
        line-height: 1.1;
    }

    .about-us-content h2 {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 0.75rem;
    }

    .service-content {
        padding: 2rem 1.5rem 1.5rem;
    }

    .testimonials-section h2 {
        font-size: 1.75rem;
        line-height: 1.1;
        margin-bottom: 0.75rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-section,
    .testimonials-section {
        padding: 3rem 1rem;
    }

    .testimonials-header {
        margin-bottom: 1rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .decorative-line {
        max-width: 80px;
    }

    .hero-slider {
        height: 70vh;
        min-height: 400px;
    }

    .hero-heading {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-breadcrumb {
        font-size: 0.8rem;
    }

    .hero-cta-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.85rem;
    }

    .contact-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .service-card {
        flex-direction: column;
    }

    .service-image-wrapper {
        height: 220px;
        width: 100%;
    }

    .service-content {
        padding: 2rem 1.5rem;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .service-description {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .team-section {
        padding: 2rem 1rem;
    }

    .team-section h2 {
        margin-bottom: 0.75rem;
        line-height: 1.1;
    }

    .team-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonials-section {
        padding: 2rem 1rem;
    }

    .testimonials-header {
        margin-bottom: 1.5rem;
    }

    .why-choose-us-section {
        padding-top: 2rem;
        margin-top: 2rem;
    }

    .why-choose-us-section h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.1;
    }

    .why-choose-us-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-choose-us-item {
        padding: 2rem 1.5rem;
    }

    .why-choose-us-icon {
        width: 70px;
        height: 70px;
    }

    .why-choose-us-icon svg {
        width: 32px;
        height: 32px;
    }

    .why-choose-us-item h3 {
        font-size: 1.2rem;
    }

    .why-choose-us-item p {
        font-size: 0.95rem;
    }

    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .contact-us-section,
    .about-us,
    .about-us-page,
    .services-section,
    .why-choose-us-section,
    .quote-form-section,
    .mission-vision-section {
        padding: 2.5rem 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .service-card {
        flex-direction: column;
    }

    .service-image-wrapper {
        height: 220px;
    }

    .service-content {
        padding: 2rem 1.5rem;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .service-description {
        font-size: 1rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mission-vision-header h2 {
        font-size: 2rem;
    }

    .mission-vision-card-inner {
        padding: 2rem 1.5rem;
    }

    .mission-vision-number {
        font-size: 2.5rem;
        top: 1.25rem;
        right: 1.25rem;
    }

    .mission-vision-icon {
        width: 60px;
        height: 60px;
    }

    .mission-vision-icon svg {
        width: 28px;
        height: 28px;
    }

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

    .mission-vision-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .damage-types-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .damage-type-item {
        padding: 1.5rem 1rem;
    }

    .damage-type-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }

    .damage-type-item h4 {
        font-size: 0.95rem;
    }

    .service-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-feature-item {
        padding: 1.5rem;
    }

    .service-feature-item h4 {
        font-size: 1.2rem;
    }

    .service-feature-item p {
        font-size: 0.95rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-vision-header h2 {
        font-size: 2.25rem;
    }

    .mission-vision-card-inner {
        padding: 2rem 1.5rem;
    }

    .mission-vision-number {
        font-size: 2.5rem;
        top: 1.25rem;
        right: 1.25rem;
    }

    .mission-vision-icon {
        width: 60px;
        height: 60px;
    }

    .mission-vision-icon svg {
        width: 28px;
        height: 28px;
    }

    .mission-vision-card h3 {
        font-size: 1.5rem;
    }

    .mission-vision-card p {
        font-size: 1rem;
    }

    .contact-us-heading {
        font-size: 2rem;
    }

    .contact-us-details p {
        font-size: 1rem;
    }

    .map-consent-box {
        padding: 1.5rem;
    }

    .map-consent-title {
        font-size: 1.1rem;
    }

    .map-consent-text {
        font-size: 0.85rem;
    }

    .google-map-iframe {
        height: 300px;
    }
}

/* Quote Info Box */
.quote-info-box {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    margin-top: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.quote-info-box h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0066cc 0%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quote-info-box ul {
    list-style: none;
    padding-left: 0;
    color: #64748b;
    line-height: 2;
}

.quote-info-box li {
    padding-left: 1.5rem;
    position: relative;
}

.quote-info-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Damage Types Section */
.damage-types-section {
    margin: 3.125rem 0;
}

.damage-types-section h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.15;
    position: relative;
    padding-left: 1.5rem;
    background: linear-gradient(135deg, #0066cc 0%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.damage-types-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #0066cc, #004499);
    border-radius: 2px;
}

.damage-types-intro {
    font-size: 1.15rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.damage-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.damage-type-item {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.damage-type-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
    border-color: #0066cc;
}

.damage-type-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
    filter: grayscale(0.3);
    transition: all 0.3s ease;
}

.damage-type-item:hover .damage-type-icon {
    filter: grayscale(0);
    transform: scale(1.1);
}

.damage-type-item h4 {
    font-size: 1.1rem;
    color: #1e293b;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .damage-types-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .damage-type-item {
        padding: 1.5rem 1rem;
    }

    .damage-type-icon {
        font-size: 2.5rem;
    }

    .damage-type-item h4 {
        font-size: 1rem;
    }

    .services-dropdown {
        left: auto;
        right: 0;
        transform: translateX(0) translateY(-10px);
        min-width: 220px;
    }

    .nav-links li.dropdown:hover .services-dropdown {
        transform: translateX(0) translateY(0);
    }
}

/* Quote Form Section */
.quote-form-section {
    padding: 3.125rem 2rem;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
    max-width: 900px;
    margin: 0 auto;
}

.quote-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.quote-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.quote-form-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
    line-height: 1.1;
    background: linear-gradient(135deg, #0066cc 0%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quote-form-subtitle {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.quote-form {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.quote-info-box li {
    margin-bottom: 0.5rem;
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-btn svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.call-btn {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
}

.call-btn:hover {
    background: linear-gradient(135deg, #0052a3 0%, #003366 100%);
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.5);
    animation: bounce 0.5s ease;
}

@keyframes bounce {
    0%, 100% { transform: scale(1.1) translateY(-2px); }
    50% { transform: scale(1.15) translateY(-4px); }
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #20ba5a 0%, #0f7a6d 100%);
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    animation: bounce 0.5s ease;
}

/* Responsive Floating Buttons */
@media (max-width: 600px) {
    .floating-buttons {
        bottom: 1.5rem;
        right: 1.5rem;
        gap: 0.75rem;
    }

    .floating-btn {
        width: 55px;
        height: 55px;
    }

    .floating-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* Page Header Section */
.page-header-section {
    background: linear-gradient(135deg, #0066cc 0%, #003366 50%, #000000 100%);
    padding: 5rem 2rem 3rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.page-header-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.page-header-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-header-section h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    text-transform: none;
    letter-spacing: -1px;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease;
}

.page-breadcrumb {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

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

/* About Us Page Styles */
.about-us-page {
    padding: 3.125rem 2rem;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.about-us-page-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-us-page-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.1;
    background: linear-gradient(135deg, #0066cc 0%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-us-page-content h3 {
    font-size: 2.5rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    position: relative;
    padding-left: 1.5rem;
    letter-spacing: -0.5px;
    line-height: 1.15;
    background: linear-gradient(135deg, #0066cc 0%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-us-page-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.about-us-page-content h4 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #334155;
    font-weight: 600;
}

.about-us-page-content > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-us-page-image {
    position: sticky;
    top: 100px;
}

.about-us-page-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Information Section */
.contact-info-section {
    padding: 3.125rem 2rem;
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
}

.contact-info-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.1;
    background: linear-gradient(135deg, #0066cc 0%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info-header p {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.15);
}

.contact-info-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.contact-info-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: #1e293b;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.contact-info-content {
    flex: 1;
}

.contact-info-content p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-info-card .hours-day {
    color: #1e293b;
    font-weight: 600;
}

.contact-info-card .hours-time {
    color: #0066cc;
    font-weight: 600;
}

.contact-info-card .hours-time.closed {
    color: #94a3b8;
}

.contact-info-content p:last-child {
    margin-bottom: 0;
}

.contact-info-content strong {
    color: #1e293b;
    font-weight: 600;
}

.hours-list {
    margin-bottom: 1.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 600;
    color: #ffffff;
    font-size: 1rem;
}

.hours-time {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.hours-time.closed {
    color: #ffffff;
}

.hours-note,
.location-note {
    font-size: 0.95rem;
    color: #94a3b8;
    font-style: italic;
    margin-top: 1rem;
    margin-bottom: 0;
}

.bring-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.bring-list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #64748b;
    line-height: 1.6;
    border-bottom: 1px solid #f1f5f9;
}

.bring-list li:last-child {
    border-bottom: none;
}

.bring-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
    font-size: 1.1rem;
}

.emergency-phone {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin: 1rem 0 !important;
}

.emergency-phone a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.emergency-phone a:hover {
    color: #004499;
}

.contact-cta-card {
    background: linear-gradient(135deg, #0066cc 0%, #000000 100%);
    border-radius: 20px;
    padding: 3.5rem 3rem;
    text-align: center;
    color: #fff;
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.3);
    margin-top: 2rem;
}

.cta-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-btn-primary,
.cta-btn-secondary {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-btn-primary {
    background: #fff;
    color: #0066cc;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    background: #f8fafc;
}

.cta-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 968px) {
    .contact-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .contact-info-card {
        padding: 2rem;
    }

    .contact-info-header h2 {
        font-size: 2.5rem;
    }

    .contact-cta-card {
        padding: 2.5rem 2rem;
    }

    .cta-content h3 {
        font-size: 2rem;
    }

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

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .contact-info-section {
        padding: 3rem 1rem;
    }

    .contact-info-header {
        margin-bottom: 2.5rem;
    }

    .contact-info-header h2 {
        font-size: 2rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

    .contact-cta-card {
        padding: 2rem 1.5rem;
    }

    .cta-content h3 {
        font-size: 1.75rem;
    }
}

.cta-section {
    background: linear-gradient(135deg, #0066cc 0%, #000000 100%);
    padding: 3.125rem 2.5rem;
    border-radius: 20px;
    margin-top: 3.125rem;
    text-align: center;
    color: #fff;
    box-shadow: 0 10px 40px rgba(0, 102, 204, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.cta-section h3,
.about-us-page-content .cta-section h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: #ffffff !important;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.15;
    position: relative;
    z-index: 1;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: unset !important;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.cta-section .quote-btn {
    margin-top: 2rem;
    display: inline-block;
    background: #fff;
    color: #0066cc;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.cta-section .quote-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* Service Detail Page Styles */
.service-detail-page {
    padding: 3.125rem 2rem;
    background-color: #fff;
}

.service-detail-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.service-detail-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-detail-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.1;
    background: linear-gradient(135deg, #0066cc 0%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-detail-content p {
    font-size: 1.15rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.service-feature-item {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 4px solid #0066cc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
    border-left-color: #0066cc;
    border-left-width: 5px;
}

.service-feature-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 700;
}

.service-feature-item p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.service-process {
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
    padding: 3.125rem 3rem;
    border-radius: 20px;
    margin: 3.125rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.service-process h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: -0.5px;
    line-height: 1.15;
    background: linear-gradient(135deg, #0066cc 0%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.process-step {
    text-align: center;
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
}

.process-step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover .process-step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.process-step h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
    font-weight: 700;
}

.process-step p {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

/* Gallery Page Styles */
.gallery-page {
    padding: 5rem 2rem;
    background-color: #fff;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Responsive Page Styles */
@media (max-width: 968px) {
    .page-header-section h1 {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 0.5rem;
    }

    .about-us-page-container {
        grid-template-columns: 1fr;
    }

    .about-us-page-image {
        position: static;
    }

    .service-detail-hero {
        grid-template-columns: 1fr;
    }

    .service-features-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .page-header-section {
        padding: 3rem 1rem 2rem;
    }

    .page-header-section h1 {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 0.5rem;
    }

    .about-us-page-content h2,
    .service-detail-content h2 {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 0.75rem;
    }

    .about-us-page-content h3 {
        font-size: 1.5rem;
        line-height: 1.15;
        margin-bottom: 0.75rem;
        margin-top: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .home-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
