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

:root {
    --primary-color: #d4af37;
    --primary-hover: #f5d76e;
    --mustard-yellow: #F5C842;
    --text-dark: #2c1810;
    --text-light: #e8e0d6;
    --bg-dark: #1a1a1a;
    --bg-medium: #2a2a2a;
    --bg-light: #3a3a3a;
    --bg-white: #ffffff;
    --border-color: rgba(212, 175, 55, 0.3);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b3d 50%, #3d2a4f 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
    overflow-x: hidden; /* Prevent horizontal scroll */
    width: 100%;
    max-width: 100vw; /* Ensure body doesn't exceed viewport */
    position: relative;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
    text-transform: uppercase;
}

.logo-text:hover {
    color: var(--primary-color);
}

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

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-divider {
    display: none;
}

/* Hero Section */
.hero {
    margin-top: 0;
    padding: 120px 24px;
    padding-top: 180px;
    /* Background image will be applied via JavaScript from images/Misc/ folder */
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.logo-container {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-image {
    max-width: 200px;
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.logo-the {
    color: #fff;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1px;
    position: absolute;
    top: calc(50% - 24px);
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0;
    text-transform: uppercase;
    white-space: nowrap;
}

.logo-monogram {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
    position: relative;
    z-index: 1;
}

.logo-company {
    color: #fff;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1px;
    position: absolute;
    top: calc(50% + 9px);
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero-title {
    color: var(--mustard-yellow);
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1.1;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Trust Section */
.trust-section {
    padding: 100px 24px;
    /* Background image will be applied via JavaScript from images/Misc/ folder */
    background-color: rgba(60, 60, 60, 0.6);
    background-image: linear-gradient(135deg, rgba(50, 50, 50, 0.7) 0%, rgba(40, 40, 40, 0.6) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    position: relative;
}

.trust-section .container {
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--mustard-yellow);
    letter-spacing: 1px;
    position: relative;
    z-index: 10;
    line-height: 1.2;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.trust-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.trust-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Services Section */
.services-section {
    padding: 100px 24px;
    background-color: rgba(0, 0, 0, 0.7);
    background-image: none;
    position: relative;
}

.services-section .container {
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 48px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: #000000;
    /* Background image will be applied via JavaScript from service-* folders */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 32px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--mustard-yellow);
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 1px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.service-card::after {
    display: none;
}

.service-card::before {
    display: none;
}

.service-card > * {
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9), 0 0 10px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

/* Gallery Section */
.gallery-section {
    padding: 50px 24px;
    background-color: rgba(0, 0, 0, 0.6);
    background-image: none;
    position: relative;
}

.gallery-section .container {
    position: relative;
    z-index: 2;
}

.carousel-section {
    margin-bottom: 40px;
}

.carousel-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-light);
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
}

.carousel-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--mustard-yellow);
    width: 100%;
    box-sizing: border-box;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0;
}

.carousel-item {
    min-width: 100%;
    flex-shrink: 0;
    height: 0;
    padding-bottom: 125%; /* 4:5 aspect ratio (5/4 = 1.25 = 125%) */
    display: block;
    background-color: rgba(0, 0, 0, 0.3);
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.carousel-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    display: block;
    border-radius: 12px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: 1px solid var(--mustard-yellow);
    width: 48px;
    height: 48px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    border-radius: 50%;
    display: flex;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation; /* Improve touch responsiveness */
    min-width: 44px; /* Minimum touch target size */
    min-height: 44px;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* CTA Section */
.cta-section {
    padding: 100px 24px;
    /* Background image will be applied via JavaScript from images/Misc/ folder */
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.6) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
    position: relative;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section .section-title {
    color: #fff;
}

.cta-text {
    font-size: 20px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.cta-button {
    background-color: var(--primary-color);
    color: #000;
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation; /* Improve touch responsiveness */
    min-height: 44px; /* Minimum touch target size */
    display: inline-block;
    margin: 0 auto;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    text-decoration: none;
    text-align: center;
}

.cta-button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
}

/* Footer */
.footer {
    background-color: #000;
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 24px 40px;
    text-align: center;
}

.footer-note {
    margin-top: 16px;
    color: var(--primary-color);
    font-size: 14px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: rgba(0, 0, 0, 0.95);
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.95) 100%);
    padding: 48px;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideDown 0.3s;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

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

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 28px;
    font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.modal-close:hover {
    color: var(--primary-color);
    background-color: rgba(212, 175, 55, 0.2);
}

.modal-content h2 {
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.modal-subtitle {
    margin-bottom: 32px;
    color: var(--primary-color);
    font-size: 16px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--text-light);
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(232, 224, 214, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.submit-button {
    width: 100%;
    background-color: var(--bg-dark);
    color: #fff;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 8px;
    margin-top: 8px;
}

.submit-button:hover {
    background-color: #000000;
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

/* About Page Styles */
.about-hero {
    padding-top: 160px;
    padding-bottom: 100px;
    padding-left: 24px;
    padding-right: 24px;
    background: #000000;
    /* Background image will be applied via JavaScript from images/Misc/ folder */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
    position: relative;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.page-title {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--mustard-yellow);
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0;
    margin: 0;
    white-space: normal;
    overflow: visible;
}

.about-content {
    padding: 100px 24px;
    background-color: rgba(0, 0, 0, 0.7);
    background-image: none;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.about-section {
    margin-bottom: 80px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.commitment-section {
    padding: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-light);
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.about-section p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.commitment-list {
    list-style: none;
    padding-left: 0;
    margin-top: 32px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.commitment-list li {
    padding: 20px;
    margin-bottom: 16px;
    background-color: rgba(0, 0, 0, 0.5);
    /* Background image will be applied via JavaScript from images/Misc/ folder */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-left: 4px solid var(--primary-color);
    font-size: 16px;
    line-height: 1.6;
    color: var(--mustard-yellow);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 8px rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.commitment-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: -1;
    pointer-events: none;
}

.commitment-list li > * {
    position: relative;
    z-index: 2;
    color: var(--mustard-yellow);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 8px rgba(0, 0, 0, 0.6);
}

.commitment-list li strong {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 8px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

.feature-card {
    background-color: #000000;
    padding: 32px;
    border-radius: 12px;
    border-top: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--mustard-yellow);
    transition: var(--transition);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-light);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.service-item {
    background: #000000;
    color: #fff;
    padding: 24px;
    text-align: center;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid var(--mustard-yellow);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.cta-box {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 48px;
    border-radius: 16px;
    text-align: center;
    margin-top: 48px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.cta-box h2 {
    margin-bottom: 24px;
}

.cta-box p {
    margin-bottom: 32px;
}

/* Responsive Design */
/* Tablet and below */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .carousel-container {
        max-width: 350px;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    html, body {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        position: relative;
    }
    
    * {
        max-width: 100%;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    .container {
        padding: 0 16px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    .header {
        padding: 12px 0;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    .header-content {
        flex-direction: column;
        gap: 12px;
        padding: 0 16px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        align-items: center;
        text-align: center;
    }

    .logo-text {
        font-size: 16px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        font-size: 13px;
    }
    
    .nav-link {
        font-size: 13px;
        padding: 6px 0;
    }

    .hero {
        padding: 100px 16px;
        padding-top: 140px;
        background-attachment: scroll; /* Better performance on mobile */
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
    
    .logo-container {
        margin-bottom: 12px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .logo-image {
        max-width: 120px;
        width: auto;
        height: auto;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: -0.5px;
        margin-bottom: 16px;
    }

    .hero-tagline {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .trust-section,
    .services-section,
    .gallery-section,
    .cta-section {
        padding: 60px 16px;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    .trust-section {
        background-size: 50%;
        background-position: calc(50% - 50px) center;
        background-attachment: scroll;
        background-repeat: no-repeat;
        min-height: 100%;
        background-size: cover, 225% auto;
    }
    
    .trust-text {
        font-size: 16px;
        line-height: 1.7;
        width: 100%;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .carousel-container {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
        padding: 0 8px;
    }
    
    .carousel-track {
        width: 100%;
        max-width: 100%;
    }
    
    .carousel-item {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .carousel-section {
        margin-bottom: 32px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
    }
    
    .carousel-title {
        font-size: 20px;
        margin-bottom: 12px;
        text-align: center;
        width: 100%;
        word-wrap: break-word;
    }

    .carousel-item {
        padding-bottom: 125%; /* Maintain 4:5 aspect ratio on mobile */
    }
    
    .carousel-item img {
        padding: 0;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
        background-color: rgba(0, 0, 0, 0.7);
        border: 1px solid var(--mustard-yellow);
    }

    .carousel-prev {
        left: 8px;
    }

    .carousel-next {
        right: 8px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 32px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0;
    }
    
    .service-card {
        font-size: 20px;
        padding: 20px 12px;
        letter-spacing: 0.5px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    .feature-card h3 {
        font-size: 18px;
    }
    
    .feature-card p {
        font-size: 15px;
    }

    .page-title {
        font-size: 32px;
    }

    .about-hero {
        padding-top: 160px;
        padding-bottom: 60px;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
        background-attachment: scroll; /* Better performance on mobile */
        margin-top: 0;
        overflow: visible;
    }
    
    .about-hero .container {
        padding: 0 20px;
        max-width: calc(100% - 40px);
        width: calc(100% - 40px);
        box-sizing: border-box;
        overflow: visible;
        margin: 0 auto;
    }
    
    .page-title {
        font-size: 26px;
        text-align: center;
        width: 100%;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        letter-spacing: 0px;
        white-space: normal;
        overflow: visible;
        display: block;
        line-height: 1.3;
    }
    
    .about-content {
        padding: 60px 16px;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }

    .about-section {
        margin-bottom: 48px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .about-section h2 {
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
        width: 100%;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .about-section p {
        font-size: 16px;
        line-height: 1.7;
        width: 100%;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .page-title {
        font-size: 32px;
        text-align: center;
        width: 100%;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .commitment-section {
        padding: 32px 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .commitment-list {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .commitment-list li {
        padding: 16px;
        font-size: 15px;
        margin-bottom: 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .features-grid {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .feature-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
    }
    
    .feature-card h3,
    .feature-card p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .cta-section {
        padding: 60px 16px;
    }
    
    .cta-text {
        font-size: 18px;
        margin-bottom: 24px;
    }
    
    .cta-button {
        padding: 14px 32px;
        font-size: 16px;
    }

    .modal-content {
        padding: 24px 20px;
        margin: 20px;
        max-width: calc(100% - 40px);
        max-height: calc(100vh - 40px);
        overflow-y: auto;
    }
    
    .modal h2 {
        font-size: 24px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px;
    }
    
    .submit-button {
        padding: 14px 32px;
        font-size: 16px;
    }
    
    .footer {
        padding: 40px 16px;
        text-align: center;
    }
    
    .footer p {
        font-size: 14px;
        margin-bottom: 8px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    html, body {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 12px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero {
        padding: 80px 12px;
        padding-top: 120px;
    }
    
    .hero-title {
        font-size: 28px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-tagline {
        font-size: 15px;
        word-wrap: break-word;
    }
    
    .section-title {
        font-size: 24px;
        text-align: center;
        word-wrap: break-word;
    }
    
    .trust-section {
        background-size: 50%;
        background-position: calc(50% - 50px) center;
        background-attachment: scroll;
        background-repeat: no-repeat;
        min-height: 100%;
        background-size: cover, 225% auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .service-card {
        font-size: 22px;
        padding: 24px 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
    }
    
    .carousel-container {
        max-width: 100%;
        width: 100%;
        padding: 0 4px;
    }
    
    .carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .carousel-prev {
        left: 4px;
    }
    
    .carousel-next {
        right: 4px;
    }
    
    .logo-image {
        max-width: 100px;
    }
    
    .nav-menu {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 12px;
    }
    
    .page-title {
        font-size: 28px;
        text-align: center;
        word-wrap: break-word;
    }
    
    .about-hero {
        padding-top: 140px;
        padding-bottom: 40px;
        padding-left: 0;
        padding-right: 0;
        margin-top: 0;
        overflow: visible;
    }
    
    .about-hero .container {
        padding: 0 16px;
        max-width: calc(100% - 32px);
        width: calc(100% - 32px);
        box-sizing: border-box;
        overflow: visible;
        margin: 0 auto;
    }
    
    .about-content {
        padding: 40px 12px;
    }
    
    .about-section {
        margin-bottom: 32px;
    }
    
    .about-section h2 {
        font-size: 22px;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .about-section p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .page-title {
        font-size: 20px;
        text-align: center;
        width: 100%;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        line-height: 1.3;
        letter-spacing: 0px;
        white-space: normal;
        overflow: visible;
        display: block;
    }
    
    .commitment-section {
        padding: 24px 12px;
    }
    
    .commitment-list li {
        padding: 12px;
        font-size: 14px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-card h3 {
        font-size: 16px;
    }
    
    .feature-card p {
        font-size: 14px;
    }
    
    .modal-content {
        padding: 20px 16px;
        margin: 10px;
        max-width: calc(100% - 20px);
        width: calc(100% - 20px);
        box-sizing: border-box;
    }
    
    .trust-text,
    .cta-text {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .footer {
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
    
    .footer p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}
