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

body {
    font-family: 'Archivo', sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 0; /* Remove padding so header overlays hero */
}

/* Emergency Top Bar - Show on all devices */
.emergency-bar {
    position: relative;
    top: 0;
    z-index: 1000;
    background: #1a1a1a;
    padding: 14px 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0);
    opacity: 1;
    display: block;
    min-height: 0;
}

.emergency-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.emergency-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.emergency-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bbb-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bbb-badge {
    height: 40px;
    width: auto;
}

.bbb-text {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reviews-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars-small {
    color: #E3B55C;
    font-size: 14px;
    line-height: 1;
}

.rating-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

/* Tablet responsive */
@media (max-width: 1200px) {
    .emergency-left {
        gap: 16px;
    }
    
    .bbb-text, .rating-text {
        font-size: 11px;
    }
}

@media (max-width: 1000px) {
    /* Keep rating visible alongside BBB on tablet/mobile */
    .reviews-info {
        display: flex;
        align-items: center;
        gap: 8px;
    }
}

.emergency-text {
    color: #fff;
    font-family: 'Archivo', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.emergency-call-btn {
    background: #E53935; /* vibrant red */
    color: #fff;
    border: 0;
    border-radius: 0; /* sharp corners */
    padding: 12px 20px;
    font-family: 'Archivo', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 900;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none; /* remove glow */
    transition: background 0.2s ease;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-shadow: none;
    transform: none;
}

.emergency-call-btn:hover {
    background: #C62828; /* darker red on hover */
}

.emergency-call-btn:active {
    background: #B71C1C; /* deepest red on press */
}

/* Add subtle pulse animation to draw attention */
@media (min-width: 769px) {
    .emergency-call-btn { animation: none !important; }
}



/* Mobile emergency bar layout */
@media (max-width: 900px) {
    .emergency-bar {
        padding: 12px 20px;
        min-height: 0;
    }
    
    .emergency-inner {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .emergency-left {
        display: flex;
        order: 1;
        gap: 20px;
        align-items: center;
    }
    
    .emergency-right {
        order: 2;
        gap: 12px;
        align-items: center;
    }
    
    .bbb-info {
        gap: 6px;
    }
    
    .bbb-badge {
        height: 40px;
    }
    
    .bbb-text {
        font-size: 10px;
    }
    
    .reviews-info {
        gap: 6px;
    }
    
    .stars-small {
        font-size: 12px;
    }
    
    .rating-text {
        font-size: 10px;
    }
    
    .emergency-text {
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.8px;
    }
    
    .emergency-call-btn {
        padding: 12px 20px;
        font-size: 13px;
        border-radius: 0;
        font-weight: 900;
        letter-spacing: 0.8px;
        background: #E53935;
        color: #fff;
        box-shadow: none;
        transform: none;
        transition: background 0.2s ease;
        position: relative;
        overflow: hidden;
        animation: none !important;
    }
}

/* Very small mobile screens */
@media (max-width: 480px) {
    .emergency-bar {
        padding: 10px 16px;
        min-height: 0;
    }
    
    .emergency-left {
        gap: 16px;
    }
    
    .bbb-text {
        display: none;
    }
    
    .rating-text {
        font-size: 9px;
    }
    
    .emergency-text {
        font-size: 11px;
        text-align: center;
    }
    
    .emergency-call-btn {
        padding: 14px 24px;
        font-size: 14px;
        min-width: 120px;
        border-radius: 0;
        background: #E53935;
        color: #fff;
        box-shadow: none;
        font-weight: 900;
        text-shadow: none;
        transform: none;
        transition: background 0.2s ease;
        animation: none !important;
    }
}





/* Show emergency bar only on mobile */
@media (max-width: 768px) {
    .emergency-bar {
        display: block;
        padding: 10px 16px; 
    }
    
    .emergency-text { 
        font-size: 12px; 
        letter-spacing: .8px; 
    }
    
    .emergency-call-btn { 
        font-size: 13px; 
        padding: 10px 16px; 
        letter-spacing: 0.8px;
        border-radius: 0;
        font-weight: 900;
        background: #E53935;
        color: #fff;
        box-shadow: none;
        animation: none !important;
    }
}

/* Header Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes logoDropIn {
    0% {
        opacity: 0;
        transform: translate(0, -20px);
    }
    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

/* Hero Section with Integrated Header */
.hero-section {
    height: 100vh;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.6) 100%),
                url('https://res.cloudinary.com/dfpg7wqyu/image/upload/w_1400,h_800,c_fill,f_webp,q_85/v1756732142/1_nwskiy.webp') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    position: relative;
    color: #fff;
    background-attachment: fixed;
    margin-top: 0;
    padding-top: 0;
}

/* Force mobile image on all mobile devices */
@media only screen and (max-device-width: 768px) {
    .hero-section {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.6) 100%),
                    url('https://res.cloudinary.com/dfpg7wqyu/image/upload/v1758295172/Untitled_design_17_hnh0lb.webp') center/cover no-repeat !important;
        background-attachment: scroll !important;
        background-size: cover !important;
        -webkit-background-size: cover !important;
    }
}

/* Global resets to avoid stray white space */
html, body { 
    margin: 0; 
    padding: 0; 
}

/* Header stays fixed. Do NOT translate the whole header. */
#site-header {
    position: fixed; 
    top: 0; 
    left: 0; 
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                backdrop-filter 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Emergency bar collapse animation - height is set by JS */
#site-header.scrolled .emergency-bar {
    height: 0 !important;
    min-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    opacity: 0;
    overflow: hidden;
}

/* Visual treatment when scrolled */
#site-header.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Color swap when scrolled */
#site-header.scrolled .nav-links a,
#site-header.scrolled .social-icon,
#site-header.scrolled .phone-number { 
    color: #fff; 
}

/* Spacer is flow space equal to current header height */
#header-spacer { 
    height: 0; 
}

/* Make sure hero cannot cover header */
.hero-section { 
    position: relative; 
    z-index: 0; 
}


/* Main Navigation */
.main-nav {
    padding: 16px 60px;
    background: transparent;
    overflow: visible;
    transition: all 0.4s ease-in-out;
}

/* Force override any classes that might have white backgrounds when NOT scrolled */
.main-nav--sticky:not(.scrolled),
.main-nav:not(.scrolled),
.main-header:not(.scrolled),
.nav-container {
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
}

/* Legacy sticky styles removed - using new scroll behavior */

/* Sticky mobile adjustments */
@media (max-width: 900px) {
    .main-nav--sticky {
        padding: 10px 20px;
    }
}

.main-nav--sticky .nav-container {
    min-height: 40px;
}

.main-nav--sticky .logo-img {
    height: 38px;
}

.main-nav--sticky .nav-links a {
    color: #333;
    font-size: 12px;
    padding: 8px 12px;
}

.main-nav--sticky .nav-links a:hover {
    color: #E3B55C;
    background: rgba(227, 181, 92, 0.1);
}

.main-nav--sticky .social-icon {
    color: #666;
}

.main-nav--sticky .social-icon:hover {
    color: #E3B55C;
}

.main-nav--sticky .phone-number {
    color: #333;
    font-size: 14px;
}

.main-nav--sticky .phone-icon {
    color: #666;
}

.main-nav--sticky .phone-info {
    color: #333;
}

.main-nav--sticky .phone-info:hover {
    color: #E3B55C;
}

/* Sticky hamburger menu visibility */
.main-nav--sticky .mobile-menu-toggle .bar {
    background: #333;
}

.main-nav--sticky .mobile-menu-toggle:hover .bar {
    background: #E3B55C;
}

/* Sticky mobile menu adjustments */
.main-nav--sticky .logo {
    height: 40px;
}

.main-nav--sticky .logo-img {
    height: 36px;
}

.main-nav--sticky .mobile-menu-toggle {
    width: 40px;
    height: 40px;
}

.nav-container {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 60px;
    flex-wrap: nowrap;
    padding: 8px 0;
}

.logo {
    flex-shrink: 0;
    opacity: 0;
    transform: translate(0, -20px);
    animation: logoDropIn 2s cubic-bezier(.075,.82,.165,1) 1.2s forwards;
}

.logo-img {
    height: 46px;
    width: auto;
    transition: all 0.3s ease;
}

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

.nav-menu {
    display: flex;
    margin-left: 100px;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 42px;
}

.nav-links .item {
    position: relative;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.8px;
    transition: all 0.25s ease;
    position: relative;
    text-transform: uppercase;
    padding: 12px 16px;
    border-radius: 2px;
    font-family: 'Archivo', sans-serif;
}

.nav-links a:hover {
    color: #E3B55C;
    background: rgba(227, 181, 92, 0.1);
    transform: translateY(-1px);
}

/* Homepage Dropdown Styles */
.nav-item--has-children > a::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 8px;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

.nav-item--has-children:hover > a::after {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    border: 1px solid rgba(227, 181, 92, 0.2);
    padding: 15px 0;
    margin-top: 15px;
    z-index: 1000;
    list-style: none;
}

.nav-item--has-children:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    margin-top: 5px;
}

.nav-dropdown .item {
    display: block;
    margin: 0;
}

.nav-dropdown .item a {
    padding: 12px 25px;
    color: #333 !important;
    font-weight: 500;
    font-size: 14px;
    text-transform: none;
    letter-spacing: normal;
    border: none;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
}

.nav-dropdown .item a:hover {
    background: #f8f9fa !important;
    color: #E3B55C !important;
    border-left-color: #E3B55C;
    transform: none;
}

/* Sticky state dropdown adjustments */
.main-nav--sticky .nav-dropdown {
    background: rgba(255, 255, 255, 0.98);
}

.main-nav--sticky .nav-dropdown .item a {
    color: #333 !important;
}

.main-nav--sticky .nav-dropdown .item a:hover {
    color: #E3B55C !important;
}

/* Ultra-Professional Minimalist Mega Menu */
.nav-item--has-megamenu > a::after {
    content: "▾";
    font-size: 10px;
    margin-left: 8px;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.nav-item--has-megamenu:hover > a::after {
    opacity: 1;
    transform: translateY(1px);
}

.nav-megamenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    min-width: 900px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
    border-radius: 8px;
    margin-top: 12px;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(20px);
}

.nav-item--has-megamenu:hover .nav-megamenu {
    opacity: 1;
    visibility: visible;
    margin-top: 4px;
}

.megamenu-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 40px;
    gap: 48px;
}

.region-section {
    min-width: 0;
}

.region-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.region-toggle {
    display: none; /* Hidden on desktop */
}

/* Desktop region title - visible and styled */
.region-header > .region-title {
    font-family: 'Archivo', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #2d2d2d;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    line-height: 1;
    display: block;
}

/* Region title inside button (mobile only) */
.region-toggle .region-title {
    display: none; /* Hidden inside button on desktop */
}

.region-arrow {
    display: none; /* Hidden on desktop */
}

.region-divider {
    display: none;
}

.counties-grid {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.county-item {
    display: block;
    padding: 16px 0;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
    position: relative;
}

.county-item::before,
.county-item::after {
    display: none;
}

.county-item:hover {
    border-bottom-color: rgba(227, 181, 92, 0.2);
    transform: none;
    box-shadow: none;
    background: none;
}

.county-icon {
    display: none;
}

.county-name {
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    margin: 0 0 4px 0;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.county-subtitle {
    font-size: 13px;
    color: #888888;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.county-item:hover .county-name {
    color: #E3B55C;
}

.county-item:hover .county-subtitle {
    color: #666666;
}

/* Ultra-clean focus states */
.county-item:focus {
    outline: 2px solid rgba(227, 181, 92, 0.3);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Sticky state mega menu adjustments */
.main-nav--sticky .nav-megamenu {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.06);
}

/* Responsive adjustments for ultra-clean mega menu */
@media (max-width: 1200px) {
    .nav-megamenu {
        min-width: 780px;
    }
    
    .megamenu-content {
        gap: 40px;
        padding: 36px;
    }
}

@media (max-width: 1024px) {
    .nav-megamenu {
        min-width: 600px;
    }
    
    .megamenu-content {
        grid-template-columns: 1fr 1fr;
        padding: 32px;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .nav-megamenu {
        min-width: 480px;
    }
    
    .megamenu-content {
        grid-template-columns: 1fr 1fr;
        padding: 28px;
        gap: 32px;
    }
    
    .region-header {
        margin-bottom: 16px;
        padding-bottom: 12px;
    }
    
    .region-title {
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    .county-item {
        padding: 14px 0;
    }
    
    .county-name {
        font-size: 15px;
    }
    
    .county-subtitle {
        font-size: 12px;
    }
}

@media (max-width: 600px) {
    .nav-megamenu {
        min-width: calc(100vw - 32px);
        left: 50%;
        transform: translateX(-50%);
        margin-left: 16px;
        margin-right: 16px;
    }
    
    .megamenu-content {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 28px;
    }
    
    .region-header {
        margin-bottom: 14px;
        padding-bottom: 10px;
    }
    
    .region-title {
        font-size: 11px;
        letter-spacing: 0.8px;
    }
    
    .county-item {
        padding: 12px 0;
    }
    
    .county-name {
        font-size: 14px;
    }
    
    .county-subtitle {
        font-size: 11px;
    }
}


.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
    overflow: visible;
    flex-shrink: 0;
    min-width: 0;
    margin-left: auto;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
}

.social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-icon {
    color: #fff;
    transition: all 0.25s ease;
    padding: 4px;
    border-radius: 50%;
}

.social-icon:hover {
    opacity: 1;
    color: #E3B55C;
    transform: translateY(-2px) scale(1.1);
    background: rgba(255, 255, 255, 0.05);
}

.social-icon:hover {
    color: #E3B55C;
}

.phone-section {
    display: flex;
    align-items: center;
    gap: 18px;
    height: auto;
    overflow: visible;
    flex-shrink: 0;
    min-width: 0;
    position: relative;
    padding: 8px 0;
}

.phone-section::before {
    content: '';
    width: 3px;
    height: calc(100% - 8px);
    min-height: 40px;
    background: #FFD700;
    margin-right: 18px;
    flex-shrink: 0;
    align-self: center;
}

.phone-divider-svg {
    display: none;
}

.phone-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
}

.phone-info:hover {
    color: #E3B55C;
}

.phone-icon {
    color: #fff;
}

.phone-number {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.8px;
    opacity: 1;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-family: 'Archivo', sans-serif;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.phone-number:hover {
    color: #E3B55C;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle .bar {
    width: 20px;
    height: 2px;
    background: #fff;
    margin: 2.5px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Mobile hamburger bars - white initially, dark when scrolled */
@media (max-width: 900px) {
    .mobile-menu-toggle .bar {
        background: #fff;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }
    
    .main-header.scrolled .mobile-menu-toggle .bar {
        background: #fff;
        box-shadow: none;
    }
}

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

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

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

/* Hero Content */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 60px;
    padding-right: clamp(20px, 7vw, 100px);
    max-width: 1400px;
    margin-top: -50px;
    position: relative;
}

.cta-reviews-container {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    margin-top: 8px;
}

.service-badge {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.6px;
    margin-bottom: 28px;
    display: inline-block;
    width: fit-content;
    border-radius: 6px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.hero-title {
    font-family: 'Archivo', sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    max-width: 800px;
    word-spacing: normal;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.92;
    line-height: 1.5;
    letter-spacing: 0.01em;
    max-width: 700px;
}

.hero-emergency-text {
    font-size: 13px;
    font-weight: 700;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    opacity: 1;
    text-align: left;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.cta-button {
    background: #ffffff;
    color: #000;
    border: none;
    padding: 18px 40px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: background 0.1s ease;
    border-radius: 0;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 0;
    margin-right: 40px;
    display: inline-block;
    vertical-align: middle;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.reviews-section {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 0;
    position: relative;
    vertical-align: middle;
}

.stars {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

.star {
    color: #E3B55C;
    font-size: 16px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.star.half {
    position: relative;
    overflow: hidden;
}

.star.half::after {
    content: '★';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    overflow: hidden;
    color: rgba(227, 181, 92, 0.3);
}

.reviews-text {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.8px;
    opacity: 0.85;
    text-transform: uppercase;
    white-space: nowrap;
}


/* Responsive Design - Gradual Breakpoints */



/* Tablet/smaller desktop layout at 1280px - hamburger menu with phone and social icons */
@media (max-width: 1280px) {
    /* Show hamburger menu */
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
        position: relative;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 8px;
        background: none;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle:hover {
        background: rgba(0, 0, 0, 0.05);
        border-radius: 8px;
    }
    
    /* Hide navigation menu items */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100vh;
        width: 100%;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.96);
        justify-content: center;
        align-items: center;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(20px);
        z-index: 1000;
        margin-left: 0;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .nav-links a {
        font-size: 20px;
        padding: 12px 24px;
        border-radius: 4px;
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover {
        background: rgba(227, 181, 92, 0.1);
        transform: translateY(0);
    }

    /* Hamburger menu: make hovered items black on white for visibility */
    .nav-menu.active .nav-links > .item > a:hover {
        color: #000 !important;
        background: #fff !important;
    }
    .nav-menu.active .nav-dropdown .item a:hover {
        color: #000 !important;
        background: #fff !important;
        border-left-color: #E3B55C;
    }

    /* Mobile overlay: show dropdown items expanded for clearer hierarchy */
    .nav-menu .nav-item--has-children > a::after { display: none; }
    .nav-menu .nav-dropdown {
        position: static !important;
        top: auto; left: auto; transform: none !important;
        background: transparent !important;
        backdrop-filter: none !important;
        min-width: 0;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        border: 0 !important;
        padding: 6px 0 0 0;
        margin: 0;
        display: block !important;
    }
    .nav-menu a:focus-visible {
        outline: 2px solid rgba(227,181,92,.85);
        outline-offset: 2px;
        border-radius: 6px;
    }
    .nav-menu .nav-dropdown .item a {
        color: rgba(255,255,255,.85) !important; /* subtler */
        font-size: 15px; /* smaller to signal sub-level */
        font-weight: 500;
        text-transform: none;
        letter-spacing: .2px;
        padding: 10px 22px 10px 42px; /* deeper indent */
        border-radius: 6px;
        border-left: 2px solid transparent; /* subtle left accent on hover */
    }
    .nav-menu .nav-dropdown .item a:hover {
        background: rgba(227,181,92,.10);
        color: #E3B55C;
        border-left-color: #E3B55C;
    }

    /* Mobile Ultra-Professional Collapsible Mega Menu */
    .nav-menu .nav-item--has-megamenu > a::after { display: none; }
    .nav-menu .nav-megamenu {
        position: static !important;
        top: auto; left: auto; transform: none !important;
        background: transparent !important;
        min-width: 0;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        border: 0 !important;
        padding: 8px 0 0 0;
        margin: 0;
        display: block !important;
        border-radius: 0;
        backdrop-filter: none !important;
    }
    
    .nav-menu .megamenu-content {
        display: block;
        grid-template-columns: none;
        gap: 0;
        padding: 0;
    }
    
    .nav-menu .region-section {
        margin-bottom: 8px;
    }
    
    .nav-menu .region-header {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }
    
    /* Professional Mobile Region Toggle */
    .nav-menu .region-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        background: transparent;
        border: none;
        padding: 16px 22px;
        cursor: pointer;
        border-bottom: 1px solid rgba(255,255,255,.08);
        transition: all 0.2s ease;
        position: relative;
    }
    
    .nav-menu .region-toggle:hover {
        background: rgba(227,181,92,.05);
        border-bottom-color: rgba(227,181,92,.15);
    }
    
    .nav-menu .region-title {
        color: rgba(255,255,255,.9) !important;
        font-size: 14px;
        margin: 0;
        padding: 0;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        font-weight: 600;
        text-align: center;
    }
    
    .nav-menu .region-arrow {
        position: absolute;
        right: 22px;
        color: rgba(255,255,255,.6);
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }
    
    .nav-menu .region-toggle[aria-expanded="true"] .region-arrow {
        transform: rotate(180deg);
        color: rgba(227,181,92,.8);
    }
    
    .nav-menu .region-divider {
        display: none;
    }
    
    /* Collapsible Counties Grid */
    .nav-menu .counties-grid {
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-menu .region-section.expanded .counties-grid {
        max-height: 400px;
    }
    
    .nav-menu .county-item {
        display: block;
        background: transparent !important;
        border: none !important;
        padding: 12px 32px;
        border-radius: 0;
        margin-bottom: 0;
        border-bottom: 1px solid rgba(255,255,255,.03);
        transition: all 0.2s ease;
        text-align: center;
    }
    
    .nav-menu .county-item:hover {
        background: rgba(227,181,92,.06) !important;
        transform: none;
        box-shadow: none !important;
        border-bottom-color: rgba(227,181,92,.1) !important;
    }
    
    .nav-menu .county-icon {
        display: none;
    }
    
    .nav-menu .county-name {
        color: rgba(255,255,255,.8) !important;
        font-size: 14px;
        font-weight: 500;
        margin: 0 0 3px 0;
        line-height: 1.3;
    }
    
    .nav-menu .county-item:hover .county-name {
        color: #E3B55C !important;
    }
    
    .nav-menu .county-subtitle {
        color: rgba(255,255,255,.5) !important;
        font-size: 11px;
        font-weight: 400;
        margin: 0;
        line-height: 1.4;
    }
    
    .nav-menu .county-item:hover .county-subtitle {
        color: rgba(255,255,255,.65) !important;
    }
    
    /* Keep phone number and social icons visible */
    .nav-right {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-right: 40px; /* Add more space from hamburger menu */
    }
    
    .social-icons {
        display: flex;
        gap: 10px;
        align-items: center;
    }
    
    .phone-section::before {
        content: '';
        width: 3px;
        height: calc(100% - 8px);
        min-height: 36px;
        background: #FFD700;
        margin-right: 18px;
        flex-shrink: 0;
        align-self: center;
    }
    
    /* Hamburger bars styling for 1280px breakpoint */
    .mobile-menu-toggle .bar {
        width: 20px;
        height: 2px;
        background: #fff;
        margin: 2.5px 0;
        transition: all 0.3s ease;
        border-radius: 1px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }
    
    /* When header is scrolled, hamburger bars stay white on dark background */
    .main-header.scrolled .mobile-menu-toggle .bar {
        background: #fff;
    }
    
    /* Vertically center nav items when scrolled at 1280px breakpoint */
    .main-header.scrolled .nav-container {
        align-items: center;
        min-height: 64px;
        padding: 8px 0;
    }
}

/* Hide social media icons when phone number starts to break */
@media (max-width: 1420px) and (min-width: 1281px) {
    .social-icons {
        display: none;
    }
    
    .phone-section::before {
        display: none;
    }
    
    .nav-right {
        gap: 0;
    }
}

/* These breakpoints are now handled by the 1280px responsive layout above */

/* Mobile Layout - Full mobile menu */
@media (max-width: 900px) {
    /* Mobile header - transparent initially, white when scrolled */
    .main-header {
        background: transparent;
    }
    
    .main-header.scrolled {
        background: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .main-header.scrolled .nav-container {
        align-items: center;
        min-height: 64px;
        padding: 8px 0;
    }
    
    .main-nav {
        padding: 12px 20px;
        min-height: 56px;
        background: transparent;
    }
    
    .nav-container {
        justify-content: space-between;
        min-height: 50px;
        align-items: center;
        padding: 6px 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
        position: relative;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        padding: 8px;
        background: none;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle:hover {
        background: rgba(0, 0, 0, 0.05);
        border-radius: 8px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100vh;
        width: 100%;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.96);
        justify-content: center;
        align-items: center;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(20px);
        z-index: 1000;
        margin-left: 0;
        overflow-y: auto;
    }
    
    .hero-section {
        background-attachment: scroll !important;
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)), url('https://res.cloudinary.com/dfpg7wqyu/image/upload/v1758295172/Untitled_design_17_hnh0lb.webp') center/cover no-repeat !important;
        background-size: cover !important;
        background-position: center center !important;
        padding: 140px 0 100px;
        min-height: 100vh;
    }

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

    .nav-links {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .nav-links a {
        font-size: 20px;
        padding: 12px 24px;
        border-radius: 4px;
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover {
        background: rgba(227, 181, 92, 0.1);
        transform: translateY(0);
    }

    .nav-right {
        display: none;
    }
    
    .main-nav {
        padding: 12px 20px;
    }
    
    .logo {
        display: flex;
        align-items: center;
        height: 46px;
        opacity: 1;
        transform: none;
        animation: none;
    }
    
    .logo-img {
        height: 42px;
        filter: none;
        transition: all 0.3s ease;
    }
    
    .hero-content {
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 60px;
    }

    .service-badge {
        margin-bottom: 32px;
        font-size: 10px;
        padding: 10px 18px;
        letter-spacing: 1.4px;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 20px;
        line-height: 1.1;
        max-width: 100%;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 13px;
    }
    
    .logo-img {
        height: 42px;
    }
}

/* About Section Responsive */
@media (max-width: 1100px) {
    .about-content {
        gap: 60px;
    }
    
    .about-stats {
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .about-section {
        padding: 80px 20px !important;
        width: 100%;
        box-sizing: border-box;
    }
    
    .about-container {
        padding-right: 0 !important;
        padding-left: 0 !important;
        max-width: 100%;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Even smaller mobile */
    .about-image {
        max-width: 300px;
    }
    
    .image-container {
        max-width: 300px;
    }
    
    .about-title {
        font-size: 32px;
        margin-bottom: 24px;
    }
    
    .about-stats {
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .image-container {
        transform: none;
        border-radius: 16px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        width: 100%;
    }
    
    .image-container:hover {
        transform: none;
    }
    
    .about-photo {
        border-radius: 16px;
        width: 100%;
    }
}

/* Small mobile screens */
@media (max-width: 768px) {
    .hero-section {
        background: linear-gradient(rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.40)), url('https://res.cloudinary.com/dfpg7wqyu/image/upload/v1758295172/Untitled_design_17_hnh0lb.webp') center/cover no-repeat !important;
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
        padding: 150px 0 110px;
    }
}

/* iOS Safari specific fixes */
@media only screen and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 1) {
    .hero-section {
        background: linear-gradient(rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.40)), url('https://res.cloudinary.com/dfpg7wqyu/image/upload/v1758295172/Untitled_design_17_hnh0lb.webp') center/cover no-repeat !important;
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
        -webkit-background-size: cover !important;
    }
}

/* Very small mobile screens */
@media (max-width: 480px) {
    .hero-section {
        background: linear-gradient(rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.40)), url('https://res.cloudinary.com/dfpg7wqyu/image/upload/v1758295172/Untitled_design_17_hnh0lb.webp') center/cover no-repeat !important;
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
        -webkit-background-size: cover !important;
        padding: 120px 0 80px;
        min-height: 100vh;
    }

    .hero-content {
        margin-top: 50px;
    }

    .service-badge {
        margin-bottom: 28px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.1;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 12px;
    }
}

/* Very small mobile screens */
@media (max-width: 600px) {
    .main-nav {
        padding: 8px 16px;
        min-height: 52px;
    }
    
    .nav-container {
        min-height: 46px;
        padding: 4px 0;
        align-items: center;
    }
    
    .logo-img {
        height: 38px;
    }
    
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        padding: 6px;
    }
    
    
    .about-section {
        padding: 60px 20px !important;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .about-description {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .trust-signals {
        flex-direction: column;
        gap: 16px;
        margin-top: 32px;
    }
    
    .trust-item {
        min-width: 100%;
        padding: 20px 16px;
        gap: 16px;
    }
    
    .trust-badge {
        min-width: 50px;
        height: 50px;
    }
    
    .trust-badge .badge-image {
        height: 50px;
        max-width: 50px;
    }
    
    .trust-badge svg {
        width: 50px;
        height: 50px;
    }
    
    .trust-text h4 {
        font-size: 15px;
        margin-bottom: 4px;
    }
    
    .trust-text p {
        font-size: 12px;
        line-height: 1.3;
    }
}

/* Trust Signals - Tablet/Medium Screen Adjustments */
@media (max-width: 900px) and (min-width: 601px) {
    .trust-signals {
        gap: 20px;
    }
    
    .trust-item {
        min-width: calc(50% - 10px);
        padding: 22px 18px;
    }
    
    .trust-badge {
        min-width: 55px;
        height: 55px;
    }
    
    .trust-badge .badge-image {
        height: 55px;
        max-width: 55px;
    }
    
    .trust-badge svg {
        width: 55px;
        height: 55px;
    }
}

/* About Section */
.about-section {
    width: 100%;
    background: #fff;
    padding: 100px clamp(20px, 16vw, 225px);
    margin: 0;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding-right: clamp(0px, 7vw, 100px);
}



.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px 80px;
    align-items: start;
    width: 100%;
}

.about-header {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
}

.about-text {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
}

.about-image {
    grid-column: 2;
    grid-row: 1 / 3;
    width: 100%;
    height: fit-content;
}

.image-container {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: all 0.3s ease;
}

.image-container:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Mobile layout - clean break */
@media (max-width: 1400px) {
    .about-container {
        padding-right: 0 !important;
        padding-left: 0 !important;
        max-width: 100%;
    }
    
    .about-content {
        display: flex !important;
        flex-direction: column;
        gap: 40px;
        text-align: center;
        grid-template-columns: none;
        align-items: center;
    }
    
    .about-header {
        order: 1;
        width: 100%;
    }
    
    .about-image {
        order: 2;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about-text {
        order: 3;
        width: 100%;
    }
    
    .image-container {
        transform: none !important;
        aspect-ratio: 4/3;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .image-container:hover {
        transform: none !important;
    }
}


.section-tag {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.about-title {
    font-family: 'Archivo', sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.about-description {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 24px;
    font-weight: 400;
}

.about-description:last-of-type {
    margin-bottom: 40px;
}

/* Trust Signals */
.trust-signals {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
    align-items: stretch;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #ffffff;
    padding: 24px 20px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E3B55C, #F4C76B);
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    border-color: rgba(227, 181, 92, 0.2);
}

.trust-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.trust-badge .badge-image {
    width: auto;
    height: 60px;
    max-width: 60px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.trust-badge svg {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(227, 181, 92, 0.2));
}

.trust-text {
    flex: 1;
    min-width: 0;
}

.trust-text h4 {
    color: #333;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
    font-family: 'Archivo', sans-serif;
}

.trust-text p {
    color: #666;
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #C49B3D;
    margin-bottom: 8px;
    font-family: 'Archivo', sans-serif;
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: all 0.3s ease;
    width: 100%;
    height: auto;
    min-height: 300px;
}

.image-container:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 20px;
    min-height: 300px;
}

/* Team Section */
.team-section {
    width: 100%;
    background: #f8f8f8;
    padding: 80px 60px;
    margin: 0;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-image-frame {
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
}

.team-photo {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    object-fit: cover;
    image-rendering: crisp-edges;
    -webkit-image-rendering: crisp-edges;
}

/* Work Section */
.work-section {
    background: url('../assets/images/work-bg.png') center/cover no-repeat;
    padding: 100px clamp(20px, 16vw, 225px);
}

.work-container {
    max-width: 1400px;
    margin: 0 auto;
    padding-right: clamp(0px, 7vw, 100px);
}

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

.work-title {
    font-family: 'Archivo', sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: #333;
    margin-top: 16px;
}

.work-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    height: 600px;
}

.work-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.work-item:hover {
    transform: translateY(-4px);
}

.work-item:first-child {
    grid-row: span 2;
}

.work-item:nth-child(4) {
    grid-column: span 2;
}

.work-item-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.work-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.work-item-overlay {
    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.3) 100%);
    transition: opacity 0.3s ease;
}

.work-item:hover .work-item-overlay {
    opacity: 0.9;
}

.work-item-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    color: white;
    z-index: 2;
}

.work-item-text h3 {
    font-family: 'Archivo', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.2;
}

.work-button {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.work-item:hover .work-button {
    opacity: 1;
}

.button-icon {
    width: 15px;
    height: 12px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.work-item:hover .button-icon {
    transform: translateX(4px);
}

/* Testimonials Section */
.testimonials-section {
    background: #fff;
    padding: 100px 0;
    overflow: hidden;
}

.testimonials-container {
    max-width: 100vw;
    margin: 0 auto;
}

.testimonials-header {
    text-align: left;
    margin-bottom: 60px;
    padding: 0 clamp(20px, 16vw, 225px);
}

.testimonials-title {
    font-family: 'Archivo', sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: #333;
    margin-top: 16px;
    line-height: 1.2;
}

.testimonials-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 clamp(20px, 16vw, 225px);
    width: max-content;
    align-items: stretch;
}

/* Testimonials controls */
.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    padding: 0 clamp(20px, 16vw, 225px);
}

.testimonials-prev,
.testimonials-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #fff;
    color: #000;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.2s ease;
}

.testimonials-prev:hover,
.testimonials-next:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.testimonials-dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonials-dot {
    appearance: none;
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 9999px;
    border: 1px solid rgba(0, 0, 0, 0.18);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: inset 0 0 0 2px rgba(0,0,0,0.02);
}

.testimonials-dot:hover {
    border-color: rgba(0, 0, 0, 0.35);
}

.testimonials-dot.active {
    background: #E3B55C;
    border-color: #E3B55C;
    transform: scale(1.15);
}

.testimonials-dot:focus-visible {
    outline: 2px solid rgba(227, 181, 92, 0.5);
    outline-offset: 2px;
}

.testimonial-card {
    background: #1A1A1A;
    border-top: 3px solid #E3B55C;
    padding: 40px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    flex: 0 0 400px;
    width: 400px;
    min-width: 400px;
}

.quote-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    fill: #E3B55C;
    opacity: 0.9;
}

.testimonial-text {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
}

.testimonial-divider {
    width: 50px;
    height: 2px;
    background: #E3B55C;
    margin-bottom: 20px;
}

.testimonial-author {
    color: #FFFFFF;
}

.author-name {
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-role {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
}

/* Responsive Design for Testimonials Section */
@media (max-width: 1400px) {
    .testimonials-header {
        padding: 0 40px;
    }
    
    .testimonials-grid {
        padding-left: 40px;
    }
    
    .testimonials-controls {
        padding-left: 40px;
    }
}

@media (max-width: 900px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-header {
        padding: 0 20px;
    }
    
    .testimonials-grid {
        padding-left: 20px;
        gap: 20px;
    }
    
    .testimonial-card {
        flex: 0 0 300px;
        width: 300px;
        min-width: 300px;
    }

    .testimonials-controls {
        padding-left: 20px;
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .testimonials-grid {
        gap: 16px;
    }
    
    .testimonial-card {
        flex: 0 0 280px;
        width: 280px;
        min-width: 280px;
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 32px;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
    
    .quote-icon {
        font-size: 36px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
}

@media (max-width: 600px) {
    .testimonials-section {
        padding: 60px 20px !important;
    }
    
    .testimonials-title {
        font-size: 28px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
}

/* Contact Section */
.contact-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../assets/images/contact-bg.png') center/cover no-repeat;
    padding: 100px clamp(20px, 16vw, 225px);
    color: #fff;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding-right: clamp(0px, 7vw, 100px);
    width: 100%;
    box-sizing: border-box;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr minmax(320px, 420px);
    gap: 80px;
    align-items: center;
}

.contact-header {
    margin-bottom: 40px;
}

.contact-header .section-tag {
    color: rgba(255, 255, 255, 0.8);
}

.contact-title {
    font-family: 'Archivo', sans-serif;
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    margin: 16px 0 20px 0;
    line-height: 1.2;
}

.contact-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    font-family: 'Archivo', sans-serif;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

/* Prevent grid overflow on narrow widths */
.form-group {
    min-width: 0;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    max-width: 100%;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    color: #fff;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-group select option {
    background: #333;
    color: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #E3B55C;
    background: rgba(255, 255, 255, 0.15);
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.contact-submit-btn {
    background: #C49B3D;
    color: #000;
    border: none;
    padding: 18px 40px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    text-transform: uppercase;
    width: fit-content;
    font-family: 'Archivo', sans-serif;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(196, 155, 61, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-submit-btn:hover {
    background: #B8903A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 155, 61, 0.4);
}

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

.contact-info-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #E3B55C;
    height: fit-content;
}

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

.card-text {
    flex: 1;
}

.card-title {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.card-value {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

/* Contact card phone link styling */
.contact-card-phone {
    color: #333 !important;
    text-decoration: none !important;
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
    display: block;
}

.contact-card-phone:hover {
    color: #E3B55C !important;
    text-decoration: none !important;
}

.contact-card-phone:visited {
    color: #333 !important;
    text-decoration: none !important;
}

.contact-card-phone:active {
    color: #E3B55C !important;
    text-decoration: none !important;
}

.card-icon {
    color: #E3B55C;
    margin-left: 20px;
}

/* Responsive Design for Contact Section */
@media (max-width: 1200px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .contact-section {
        padding: 80px 20px !important;
    }
    
    .contact-container {
        padding-right: 0 !important;
        padding-left: 0 !important;
        max-width: 100%;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form-column {
        order: 1;
    }
    
    .contact-info-column {
        order: 2;
        margin-top: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contact-info-card {
        height: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-title {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 60px 20px !important;
    }
    
    .contact-title {
        font-size: 32px;
    }
    
    .contact-info-column {
        grid-template-columns: 1fr;
    }
    
    .contact-info-card {
        padding: 25px 20px;
        height: fit-content; /* Reset height */
    }
    
    .card-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .card-icon {
        margin-left: 0;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #000 0%, #0a0a0a 100%);
    color: #fff;
    padding: 60px 60px 30px 60px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #E3B55C 50%, transparent 100%);
}

.footer-container {
    margin: 0 auto;
    padding-right: 0;
    padding-left: 0;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    display: grid;
    grid-template-columns: 300px 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 45px;
}

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

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 15px 0 0 0;
    border-top: 1px solid #222;
}

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

.footer-logo-img {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) opacity(0.8);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.contact-phone {
    color: #E3B55C;
    text-decoration: none;
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    font-weight: 800;
    transition: all 0.3s ease;
    letter-spacing: 0.8px;
    display: block;
    margin-bottom: 6px;
}

.contact-phone:hover {
    color: #fff;
    transform: translateX(2px);
}

.contact-address {
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Archivo', sans-serif;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.footer-social-icon {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.footer-social-icon:hover {
    color: #E3B55C;
    background: rgba(227, 181, 92, 0.15);
    border-color: rgba(227, 181, 92, 0.3);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(227, 181, 92, 0.2);
}

.footer-center {
    display: flex;
    flex-direction: column;
}

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

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-family: 'Archivo', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #E3B55C;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    text-decoration: none;
}

.contact-value:hover {
    color: #E3B55C;
}

.footer-right-nav {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #E3B55C;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 8px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #E3B55C;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-family: 'Archivo', sans-serif;
    font-size: 13px;
    font-weight: 400;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    line-height: 1.2;
    padding: 4px 0;
    position: relative;
    border-radius: 2px;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 1px;
    background: #E3B55C;
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #E3B55C;
    transform: translateX(4px);
    padding-left: 6px;
}

.footer-link:hover::before {
    width: 20px;
}

.footer-right {
    display: flex;
    justify-content: flex-end;
    align-items: start;
}

.footer-credit {
    text-align: right;
}

.credit-text {
    font-family: 'Archivo', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    margin-bottom: 5px;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.footer-copyright p {
    font-family: 'Archivo', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-weight: 400;
}

.footer-credit {
    font-family: 'Archivo', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.credit-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 400;
    text-transform: none;
    transition: color 0.3s ease;
}

.credit-link:hover {
    color: #E3B55C;
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    
    /* Footer aligns exactly: 40px left/right */
    .footer {
        padding: 60px 40px 30px 40px;
    }
}

@media (max-width: 900px) {
    .footer {
        padding: 60px 20px 30px 20px !important;
        width: 100%;
        box-sizing: border-box;
    }
    
    .footer-container {
        padding-right: 0 !important;
        padding-left: 0 !important;
        max-width: 100%;
        margin: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .footer-content {
        display: block;
        margin-bottom: 40px;
    }
    
    /* Logo and Contact Section - Top Section */
    .footer-column:first-child {
        text-align: left;
        padding-bottom: 35px;
        border-bottom: 1px solid #222;
        margin-bottom: 40px;
    }
    
    .footer-logo {
        margin-bottom: 20px;
        display: block;
    }
    
    .footer-logo-img {
        height: 45px;
        margin-bottom: 0;
        display: block;
    }
    
    .footer-social {
        justify-content: flex-start;
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .footer-social-icon {
        padding: 12px;
        background: rgba(227, 181, 92, 0.1);
        border: 1px solid rgba(227, 181, 92, 0.2);
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .footer-social-icon:hover {
        background: rgba(227, 181, 92, 0.2);
        border-color: rgba(227, 181, 92, 0.4);
        transform: translateY(-3px) scale(1.1);
    }
    
    .footer-contact-info {
        border: none;
        padding: 0;
        gap: 15px;
        text-align: left;
    }
    
    .contact-phone {
        font-size: 18px;
        font-weight: 900;
        letter-spacing: 1.2px;
        margin-bottom: 8px;
    }
    
    .contact-address {
        font-size: 14px;
        line-height: 1.5;
        opacity: 0.9;
    }
    
    /* Navigation Links - Better Side-by-Side Layout */
    .footer-column:nth-child(2) {
        display: inline-block;
        width: 32%;
        vertical-align: top;
        text-align: left;
        margin-bottom: 30px;
    }
    
    .footer-column:nth-child(3) {
        display: inline-block;
        width: 32%;
        vertical-align: top;
        text-align: left;
        margin-left: 2%;
        margin-bottom: 30px;
    }
    
    .footer-column:nth-child(4) {
        display: inline-block;
        width: 32%;
        vertical-align: top;
        text-align: left;
        margin-left: 2%;
        margin-bottom: 30px;
    }
    
    .footer-column {
        align-items: flex-start;
    }
    
    .footer-heading {
        font-size: 15px;
        margin-bottom: 20px;
        letter-spacing: 2px;
        text-align: left;
        color: #E3B55C;
    }
    
    .footer-heading::after {
        left: 0;
        transform: none;
        width: 40px;
    }
    
    .footer-nav {
        gap: 8px;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-link {
        font-size: 14px;
        padding: 6px 0;
        display: block;
        text-align: left;
        transition: all 0.3s ease;
    }
    
    .footer-link:hover {
        transform: translateY(-1px);
        color: #E3B55C;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid #222;
    }
    
    .footer-copyright p {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .footer-credit {
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .footer {
        padding: 50px 20px 25px !important;
    }
    
    .footer-content {
        margin-bottom: 35px;
    }
    
    .footer-column:first-child {
        padding-bottom: 25px;
        margin-bottom: 30px;
        text-align: left;
    }
    
    .footer-logo {
        margin-bottom: 18px;
    }
    
    .footer-logo-img {
        height: 40px;
        margin-bottom: 0;
    }
    
    .footer-social {
        gap: 12px;
        margin-bottom: 20px;
        justify-content: flex-start;
    }
    
    .footer-social-icon {
        padding: 10px;
        border-radius: 6px;
    }
    
    .contact-phone {
        font-size: 16px;
        letter-spacing: 1px;
    }
    
    .contact-address {
        font-size: 13px;
    }
    
    .footer-contact-info {
        text-align: left;
    }
    
    /* Stack all navigation columns vertically on small screens */
    .footer-column:nth-child(2) {
        display: block;
        width: 100%;
        margin-left: 0;
        margin-bottom: 25px;
        text-align: left;
    }
    
    .footer-column:nth-child(3) {
        display: block;
        width: 100%;
        margin-left: 0;
        margin-bottom: 25px;
        text-align: left;
    }
    
    .footer-column:nth-child(4) {
        display: block;
        width: 100%;
        margin-left: 0;
        margin-bottom: 25px;
        text-align: left;
    }
    
    .footer-heading {
        font-size: 14px;
        margin-bottom: 15px;
        letter-spacing: 1.5px;
        text-align: left;
    }
    
    .footer-heading::after {
        width: 35px;
        left: 0;
        transform: none;
    }
    
    .footer-nav {
        gap: 6px;
        text-align: left;
        align-items: flex-start;
    }
    
    .footer-link {
        font-size: 13px;
        padding: 4px 0;
        text-align: left;
    }
    
    .footer-bottom {
        gap: 20px;
        padding-top: 25px;
        text-align: left;
    }
    
    .footer-copyright p {
        font-size: 12px;
    }
    
    .footer-credit {
        font-size: 13px;
        text-align: left;
    }
}

/* Responsive Design for Work Section */
@media screen and (max-width: 1024px) {
    .work-section {
        padding: 80px 20px;
    }
    
    .work-container {
        padding-right: 0;
    }
    
    .work-grid {
        display: flex;
        flex-direction: column;
        height: auto;
        gap: 16px;
    }
    
    .work-item:first-child {
        grid-row: unset;
    }
    
    .work-item {
        height: 280px;
    }
}


@media screen and (max-width: 768px) {
    .work-section {
        padding: 60px 20px;
    }
    
    .work-container {
        padding-right: 0;
    }
    
    .work-title {
        font-size: 32px;
    }
    
    .work-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    .work-item {
        height: 240px;
    }
    
    .work-item-text h3 {
        font-size: 20px;
    }
    
    .work-item-text {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
}

@media screen and (max-width: 600px) {
    .work-section {
        padding: 50px 16px;
    }
    
    .work-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .work-grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .work-item {
        height: 220px;
    }
    
    .work-item-text h3 {
        font-size: 18px;
    }
    
    .work-item-text {
        bottom: 16px;
        left: 16px;
        right: 16px;
    }
}

@media screen and (max-width: 480px) {
    .work-section {
        padding: 40px 16px;
    }
    
    .work-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .work-grid {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .work-item {
        height: 200px;
    }
    
    .work-item-text h3 {
        font-size: 16px;
        line-height: 1.3;
    }
    
    .work-item-text {
        bottom: 12px;
        left: 12px;
        right: 12px;
    }
    
    .work-button .button-text {
        font-size: 11px;
    }
}
