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

:root {
    /* Colors */
    --primary-green: #4A9B7F;
    --primary-green-light: #5FB396;
    --primary-green-dark: #3A7A63;
    --accent: #2d7a63;
    --gradient-primary: linear-gradient(135deg, #4A9B7F 0%, #3BAFA8 100%);
    --gradient-secondary: linear-gradient(135deg, #2d7a63 0%, #4A9B7F 100%);
    --dark-bg: #1a1a1a;
    --dark-bg-light: #2d2d2d;
    --light-bg: #f5f5f5;
    --text-dark: #333;
    --text-light: #fff;
    
    /* Timing and Animation */
    --transition-speed: 0.3s;
    --transition-fast: 0.2s;
    --transition-slow: 0.4s;
    --ease-smooth: ease;
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Spacing */
    --section-padding: 5rem 5%;
    --card-padding: 2rem;
    
    /* Border Radius */
    --radius: 10px;
    --radius-small: 5px;
    --radius-large: 8px;
    --radius-round: 50%;
    
    /* Shadows */
    --shadow-light: 0 5px 15px rgba(0,0,0,0.1);
    --shadow-medium: 0 10px 30px rgba(74, 155, 127, 0.15);
    --shadow-heavy: 0 15px 30px rgba(74, 155, 127, 0.2);
    --shadow-button: 0 10px 20px rgba(74, 155, 127, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* ============================================
   NAVIGATION
   ============================================ */

nav {
    background: var(--dark-bg);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: background var(--transition-speed) var(--ease-smooth), 
                box-shadow var(--transition-speed) var(--ease-smooth), 
                padding var(--transition-speed) var(--ease-smooth);
}

nav.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

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

nav .logo {
    color: var(--primary-green);
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: color var(--transition-speed) var(--ease-smooth);
}

nav .logo:hover {
    color: var(--primary-green-light);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color var(--transition-speed) var(--ease-smooth);
    font-weight: 500;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-speed) var(--ease-smooth);
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: var(--primary-green-light);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('hero.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    z-index: 1;
}

.hero-logo {
    max-width: 800px;
    width: 100%;
    height: auto;
    margin: 0 auto 1rem;
    display: block;
    filter: drop-shadow(0 0 20px rgba(74, 155, 127, 0.9)) 
            drop-shadow(0 0 40px rgba(59, 175, 168, 0.6));
}

.hero .tagline {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 4px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-primary);
    color: var(--text-light);
    text-decoration: none;
    font-weight: bold;
    border-radius: var(--radius-small);
    transition: all var(--transition-speed) var(--ease-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    transition: left var(--transition-speed) var(--ease-smooth);
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-button);
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.service-card {
    background: white;
    padding: var(--card-padding);
    border-radius: var(--radius);
    box-shadow: var(--shadow-light);
    transition: all var(--transition-speed) var(--ease-smooth);
    border-top: 4px solid transparent;
    background-image: linear-gradient(white, white), var(--gradient-primary);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.service-card h3 {
    color: var(--dark-bg);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid transparent;
    border-image: var(--gradient-primary) 1;
}

.service-price {
    font-size: 1.1rem;
    font-weight: bold;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.service-card ul {
    list-style: none;
    padding-left: 0;
}

.service-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
    transition: padding-left var(--transition-speed) var(--ease-smooth);
}

.service-card ul li:hover {
    padding-left: 30px;
}

.service-card ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.service-card ul li:last-child {
    border-bottom: none;
}
.package-includes {
    margin: 0 0 1rem 0;
    padding: 0.75rem;
    background: rgba(52, 168, 83, 0.1);
    border-left: 3px solid var(--primary-green, #34a853);
    font-size: 0.95rem;
    color: #333;
}

.package-includes strong {
    color: var(--primary-green, #34a853);
}
/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    padding: var(--section-padding);
    background: white;
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

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

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.rating-star {
    display: inline-block;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.shield-logo {
    text-align: center;
    padding: 2rem;
}

.shield {
    width: 100%;
    height: 300px;
    position: relative;
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery-section {
    padding: var(--section-padding);
    background: #e8e8e8;
}

.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.photo-gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed) var(--ease-smooth), 
                box-shadow var(--transition-speed) var(--ease-smooth);
}

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

.photo-gallery-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s var(--ease-smooth), filter 0.5s var(--ease-smooth);
    filter: blur(2px);
}


.photo-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
}

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

.photo-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 1;
    transition: opacity var(--transition-slow) var(--ease-smooth);
}

.photo-gallery-item:hover .photo-gallery-overlay {
    opacity: 1;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
}

.photo-gallery-content {
    width: 100%;
    transform: translateY(0);
    transition: transform var(--transition-slow) var(--ease-smooth);
}

.photo-gallery-item:hover .photo-gallery-content {
    transform: translateY(0);
}

.photo-gallery-content h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.gallery-view-btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-small);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-speed) var(--ease-smooth);
    opacity: 0;
    transform: translateY(10px);
}

.photo-gallery-item:hover .gallery-view-btn {
    background: var(--gradient-secondary);
    transform: translateY(0);
    opacity: 1;
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 9999;
    opacity: 0;
    transition: opacity var(--transition-speed) var(--ease-smooth);
}

.lightbox.active {
    display: block;
    opacity: 1;
}

.lightbox-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
    z-index: 10;
}

.lightbox-title {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lightbox-close {
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-round);
    transition: all var(--transition-speed) var(--ease-smooth);
}

.lightbox-close:hover {
    background: var(--gradient-primary);
    transform: rotate(90deg);
}

.lightbox-main {
    position: absolute;
    top: 80px;
    bottom: 180px;
    left: 80px;
    right: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 2;
}

.lightbox-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: white;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    font-size: 2rem;
    cursor: pointer;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed) var(--ease-smooth);
    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: var(--gradient-primary);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 10px;
}

.lightbox-next {
    right: 10px;
}

.lightbox-thumbnails {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem 2rem 1.5rem;
}

.thumbnail-container {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-green) rgba(255, 255, 255, 0.1);
}

.thumbnail-container::-webkit-scrollbar {
    height: 8px;
}

.thumbnail-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
}

.thumbnail-container::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: var(--radius);
}

.thumbnail {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    cursor: pointer;
    border-radius: var(--radius-large);
    overflow: hidden;
    border: 3px solid transparent;
    transition: all var(--transition-speed) var(--ease-smooth);
    position: relative;
}

.thumbnail::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: opacity var(--transition-speed) var(--ease-smooth);
}

.thumbnail:hover::before {
    opacity: 0;
}

.thumbnail:hover {
    transform: translateY(-5px);
    border-color: white;
}

.thumbnail.active {
    border-image: var(--gradient-primary) 1;
    transform: scale(1.1);
}

.thumbnail.active::before {
    opacity: 0;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    padding: var(--section-padding);
    background: var(--light-bg);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-box {
    background: white;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-light);
    border-top: 4px solid transparent;
    background-image: linear-gradient(white, white), var(--gradient-primary);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    max-width: 600px;
    margin: 0 auto;
    transition: box-shadow var(--transition-speed) var(--ease-smooth);
}

.contact-box:hover {
    box-shadow: var(--shadow-medium);
}

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

.contact-header h2 {
    font-size: 2rem;
    color: var(--dark-bg);
    margin-bottom: 0.5rem;
}

.contact-header p {
    color: #666;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-large);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
    transition: transform var(--transition-speed) var(--ease-smooth);
}

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

.icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.contact-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.contact-value {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

.contact-value a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color var(--transition-speed) var(--ease-smooth);
}

.contact-value a:hover {
    color: var(--primary-green);
}

.social-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.social-icon {
    width: 100%;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-large);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 20px;
    gap: 15px;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-speed) var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    transition: left var(--transition-speed) var(--ease-smooth);
}

.social-icon:hover::before {
    left: 0;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 155, 127, 0.3);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.social-username {
    color: white;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 2rem 5%;
    text-align: center;
    position: relative;
}

footer .review-button-container {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    padding: 0;
    border-top: none;
}

footer .social-links {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

footer .social-links a {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 1.2rem;
    transition: all var(--transition-speed) var(--ease-smooth);
}

footer .social-links a:hover {
    transform: translateY(-2px);
}

.review-style-1 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.25rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-large);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-speed) var(--ease-smooth);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    min-width: fit-content;
}

.review-style-1:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-color: #4285F4;
}

.review-style-1 svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

/* ============================================
   MODAL STYLES
   ============================================ */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    overflow: auto;
    transition: background-color var(--transition-speed) var(--ease-smooth);
}

.modal.active {
    display: block;
    animation: fadeIn var(--transition-speed) var(--ease-smooth) forwards;
}

@keyframes fadeIn {
    from {
        background-color: rgba(0, 0, 0, 0);
    }
    to {
        background-color: rgba(0, 0, 0, 0.95);
    }
}

.modal-content {
    position: relative;
    margin: 2rem auto;
    padding: 2rem;
    max-width: 1200px;
    transform: scale(0.7);
    opacity: 0;
    transition: all var(--transition-slow) var(--ease-bounce);
}

.modal.active .modal-content {
    transform: scale(1);
    opacity: 1;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    color: white;
}

.modal-header h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
}

.close-modal {
    color: white;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
    transition: color var(--transition-speed) var(--ease-smooth);
}

.close-modal:hover {
    color: var(--primary-green-light);
}

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet: 769px - 1024px */
@media (max-width: 1024px) and (min-width: 769px) {
    .review-style-1 {
        font-size: 0.85rem;
        padding: 0.65rem 1rem;
        gap: 6px;
    }
    
    .review-style-1 svg {
        width: 18px;
        height: 18px;
    }
    
    footer .review-button-container {
        left: 3%;
    }
}

/* Tablet and below: 768px */
@media (max-width: 768px) {
    /* Navigation */
    .mobile-menu-btn {
        display: block;
    }

    nav .container {
        flex-wrap: wrap;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        margin-top: 1rem;
        background: var(--dark-bg);
    }

    nav ul.mobile-open {
        display: flex;
    }

    nav ul li {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        border-top: 1px solid #333;
    }

    /* Hero */
    .hero-logo {
        max-width: 350px;
    }

    .hero .tagline {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    /* About */
    .about-content {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .shield {
        width: 100%;
        height: 200px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Gallery */
    .photo-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .photo-gallery-content h3 {
        font-size: 1.2rem;
    }

    /* Modal */
    .modal-content {
        margin: 1rem;
        padding: 1rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .close-modal {
        font-size: 2.5rem;
    }

    .photo-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-box {
        max-width: 100%;
    }

    .social-links {
        grid-template-columns: 1fr;
    }
    
    .social-icon {
        width: 100%;
        justify-content: flex-start;
    }

    /* Lightbox */
    .lightbox-header {
        padding: 1rem;
    }

    .lightbox-title {
        font-size: 1.2rem;
    }

    .lightbox-close {
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }

    .lightbox-main {
        top: 70px;
        bottom: 150px;
        left: 1rem;
        right: 1rem;
        padding: 1rem;
    }

    .lightbox-nav {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }

    .thumbnail {
        width: 100px;
        height: 70px;
    }

    /* General */
    .section-title {
        font-size: 2rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    /* Footer */
    footer .review-button-container {
        position: static;
        transform: none;
        margin-bottom: 1.5rem;
        display: flex;
        justify-content: center;
    }
    
    .review-style-1 {
        font-size: 0.85rem;
        padding: 0.7rem 1.1rem;
    }
}

/* Small Mobile: 480px and below */
@media (max-width: 480px) {
    /* Hero */
    .hero-logo {
        max-width: 380px;
    }

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

    /* Navigation */
    nav .logo {
        font-size: 1.2rem;
    }

    /* General */
    .section-title {
        font-size: 1.5rem;
    }

    /* Modal */
    .modal-header h2 {
        font-size: 1.2rem;
    }

    /* Gallery */
    .photo-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .photo-gallery-overlay {
        opacity: 1;
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.5) 70%,
            rgba(0, 0, 0, 0.9) 100%
        );
    }
    
    .photo-gallery-content {
        transform: translateY(0);
    }
    
    .gallery-view-btn {
        opacity: 1;
        transform: translateY(0);
    }

    /* Review button */
    .review-style-1 span {
        font-size: 0.8rem;
    }
    
    .review-style-1 {
        padding: 0.65rem 0.9rem;
        gap: 6px;
    }
}