/* ERS YAPI İNŞAAT - Modern Premium Website Styles */

:root {
    --primary-color: #0077be;
    --primary-dark: #005a8c;
    --primary-light: #4da6ff;
    --accent-color: #00bfff;
    --accent-dark: #0099cc;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f0f7ff;
    --bg-white: #ffffff;
    --border-color: #d0e8ff;
    --shadow: 0 2px 10px rgba(0,119,190,0.1);
    --shadow-lg: 0 5px 25px rgba(0,119,190,0.15);
}

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

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

/* Header - Minimal Clean Design */
header {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 50px;
    transition: opacity 0.2s ease;
    z-index: 2;
}

.logo:hover {
    opacity: 0.8;
}

.logo img {
    height: 100%;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav li {
    position: relative;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    position: relative;
    display: block;
    letter-spacing: -0.2px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0.4rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.2s ease;
    border-radius: 1px;
}

nav a:hover {
    color: var(--primary-color);
    background: rgba(0, 119, 190, 0.04);
}

nav a:hover::after {
    width: calc(100% - 2.5rem);
}

/* Active page indicator */
nav a.active {
    color: var(--primary-color);
    background: rgba(0, 119, 190, 0.08);
    font-weight: 600;
}

nav a.active::after {
    width: calc(100% - 2.5rem);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    z-index: 1001;
    position: relative;
}

.hamburger:hover {
    background: rgba(0, 0, 0, 0.04);
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 1px;
    transition: all 0.2s ease;
    transform-origin: center;
}

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    filter: brightness(0.4);
    transition: opacity 1.5s ease-in-out;
}

.hero-bg-image.active {
    opacity: 0.25;
    z-index: 1;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 90, 140, 0.85) 0%, rgba(0, 119, 190, 0.75) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 2rem;
    max-width: 1400px;
}

.hero-content {
    text-align: left;
    animation: fadeInLeft 0.8s ease-out;
}

.hero-image {
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-foreground-images {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.hero-foreground-images img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 25px;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    object-fit: cover;
}

.hero-foreground-images img.active {
    opacity: 1;
    z-index: 1;
}

.hero-image-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    animation: slideUp 1s ease-out 0.5s both;
}

.hero-image-badge span:first-child {
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-30px, -30px) scale(1.1);
    }
}

.hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
    font-weight: 300;
    max-width: 600px;
}

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

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-buttons .btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-buttons .btn span {
    position: relative;
    z-index: 1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.4);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 191, 255, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.2);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

.services-section {
    background: linear-gradient(to bottom, var(--bg-white) 0%, var(--bg-light) 50%, var(--bg-white) 100%);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 119, 190, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 191, 255, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 119, 190, 0.15);
    border-color: rgba(0, 191, 255, 0.3);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.service-card:hover .service-icon-wrapper::before {
    width: 200px;
    height: 200px;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.3);
}

.service-icon {
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    transition: color 0.3s;
}

.service-card:hover h3 {
    color: var(--accent-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.service-card .btn {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
    border-radius: 50px;
    width: auto;
    margin: 0 auto;
    display: inline-block;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 119, 190, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 191, 255, 0.1);
    animation: fadeInUp 0.6s ease-out backwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.6s ease;
    opacity: 0;
}

.feature-card:hover::after {
    opacity: 1;
    top: -30%;
    right: -30%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 119, 190, 0.15);
    border-color: rgba(0, 191, 255, 0.3);
}

.feature-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.2);
}

.feature-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.feature-card:hover .feature-icon-wrapper::before {
    width: 200px;
    height: 200px;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 191, 255, 0.35);
}

.feature-icon {
    font-size: 2.8rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

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

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    transition: color 0.3s;
}

.feature-card:hover h3 {
    color: var(--accent-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 2rem;
    margin-top: 4rem;
    align-items: center;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    text-align: center;
    position: relative;
    animation: fadeInUp 0.8s ease-out backwards;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(5) { animation-delay: 0.5s; }
.process-step:nth-child(7) { animation-delay: 0.7s; }

.process-card {
    background: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    box-shadow: 0 6px 25px rgba(0, 119, 190, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 191, 255, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.process-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.8s ease;
    opacity: 0;
}

.process-card:hover::after {
    opacity: 1;
    top: -30%;
    right: -30%;
}

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

.process-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 119, 190, 0.2);
    border-color: rgba(0, 191, 255, 0.4);
}

.process-number-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.process-number {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.35);
    transition: all 0.5s ease;
    border: 4px solid rgba(255, 255, 255, 0.2);
}

.process-number::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.7s, height 0.7s;
}

.process-card:hover .process-number::before {
    width: 180px;
    height: 180px;
}

.process-card:hover .process-number {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 45px rgba(0, 191, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.process-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 8px rgba(0, 191, 255, 0.3));
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.process-card:hover .process-icon {
    transform: scale(1.2) rotate(-5deg);
    filter: drop-shadow(0 4px 12px rgba(0, 191, 255, 0.5));
}

.process-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 1rem;
    min-width: 80px;
    animation: fadeIn 1s ease-out backwards;
}

.process-connector:nth-child(2) { animation-delay: 0.2s; }
.process-connector:nth-child(4) { animation-delay: 0.4s; }
.process-connector:nth-child(6) { animation-delay: 0.6s; }

.connector-line {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color), var(--accent-color));
    border-radius: 2px;
    position: relative;
    animation: expandLine 1s ease-out backwards;
}

.process-connector:nth-child(2) .connector-line { animation-delay: 0.3s; }
.process-connector:nth-child(4) .connector-line { animation-delay: 0.5s; }
.process-connector:nth-child(6) .connector-line { animation-delay: 0.7s; }

.connector-arrow {
    position: absolute;
    right: -15px;
    font-size: 1.5rem;
    color: var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes expandLine {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100%;
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateX(5px);
        opacity: 0.7;
    }
}

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

.process-step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 800;
    transition: color 0.3s;
    position: relative;
    z-index: 2;
}

.process-card:hover h3 {
    color: var(--accent-color);
}

.process-step p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    margin-top: auto;
}

/* Gallery Carousel */
.gallery-carousel-container {
    margin: 3rem 0;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    background: var(--bg-light);
}

.gallery-carousel {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.gallery-carousel-item {
    min-width: 100%;
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
}

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

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

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-weight: bold;
    line-height: 1;
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 119, 190, 0.3);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(0, 119, 190, 0.5);
}

.carousel-indicator:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.carousel-counter {
    text-align: center;
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 600;
}

.carousel-counter span {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Modern Gallery Grid */
.modern-gallery-container {
    margin: 3rem 0;
    width: 100%;
}

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

.modern-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
    cursor: pointer;
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out backwards;
}

.modern-gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 119, 190, 0.2);
    border-radius: 16px;
}

.modern-gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 119, 190, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.modern-gallery-item:hover::before {
    opacity: 1;
}

.modern-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.modern-gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 2rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.9);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modern-gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Gallery Grid (for homepage preview) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Gallery Actions Buttons */
.gallery-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.gallery-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    min-width: 200px;
    text-align: center;
}

.gallery-btn span {
    position: relative;
    z-index: 1;
}

.gallery-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.gallery-btn:hover::before {
    width: 300px;
    height: 300px;
}

.gallery-btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 119, 190, 0.3);
}

.gallery-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 119, 190, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.gallery-btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border: 2px solid rgba(0, 119, 190, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-btn-secondary:hover {
    background: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 119, 190, 0.2);
    color: var(--primary-dark);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 119, 190, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-light);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 119, 190, 0.1), rgba(0, 191, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
    pointer-events: none;
}

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

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 119, 190, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

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

/* Instagram Feed */
.instagram-feed-container {
    margin: 3rem 0;
    min-height: 400px;
}

.instagram-feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.instagram-feed-grid .gallery-item {
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 119, 190, 0.1);
    transition: all 0.3s ease;
}

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

/* SnapWidget Embed Styling */
.snapwidget-widget {
    width: 100% !important;
    border: none !important;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 119, 190, 0.1);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 2rem auto;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

/* CTA Band */
/* CTA Band - Modern Design */
.cta-band {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    margin: 5rem 0;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 119, 190, 0.3);
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 191, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.cta-icon-wrapper {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.cta-band h2 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-band p {
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-btn-icon {
    font-size: 1.3rem;
    z-index: 1;
    position: relative;
    transition: transform 0.3s ease;
}

.cta-btn:hover .cta-btn-icon {
    transform: scale(1.2) rotate(5deg);
}

.cta-btn-text {
    z-index: 1;
    position: relative;
}

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

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.cta-feature:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.cta-feature-icon {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

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

.fixed-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s;
}

.fixed-btn:hover {
    transform: scale(1.1);
}

.fixed-btn.whatsapp {
    background: #25D366;
    color: white;
}

.fixed-btn.phone {
    background: var(--accent-color);
    color: white;
}

/* Contact Page */
/* Contact Page - Ultra Modern Design */
.contact-hero {
    background: linear-gradient(135deg, #0077be 0%, #005a8f 50%, #003d5f 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.contact-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 191, 255, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(77, 166, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 119, 190, 0.15) 0%, transparent 60%);
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
    pointer-events: none;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.contact-hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 191, 255, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #e0f4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.contact-hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.98;
    font-weight: 400;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.contact-info-section {
    animation: fadeInLeft 0.8s ease-out;
}

.contact-info-section .section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.contact-info-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.modern-contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.modern-contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 
        0 8px 32px rgba(0, 119, 190, 0.12),
        0 2px 8px rgba(0, 119, 190, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 119, 190, 0.1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out backwards;
    backdrop-filter: blur(10px);
}

.modern-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.modern-contact-card:nth-child(1) { animation-delay: 0.1s; }
.modern-contact-card:nth-child(2) { animation-delay: 0.2s; }
.modern-contact-card:nth-child(3) { animation-delay: 0.3s; }
.modern-contact-card:nth-child(4) { animation-delay: 0.4s; }

.modern-contact-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 16px 48px rgba(0, 119, 190, 0.2),
        0 4px 16px rgba(0, 119, 190, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: var(--primary-color);
}

.modern-contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--primary-color) 100%);
    background-size: 200% 200%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 
        0 8px 24px rgba(0, 119, 190, 0.35),
        0 0 0 4px rgba(0, 119, 190, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(5deg);
    }
}

.modern-contact-card:hover .contact-card-icon-wrapper {
    transform: translateY(-5px) scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 32px rgba(0, 119, 190, 0.45),
        0 0 0 6px rgba(0, 119, 190, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
    background-position: 100% 0;
}

.contact-card-icon {
    font-size: 2.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.modern-contact-card:hover .contact-card-icon {
    transform: scale(1.1);
}

.modern-contact-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.modern-contact-card:hover h3 {
    color: var(--accent-color);
}

.contact-info {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.contact-link {
    display: block;
    color: var(--primary-color);
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
    letter-spacing: 0.3px;
}

.contact-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.contact-link:hover::after {
    width: 100%;
}

.contact-address {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 500;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(0, 119, 190, 0.05) 0%, rgba(0, 191, 255, 0.05) 100%);
    border-radius: 12px;
    border-left: 3px solid var(--primary-color);
}

.contact-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    background-size: 200% 200%;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 6px 20px rgba(0, 119, 190, 0.35),
        0 2px 8px rgba(0, 119, 190, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    width: 100%;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.contact-action-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 10px 30px rgba(0, 119, 190, 0.45),
        0 4px 12px rgba(0, 119, 190, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background-position: 100% 0;
}

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

.contact-action-btn:active {
    transform: translateY(-1px) scale(1);
}

.contact-action-btn.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-form-section {
    animation: fadeInRight 0.8s ease-out;
}

.modern-contact-form-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    padding: 3.5rem;
    border-radius: 28px;
    box-shadow: 
        0 12px 40px rgba(0, 119, 190, 0.15),
        0 4px 16px rgba(0, 119, 190, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: sticky;
    top: 100px;
    border: 2px solid rgba(0, 119, 190, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.modern-contact-form-wrapper:hover {
    box-shadow: 
        0 16px 48px rgba(0, 119, 190, 0.2),
        0 6px 20px rgba(0, 119, 190, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(0, 119, 190, 0.2);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 2rem;
}

.form-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.form-header h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.6;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.label-icon {
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.15rem 1.5rem;
    border: 2px solid rgba(0, 119, 190, 0.15);
    border-radius: 16px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(240, 248, 255, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    color: var(--text-dark);
    box-shadow: 
        0 2px 8px rgba(0, 119, 190, 0.05),
        inset 0 1px 2px rgba(0, 0, 0, 0.02);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 
        0 0 0 4px rgba(0, 119, 190, 0.12),
        0 4px 12px rgba(0, 119, 190, 0.15),
        inset 0 1px 2px rgba(0, 0, 0, 0.03);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0, 119, 190, 0.4);
    font-weight: 400;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    font-family: inherit;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230077be' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.modern-form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.35rem 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    background-size: 200% 200%;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 24px rgba(0, 119, 190, 0.4),
        0 2px 8px rgba(0, 119, 190, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
}

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

.modern-form-submit:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 12px 32px rgba(0, 119, 190, 0.5),
        0 4px 12px rgba(0, 119, 190, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background-position: 100% 0;
}

.modern-form-submit:hover::before {
    left: 100%;
}

.modern-form-submit:active {
    transform: translateY(-2px) scale(1);
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.map-section {
    margin-top: 6rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.map-section .section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.map-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.modern-map-container {
    margin-top: 3rem;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 12px 40px rgba(0, 119, 190, 0.2),
        0 4px 16px rgba(0, 119, 190, 0.15),
        inset 0 0 0 4px rgba(0, 119, 190, 0.1);
    border: 4px solid var(--primary-color);
    position: relative;
    transition: all 0.3s ease;
}

.modern-map-container::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-map-container:hover {
    box-shadow: 
        0 16px 48px rgba(0, 119, 190, 0.25),
        0 6px 20px rgba(0, 119, 190, 0.2),
        inset 0 0 0 4px rgba(0, 119, 190, 0.15);
    transform: translateY(-4px);
}

.modern-map-container:hover::before {
    opacity: 0.1;
}

.modern-map-container iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
    transition: filter 0.3s ease;
}

.modern-map-container:hover iframe {
    filter: brightness(1.05);
}

/* Quick Quote Section */
.quick-quote-section {
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.quick-quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 191, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 119, 190, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.quick-quote-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.quick-quote-content {
    animation: fadeInLeft 0.8s ease-out;
}

.quick-quote-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.quick-quote-content .section-title::after {
    left: 0;
    transform: none;
}

.quick-quote-content .section-subtitle {
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.quick-quote-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.quick-quote-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 119, 190, 0.1);
    border: 2px solid rgba(0, 119, 190, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out backwards;
}

.quick-quote-feature:nth-child(1) { animation-delay: 0.1s; }
.quick-quote-feature:nth-child(2) { animation-delay: 0.2s; }
.quick-quote-feature:nth-child(3) { animation-delay: 0.3s; }

.quick-quote-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(0, 119, 190, 0.15);
    border-color: var(--primary-color);
}

.quick-quote-feature .feature-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 119, 190, 0.25);
}

.quick-quote-feature span:last-child {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.quick-quote-form-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    padding: 3rem;
    border-radius: 28px;
    box-shadow: 
        0 12px 40px rgba(0, 119, 190, 0.15),
        0 4px 16px rgba(0, 119, 190, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(0, 119, 190, 0.1);
    backdrop-filter: blur(10px);
    animation: fadeInRight 0.8s ease-out;
    position: sticky;
    top: 100px;
}

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

.quick-quote-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.35rem 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    background-size: 200% 200%;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 24px rgba(0, 119, 190, 0.4),
        0 2px 8px rgba(0, 119, 190, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
}

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

.quick-quote-submit:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 12px 32px rgba(0, 119, 190, 0.5),
        0 4px 12px rgba(0, 119, 190, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background-position: 100% 0;
}

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

.quick-quote-submit:active {
    transform: translateY(-2px) scale(1);
}

/* Legacy styles for compatibility */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-card-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-form {
    max-width: 600px;
    margin: 3rem auto;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.map-container {
    margin-top: 3rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* About Page - Modern Design */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 191, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(77, 166, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, transparent 100%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.about-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 3rem;
    font-weight: 300;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
}

.about-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-intro-content {
    animation: fadeInUp 0.8s ease-out;
}

.about-intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.mission-vision-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 119, 190, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out backwards;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.mission-vision-card:nth-child(2) {
    animation-delay: 0.2s;
}

.mission-vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 119, 190, 0.15);
}

.mv-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 119, 190, 0.3);
}

.mv-icon {
    font-size: 2.5rem;
}

.mission-vision-card h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.mission-vision-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

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

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 119, 190, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    animation: fadeInUp 0.6s ease-out backwards;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }
.value-card:nth-child(5) { animation-delay: 0.5s; }
.value-card:nth-child(6) { animation-delay: 0.6s; }

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 119, 190, 0.15);
    border-color: var(--primary-color);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.value-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-overview-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 2px 10px rgba(0, 119, 190, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    animation: fadeInUp 0.6s ease-out backwards;
}

.service-overview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 119, 190, 0.15);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Service Detail Page */
.service-detail-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 191, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(77, 166, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.service-detail-hero .container {
    position: relative;
    z-index: 1;
}

.service-detail-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.service-detail-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    font-weight: 300;
}

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

.content-section {
    margin: 3rem 0;
}

.content-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.content-section h3 {
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
    font-size: 1.4rem;
}

.content-section ul {
    margin-left: 2rem;
    margin-top: 1rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.content-section p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    body {
        overflow-x: hidden;
        width: 100%;
    }

    .hamburger {
        display: flex;
    }

    nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #ffffff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 5rem 2rem 2rem;
        z-index: 1000;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    nav.active {
        display: block;
        transform: translateX(0);
    }

    nav ul {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    nav a {
        width: 100%;
        text-align: left;
        padding: 1rem 1.25rem;
        border-radius: 6px;
        font-size: 1rem;
        background: transparent;
        border: none;
    }

    nav a:hover {
        background: rgba(0, 119, 190, 0.06);
        color: var(--primary-color);
        transform: none;
    }

    nav a.active {
        background: rgba(0, 119, 190, 0.1);
        color: var(--primary-color);
        font-weight: 600;
    }

    nav a::after {
        display: none;
    }

    .hero {
        min-height: 100vh;
        padding: 0;
        position: relative;
        display: flex;
        align-items: center;
    }

    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
    }

    .hero-bg-image {
        opacity: 0.35;
        filter: brightness(0.5);
    }

    .hero-image-overlay {
        background: linear-gradient(180deg, rgba(0, 90, 140, 0.92) 0%, rgba(0, 119, 190, 0.88) 50%, rgba(0, 90, 140, 0.92) 100%);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2rem 1.25rem 3rem;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hero-content {
        text-align: center;
        order: 2;
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .hero-image {
        order: 1;
        position: relative;
        z-index: 2;
        margin-bottom: 0;
        width: 100%;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
        letter-spacing: -0.3px;
        line-height: 1.25;
        font-weight: 800;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .hero-content p {
        font-size: 1.05rem;
        margin-bottom: 2.5rem;
        max-width: 100%;
        line-height: 1.7;
        opacity: 0.98;
        text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
        padding: 0 0.5rem;
    }

    .hero-buttons {
        justify-content: center;
        gap: 1rem;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 100%;
    }

    .hero-buttons .btn {
        padding: 1.1rem 1.75rem;
        font-size: 1rem;
        width: 100%;
        max-width: 100%;
        font-weight: 600;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .hero-image-wrapper {
        transform: perspective(1000px) rotateY(0deg);
        border-radius: 20px;
        max-width: 100%;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        overflow: hidden;
    }

    .hero-image-wrapper:hover {
        transform: perspective(1000px) rotateY(0deg) scale(1);
    }

    .hero-image-wrapper img {
        border-radius: 20px;
        width: 100%;
        height: auto;
        display: block;
    }
}

/* Extra Small Devices (phones, 480px and down) */
@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
    }

    .hero-container {
        padding: 1.5rem 1rem 2.5rem;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        padding: 0;
    }

    .hero-buttons .btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero-image-wrapper {
        border-radius: 15px;
    }

    .hero-image-wrapper img {
        border-radius: 15px;
    }

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

    .section-title::after {
        width: 60px;
        height: 3px;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

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

    .service-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 1.2rem;
    }

    .service-icon {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .fixed-actions {
        bottom: 1rem;
        right: 1rem;
    }

    .fixed-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .header-container {
        padding: 0 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .logo {
        height: 50px;
    }

    .logo img {
        max-width: 150px;
    }

    .service-detail-hero {
        padding: 3rem 1.5rem;
    }

    .service-detail-hero h1 {
        font-size: 1.8rem;
        letter-spacing: -0.3px;
    }

    .service-detail-hero p {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

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

    .feature-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 1.2rem;
        border-radius: 20px;
    }

    .feature-icon {
        font-size: 2.2rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

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

    .process-connector {
        width: 4px;
        height: 50px;
        margin: 1rem auto;
        flex-direction: column;
        min-width: auto;
    }

    .connector-line {
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, var(--accent-color), var(--primary-color), var(--accent-color));
        animation: expandLineVertical 1s ease-out backwards;
    }

    .process-connector:nth-child(2) .connector-line { animation-delay: 0.3s; }
    .process-connector:nth-child(4) .connector-line { animation-delay: 0.5s; }
    .process-connector:nth-child(6) .connector-line { animation-delay: 0.7s; }

    .connector-arrow {
        right: auto;
        bottom: -20px;
        top: auto;
        transform: rotate(90deg);
        animation: pulseVertical 2s ease-in-out infinite;
    }

    @keyframes expandLineVertical {
        from {
            height: 0;
            opacity: 0;
        }
        to {
            height: 100%;
            opacity: 1;
        }
    }

    @keyframes pulseVertical {
        0%, 100% {
            transform: rotate(90deg) translateY(0);
            opacity: 1;
        }
        50% {
            transform: rotate(90deg) translateY(5px);
            opacity: 0.7;
        }
    }

    .process-card {
        padding: 2.5rem 2rem;
    }

    .process-number-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 1.2rem;
    }

    .process-number {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        border-width: 3px;
    }

    .process-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }

    .process-step h3 {
        font-size: 1.3rem;
    }

    .process-step p {
        font-size: 0.95rem;
    }

    /* CTA Band Mobile */
    .cta-band {
        padding: 3.5rem 1.5rem;
        margin: 3rem 0;
        border-radius: 20px;
    }

    .cta-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .cta-band h2 {
        font-size: 1.8rem;
        margin-bottom: 1.25rem;
    }

    .cta-band p {
        font-size: 1.05rem;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .cta-btn {
        width: 100%;
        max-width: 100%;
        padding: 1.1rem 2rem;
        font-size: 1rem;
        justify-content: center;
    }

    .cta-features {
        gap: 1.5rem;
        flex-direction: column;
    }

    .cta-feature {
        font-size: 0.95rem;
    }

    /* Contact Page Mobile */
    .contact-hero {
        padding: 4rem 1.5rem;
        min-height: auto;
    }

    .contact-hero h1 {
        font-size: 2.8rem;
    }

    .contact-hero-subtitle {
        font-size: 1.2rem;
    }

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

    .modern-contact-form-wrapper {
        position: static;
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }

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

    .form-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .form-header h2 {
        font-size: 1.8rem;
    }

    .form-header p {
        font-size: 0.95rem;
    }

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

    .contact-card-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .contact-card-icon {
        font-size: 2rem;
    }

    .modern-map-container {
        border-radius: 20px;
        border-width: 3px;
    }

    .modern-map-container iframe {
        height: 400px;
    }

    .contact-action-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .modern-form-submit {
        padding: 1.15rem 2rem;
        font-size: 1.05rem;
    }

    /* Quick Quote Mobile */
    .quick-quote-section {
        padding: 3rem 1.5rem;
    }

    .quick-quote-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .quick-quote-form-wrapper {
        position: static;
        padding: 2rem 1.5rem;
        border-radius: 20px;
        margin-top: 0;
    }

    .quick-quote-content {
        order: 1;
    }

    .quick-quote-form-wrapper {
        order: 2;
    }

    .quick-quote-content .section-title {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .quick-quote-content .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .quick-quote-content .section-subtitle {
        text-align: center;
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .quick-quote-features {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .quick-quote-feature {
        padding: 1rem 1.25rem;
        border-radius: 12px;
    }

    .quick-quote-feature .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }

    .quick-quote-feature span:last-child {
        font-size: 0.95rem;
    }

    .quick-quote-form {
        gap: 1.25rem;
    }

    .quick-quote-form .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .quick-quote-form .form-group {
        margin-bottom: 0;
    }

    .quick-quote-form .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .quick-quote-form .form-group input,
    .quick-quote-form .form-group select,
    .quick-quote-form .form-group textarea {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
        border-radius: 12px;
    }

    .quick-quote-submit {
        padding: 1.15rem 2rem;
        font-size: 1.05rem;
        width: 100%;
    }

    .form-note {
        font-size: 0.85rem;
        margin-top: 0.75rem;
    }

    /* About Page Mobile */
    .section {
        padding: 3rem 0;
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .section .container {
        width: 100%;
        max-width: 100%;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        box-sizing: border-box;
    }

    .about-hero {
        padding: 3rem 1.5rem;
        min-height: auto;
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .about-hero-content {
        width: 100%;
        max-width: 100%;
    }

    .about-hero h1 {
        font-size: 2.2rem;
        margin-bottom: 0.75rem;
        word-wrap: break-word;
    }

    .about-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
    }

    .about-stats {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
        margin-top: 1.5rem !important;
        width: 100%;
        max-width: 100%;
    }

    .stat-item {
        padding: 1.25rem 0.75rem;
        border-radius: 12px;
        width: 100%;
        box-sizing: border-box;
    }

    .stat-number {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
        line-height: 1.3;
        word-wrap: break-word;
    }

    .mission-vision-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin-top: 2rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .mission-vision-card {
        padding: 2rem 1.5rem;
        border-radius: 16px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        min-width: 0;
    }

    .mv-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .mv-icon {
        font-size: 2.2rem;
    }

    .mission-vision-card h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        word-wrap: break-word;
    }

    .mission-vision-card p {
        font-size: 0.95rem;
        line-height: 1.7;
        word-wrap: break-word;
    }

    .values-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.25rem !important;
        margin-top: 2rem !important;
        width: 100%;
        max-width: 100%;
    }

    .value-card {
        padding: 1.75rem 1.25rem;
        border-radius: 14px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
    }

    .value-icon {
        font-size: 2.2rem;
        margin-bottom: 0.75rem;
    }

    .value-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        word-wrap: break-word;
    }

    .value-card p {
        font-size: 0.85rem;
        line-height: 1.5;
        word-wrap: break-word;
    }

    .services-overview-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
        margin-top: 2rem !important;
        width: 100%;
        max-width: 100%;
    }

    .service-overview-item {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
        border-radius: 10px;
        width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
    }

    .about-intro {
        padding: 0;
        text-align: left;
        width: 100%;
        max-width: 100%;
    }

    .about-intro-text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        text-align: left;
        word-wrap: break-word;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
        word-wrap: break-word;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
    }

    .features-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
        margin-top: 2rem !important;
        width: 100%;
        max-width: 100%;
    }

    .feature-card {
        padding: 1.75rem 1.25rem;
        border-radius: 14px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
    }

    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .feature-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* Modern Gallery Mobile */
    .modern-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }

    /* Gallery Actions Mobile */
    .gallery-actions {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    .gallery-btn {
        width: 100%;
        max-width: 100%;
        min-width: auto;
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Gallery Carousel Mobile */
    .gallery-carousel-container {
        margin: 2rem 0;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    .gallery-carousel-item {
        aspect-ratio: 4/3;
    }

    .carousel-indicators {
        gap: 0.4rem;
        margin-top: 1rem;
    }

    .carousel-indicator {
        width: 10px;
        height: 10px;
    }

    .carousel-counter {
        font-size: 0.9rem;
        margin-top: 0.75rem;
    }
}

/* Extra Small Devices (phones, 480px and down) */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    body {
        overflow-x: hidden;
        width: 100%;
    }

    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }

    .carousel-prev {
        left: 5px;
    }

    .carousel-next {
        right: 5px;
    }

    .gallery-carousel-item {
        aspect-ratio: 1;
    }

    /* CTA Band Extra Small */
    .cta-band {
        padding: 3rem 1.25rem;
        border-radius: 15px;
    }

    .cta-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .cta-band h2 {
        font-size: 1.5rem;
    }

    .cta-band p {
        font-size: 1rem;
    }

    .cta-btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Gallery Actions Extra Small */
    .gallery-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Contact Page Extra Small */
    .contact-hero {
        padding: 3rem 1rem;
    }

    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .contact-hero-subtitle {
        font-size: 1rem;
    }

    .modern-contact-card {
        padding: 1.75rem 1.25rem;
        border-radius: 20px;
    }

    .contact-card-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1.25rem;
    }

    .contact-card-icon {
        font-size: 1.8rem;
    }

    .modern-contact-card h3 {
        font-size: 1.3rem;
    }

    .contact-link {
        font-size: 1rem;
    }

    .modern-contact-form-wrapper {
        padding: 2rem 1.25rem;
        border-radius: 20px;
    }

    .form-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1.25rem;
    }

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

    .form-header p {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .modern-form-submit {
        padding: 1rem 1.75rem;
        font-size: 1rem;
    }

    .modern-map-container {
        border-radius: 16px;
        border-width: 2px;
    }

    .modern-map-container iframe {
        height: 350px;
    }

    .contact-action-btn {
        padding: 0.85rem 1.25rem;
        font-size: 0.9rem;
    }

    /* Quick Quote Extra Small */
    .quick-quote-section {
        padding: 2.5rem 1rem;
    }

    .quick-quote-wrapper {
        gap: 2rem;
    }

    .quick-quote-form-wrapper {
        padding: 1.75rem 1.25rem;
        border-radius: 16px;
    }

    .quick-quote-content .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .quick-quote-content .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .quick-quote-features {
        gap: 0.75rem;
        margin-top: 1.25rem;
    }

    .quick-quote-feature {
        padding: 0.9rem 1rem;
        border-radius: 12px;
    }

    .quick-quote-feature .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
        border-radius: 10px;
    }

    .quick-quote-feature span:last-child {
        font-size: 0.9rem;
    }

    .quick-quote-form {
        gap: 1rem;
    }

    .quick-quote-form .form-row {
        gap: 1rem;
    }

    .quick-quote-form .form-group label {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .quick-quote-form .form-group input,
    .quick-quote-form .form-group select,
    .quick-quote-form .form-group textarea {
        padding: 0.9rem 1.15rem;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .quick-quote-submit {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
    }

    .form-note {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }

    /* About Page Extra Small */
    .section {
        padding: 2.5rem 0;
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .section .container {
        width: 100%;
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
        box-sizing: border-box;
    }

    .about-hero {
        padding: 2.5rem 1rem;
        min-height: auto;
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .about-hero-content {
        width: 100%;
        max-width: 100%;
    }

    .about-hero h1 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
        word-wrap: break-word;
    }

    .about-hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
        word-wrap: break-word;
    }

    .about-stats {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
        margin-top: 1.25rem !important;
        width: 100%;
        max-width: 100%;
    }

    .stat-item {
        padding: 1rem 0.75rem;
        border-radius: 10px;
        width: 100%;
        box-sizing: border-box;
    }

    .stat-number {
        font-size: 1.75rem;
        margin-bottom: 0.25rem;
    }

    .stat-label {
        font-size: 0.75rem;
        line-height: 1.3;
        word-wrap: break-word;
    }

    .values-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-top: 1.5rem !important;
        width: 100%;
        max-width: 100%;
    }

    .value-card {
        padding: 1.5rem 1rem;
        border-radius: 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
    }

    .value-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .value-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        word-wrap: break-word;
    }

    .value-card p {
        font-size: 0.8rem;
        line-height: 1.4;
        word-wrap: break-word;
    }

    .services-overview-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
        margin-top: 1.5rem !important;
        width: 100%;
        max-width: 100%;
    }

    .service-overview-item {
        padding: 0.9rem 0.5rem;
        font-size: 0.85rem;
        border-radius: 8px;
        width: 100%;
        box-sizing: border-box;
        word-wrap: break-word;
    }

    .mission-vision-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
        margin-top: 1.5rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .mission-vision-card {
        padding: 1.5rem 1rem;
        border-radius: 12px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        min-width: 0;
    }

    .mv-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .mv-icon {
        font-size: 2rem;
    }

    .mission-vision-card h2 {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }

    .mission-vision-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .about-intro-text {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .features-grid {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }

    .feature-icon-wrapper {
        width: 55px;
        height: 55px;
        margin-bottom: 0.75rem;
    }

    .feature-icon {
        font-size: 1.8rem;
    }

    .feature-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .feature-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .mission-vision-grid {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .mission-vision-card {
        padding: 1.75rem 1.25rem;
        border-radius: 14px;
    }

    .mv-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1.25rem;
    }

    .mv-icon {
        font-size: 2rem;
    }

    .mission-vision-card h2 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }

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

    .about-intro-text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .features-grid {
        gap: 1.25rem;
        margin-top: 1.5rem;
    }

    .feature-card {
        padding: 1.75rem 1.25rem;
        border-radius: 14px;
    }

    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .feature-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* Modern Gallery Extra Small */
    .modern-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.75rem;
    }

    .modern-gallery-item {
        border-radius: 8px;
    }
}
