@charset "utf-8";
/*

TemplateMo 592 glossy touch

https://templatemo.com/tm-592-glossy-touch

*/

html {
    background-color: #0f1e3d;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    button[type="submit"] {
        font-family: inherit;
        font-size: 16px;
    }
}
body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(
        135deg,
        #0c0c0c 0%,
        #1a1a2e 15%,
        #16213e 35%,
        #0f3460 50%,
        #533a7d 70%,
        #8b5a8c 85%,
        #a0616a 100%
    );
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
#topSentinel {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
}
/* Animated background elements */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}
.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}
.shape:nth-child(1) {
    width: 120px;
    height: 80px;
    border-radius: 15px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(15deg);
}
.shape:nth-child(2) {
    width: 90px;
    height: 140px;
    border-radius: 12px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    transform: rotate(-20deg);
}
.shape:nth-child(3) {
    width: 100px;
    height: 60px;
    border-radius: 10px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
    transform: rotate(25deg);
}
.shape:nth-child(4) {
    width: 80px;
    height: 120px;
    border-radius: 8px;
    top: 10%;
    right: 30%;
    animation-delay: 1s;
    transform: rotate(-10deg);
}
.shape:nth-child(5) {
    width: 110px;
    height: 70px;
    border-radius: 14px;
    bottom: 40%;
    right: 20%;
    animation-delay: 3s;
    transform: rotate(30deg);
}
.shape:nth-child(6) {
    width: 95px;
    height: 95px;
    border-radius: 20px;
    top: 40%;
    left: 5%;
    animation-delay: 5s;
    transform: rotate(-15deg);
}
@keyframes float {
    0%,
    100% {
        transform: translateY(0px) rotate(var(--start-rotation, 0deg));
    }
    50% {
        transform: translateY(-20px)
            rotate(calc(var(--start-rotation, 0deg) + 180deg));
    }
}
/* Glass container styles */
.glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}
/* Header styles */
header {
    position: sticky;
    top: 0;
    z-index: 50000;
    padding: 20px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
/* Navigation styles */
nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 30px 45px;
    gap: 0;
    position: relative;
}
nav.glass {
    overflow: visible;
}
nav.glass:hover {
    transform: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.nav-top {
    display: flex;
    align-items: center;
    gap: 15px;
}
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    cursor: pointer;
    padding: 8px;
    transition: background 0.25s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
}
.hamburger:hover {
    background: rgba(255, 255, 255, 0.2);
}
.hamburger:focus {
    outline: none;
}
.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}
.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.logo {
    font-size: 32px;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}
.logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}
.logo:hover img {
    transform: scale(1.08) translateY(-2px);
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.35));
}
.logo-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}
.logo:hover .logo-icon svg {
    transform: scale(1.1) translateY(-2px);
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.4));
}
.nav-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}
.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 12px 24px 13px 24px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
.nav-links a:hover,
.nav-links a.active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
/* Page system */
.page {
    display: block;
    padding: 40px 20px 20px;
    overflow-x: clip;
}
.hero-section,
.features,
.about-content,
.team-section,
.reviews-section,
#home.page {
    padding: 0 20px 0;
    overflow-x: clip;
}
#about.page {
    padding: 0 20px;
}
/* Content wrapper to contain page content */
.content-wrapper {
    min-height: auto;
}
/* Home page styles */
.hero-section {
    position: relative;
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-top: -160px;
    padding-top: 160px;
    padding-bottom: 0;
    overflow: hidden;
    z-index: 0;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/bg4.jpg') center center / cover no-repeat;
    animation: heroBgZoom 12s ease-in-out infinite alternate;
    z-index: 0;
}
.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            transparent 0%,
            rgba(22, 33, 62, 0.1) 20%,
            rgba(15, 52, 96, 0.2) 50%,
            rgba(22, 33, 62, 0.15) 82%,
            #16213e 100%
        ),
        linear-gradient(135deg,
            rgba(83, 58, 125, 0.3) 0%,
            rgba(12, 12, 12, 0.35) 100%
        );
    z-index: 1;
}
@keyframes heroBgZoom {
    from { transform: scale(1.08) translateY(0); }
    to   { transform: scale(1.17) translateY(-1.5%); }
}
.hero {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 60px 40px;
    margin: 0 auto;
    max-width: 1200px;
    background: none;
    box-shadow: none;
    backdrop-filter: none;
    border: none;
}
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image img {
    width: 100%;
    max-width: 440px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.hero-content {
    text-align: left;
}
.hero h1 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}
.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}
.cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
button[type="submit"] {
    font-family: inherit;
    font-size: 16px;
}
.features {
    position: relative;
    width: calc(100% + 40px);
    margin-left: -20px;
    padding: 90px 40px;
    margin-bottom: 0;
    overflow: hidden;
}
.features::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/bg1.jpg') center center / cover no-repeat;
    animation: featuresBgZoom 14s ease-in-out infinite alternate;
    z-index: 0;
}
.features::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            #16213e 0%,
            rgba(22, 33, 62, 0.15) 18%,
            rgba(15, 52, 96, 0.25) 50%,
            rgba(22, 33, 62, 0.15) 82%,
            #16213e 100%
        ),
        linear-gradient(135deg,
            rgba(83, 58, 125, 0.35) 0%,
            rgba(12, 12, 12, 0.45) 100%
        );
    z-index: 1;
}
.features-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
@keyframes featuresBgZoom {
    from { transform: scale(1.08) translateY(0); }
    to   { transform: scale(1.17) translateY(-1.5%); }
}
.feature-card {
    padding: 40px 30px;
    text-align: center;
    color: white;
}
.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
}
.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}
.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}
/* About page styles */
.about-content {
    position: relative;
    width: calc(100% + 40px);
    margin-left: -20px;
    padding: 90px 40px;
    margin-bottom: 0;
    overflow: hidden;
}
.about-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/bg3.jpg') center center / cover no-repeat;
    animation: aboutBgZoom 18s ease-in-out infinite alternate;
    z-index: 0;
}
.about-content::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            #16213e 0%,
            rgba(22, 33, 62, 0.15) 18%,
            rgba(15, 52, 96, 0.25) 50%,
            rgba(22, 33, 62, 0.15) 82%,
            #16213e 100%
        ),
        linear-gradient(135deg,
            rgba(83, 58, 125, 0.35) 0%,
            rgba(12, 12, 12, 0.45) 100%
        );
    z-index: 1;
}
.about-content-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
@keyframes aboutBgZoom {
    from { transform: scale(1.08) translateY(0); }
    to   { transform: scale(1.17) translateY(-1.5%); }
}
.about-text {
    padding: 40px;
    color: white;
}
.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}
.about-right-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.about-image-wrap {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    flex-shrink: 0;
    max-height: 260px;
}
.about-img {
    width: 100%;
    height: 100%;
    max-height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.about-image-wrap:hover .about-img {
    transform: scale(1.04);
}
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: 20px;
    margin-bottom: 0;
}
.stat-card {
    text-align: center;
    padding: 30px;
    color: white;
}
.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}
/* Team section styles */
.team-section {
    position: relative;
    width: calc(100% + 40px);
    margin-left: -20px;
    padding: 90px 40px;
    margin-bottom: 0;
    overflow: hidden;
}
.team-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/bg2.jpg') center center / cover no-repeat;
    animation: teamBgZoom 16s ease-in-out infinite alternate;
    z-index: 0;
}
.team-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            #16213e 0%,
            rgba(22, 33, 62, 0.15) 18%,
            rgba(15, 52, 96, 0.25) 50%,
            rgba(22, 33, 62, 0.15) 82%,
            #16213e 100%
        ),
        linear-gradient(135deg,
            rgba(83, 58, 125, 0.35) 0%,
            rgba(12, 12, 12, 0.45) 100%
        );
    z-index: 1;
}
.team-section-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}
@keyframes teamBgZoom {
    from { transform: scale(1.08) translateY(0); }
    to   { transform: scale(1.17) translateY(-1.5%); }
}
.team-section h2 {
    font-size: 2.5rem;
    color: white;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 30px;
}
.team-member {
    padding: 40px 30px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
}
.team-member:hover {
    transform: translateY(-10px);
}
.team-avatar {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}
.team-member:hover .team-avatar {
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.25);
}
.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: white;
}
.team-member .role {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}
.team-member .bio {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}
.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.team-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.team-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: white;
}
/* Services page styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Reviews section full-width bg */
.reviews-section {
    position: relative;
    width: calc(100% + 40px);
    margin-left: -20px;
    padding: 90px 40px;
    overflow: hidden;
}
.reviews-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/bg5.jpg') center center / cover no-repeat;
    animation: reviewsBgZoom 15s ease-in-out infinite alternate;
    z-index: 0;
}
.reviews-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            #16213e 0%,
            rgba(22, 33, 62, 0.15) 18%,
            rgba(15, 52, 96, 0.25) 50%,
            rgba(22, 33, 62, 0.15) 82%,
            #16213e 100%
        ),
        linear-gradient(135deg,
            rgba(83, 58, 125, 0.35) 0%,
            rgba(12, 12, 12, 0.45) 100%
        );
    z-index: 1;
}
.reviews-section-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}
@keyframes reviewsBgZoom {
    from { transform: scale(1.08) translateY(0); }
    to   { transform: scale(1.17) translateY(-1.5%); }
}

/* Reviews */
.reviews-header {
    padding: 50px 40px;
    text-align: center;
    margin-bottom: 40px;
}
.reviews-header h1 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.reviews-header p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 28px;
    margin-bottom: 40px;
}
.review-card {
    padding: 32px 30px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}
.review-stars {
    display: flex;
    gap: 5px;
    font-size: 18px;
    color: #f5c518;
}
.review-stars .fa-regular.fa-star {
    color: rgba(245, 197, 24, 0.4);
}
.review-quote-icon {
    font-size: 22px;
    color: rgba(255,255,255,0.25);
    margin-bottom: -8px;
}
.review-text {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.7;
    flex: 1;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.review-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    flex-shrink: 0;
}
.review-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.5px;
}
.service-card {
    padding: 40px 30px;
    color: white;
    text-align: left;
}
.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    margin-right: 15px;
}
.service-card h3 {
    font-size: 1.4rem;
    color: white;
}
.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}
.service-features {
    list-style: none;
}
.service-features li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}
.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.9);
}
/* Contact page styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.contact-map-section {
    margin-top: 40px;
}

/* Video Testimonial full-width bg */
.video-bg-section {
    position: relative;
    width: 100%;
    padding: 90px 40px 0;
    overflow: clip;
}
.video-bg-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/bg6.jpg') center center / cover no-repeat;
    animation: videoBgZoom 13s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}
.video-bg-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            #16213e 0%,
            rgba(22, 33, 62, 0.15) 18%,
            rgba(15, 52, 96, 0.25) 50%,
            rgba(22, 33, 62, 0.5) 80%,
            #0f1e3d 100%
        ),
        linear-gradient(135deg,
            rgba(83, 58, 125, 0.35) 0%,
            rgba(12, 12, 12, 0.45) 100%
        );
    z-index: 1;
    pointer-events: none;
}
.video-bg-inner {
    position: relative;
    z-index: 21000;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 0;
}
@keyframes videoBgZoom {
    from { transform: scale(1.08) translateY(0); }
    to   { transform: scale(1.17) translateY(-1.5%); }
}

/* Video Testimonial */
.video-testimonial-section {
    margin-top: 40px;
}
.video-testimonial-card {
    padding: 40px;
}
.video-testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}
.video-testimonial-icon {
    font-size: 42px;
    color: rgba(255, 255, 255, 0.85);
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(255,255,255,0.2));
}
.video-testimonial-header h2 {
    font-size: 1.9rem;
    color: white;
    margin-bottom: 6px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.video-testimonial-header p {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
}
.video-testimonial-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    background: #000;
}
.video-testimonial-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 600px;
    object-fit: cover;
}
.contact-form {
    padding: 40px;
}
.contact-form h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-weight: 500;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.form-group textarea {
    height: 120px;
    resize: vertical;
    line-height: 1.5;
}
.contact-info {
    padding: 40px;
    color: white;
}
.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.contact-item-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 16px;
    color: white;
}
.contact-item-text h4 {
    color: white;
    margin-bottom: 5px;
}
.contact-item-text p {
    color: rgba(255, 255, 255, 0.8);
}
.contact-map {
    padding: 40px;
    color: white;
    width: 100%;
}
.contact-map h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}
.map-container {
    width: 100%;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
}
.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}
.map-placeholder-icon {
    font-size: 52px;
    margin-bottom: 20px;
    opacity: 0.7;
    color: white;
}
.map-placeholder p {
    margin: 8px 0;
    font-size: 16px;
}
.map-placeholder .address {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}
.map-placeholder .integration-note {
    font-size: 14px;
    opacity: 0.6;
    margin-top: 20px;
}
/* Footer styles */
#footer {
    margin: 60px auto 0;
    padding: 0;
    position: relative;
    z-index: 20000;
    max-width: 1200px;
    width: 100%;
}
#footer footer.glass {
    margin-bottom: 0;
    border-radius: 20px 20px 0 0;
}
#footer footer.glass:hover {
    transform: none;
}

/* About Learn More button */
.about-learn-btn {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: white;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.about-learn-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* About Modal */
.about-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 10, 30, 0.55);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 60000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.about-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}
.about-modal-box {
    position: relative;
    width: 100%;
    max-width: 720px;
    max-height: 88vh;
    overflow-y: auto;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
    transform: translateY(24px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.about-modal-overlay.open .about-modal-box {
    transform: translateY(0) scale(1);
}
.about-modal-box.glass:hover {
    transform: translateY(0) scale(1);
}
.about-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    touch-action: manipulation;
}
.about-modal-close:hover {
    background: rgba(255, 255, 255, 0.22);
}
.about-modal-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.about-modal-icon {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
}
.about-modal-header h2 {
    font-size: 1.7rem;
    color: white;
    font-weight: 700;
}
.about-modal-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.about-modal-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.about-modal-section h3 i {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}
.about-modal-section p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    margin-bottom: 8px;
}
.about-modal-section p strong {
    color: rgba(255, 255, 255, 0.95);
}
.about-modal-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.2s ease;
}
.about-modal-email:hover {
    background: rgba(255, 255, 255, 0.22);
}
@media (max-width: 600px) {
    .about-modal-box {
        padding: 24px 18px;
        max-height: 92vh;
    }
    .about-modal-header h2 {
        font-size: 1.3rem;
    }
    .about-modal-icon {
        font-size: 24px;
    }
}

/* Cookie Banner */
#cookieBanner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    width: calc(100% - 48px);
    max-width: 860px;
    background: rgba(15, 25, 55, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.45);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 10000;
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
}
#cookieBanner.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
#cookieBanner.hiding {
    transform: translateX(-50%) translateY(120px);
    opacity: 0;
}
.cookie-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}
.cookie-icon {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(255,255,255,0.15));
}
.cookie-text strong {
    display: block;
    color: white;
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.cookie-text p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.82rem;
    line-height: 1.5;
    margin: 0;
}
.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-family: inherit;
}
.cookie-decline {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
}
.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}
.cookie-accept {
    background: rgba(255, 255, 255, 0.9);
    color: #0f1e3d;
    border-color: transparent;
}
.cookie-accept:hover {
    background: white;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}
@media (max-width: 600px) {
    #cookieBanner {
        flex-direction: column;
        align-items: flex-start;
        bottom: 16px;
        padding: 18px;
    }
    .cookie-actions {
        width: 100%;
    }
    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}

/* Site Guide */
#siteGuide {
    position: fixed;
    bottom: 98px;
    right: 36px;
    z-index: 9999;
    width: fit-content;
    height: fit-content;
    pointer-events: none;
}
#guideBtn {
    pointer-events: auto;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    flex-shrink: 0;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
#guideBtn:hover {
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 6px 28px rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}
#guideBtn.active {
    background: rgba(255, 255, 255, 0.28);
    transform: rotate(30deg);
}
#siteGuidePanel {
    position: absolute;
    bottom: 62px;
    right: 0;
    width: 280px;
    background: rgba(15, 25, 55, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(16px) scale(0.95);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform-origin: bottom right;
}
#siteGuidePanel.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.guide-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.guide-panel-header i {
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.7);
}
.guide-close-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-size: 16px;
    padding: 2px 4px;
    transition: color 0.2s;
}
.guide-close-btn:hover {
    color: white;
}
.guide-nav-list {
    list-style: none;
    padding: 8px 0;
    margin: 0;
}
.guide-nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 11px 18px;
    text-decoration: none;
    color: white;
    transition: background 0.2s ease;
    border-radius: 0;
}
.guide-nav-item:hover {
    background: rgba(255, 255, 255, 0.08);
}
.guide-nav-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    flex-shrink: 0;
    transition: background 0.2s;
}
.guide-nav-item:hover .guide-nav-icon {
    background: rgba(255, 255, 255, 0.2);
}
.guide-nav-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.guide-nav-text strong {
    font-size: 0.92rem;
    font-weight: 600;
    color: white;
}
.guide-nav-text span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
}
.guide-panel-footer {
    padding: 12px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Scroll to top button */
#scrollTopBtn {
    position: fixed;
    bottom: 36px;
    right: 36px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.35s ease, transform 0.35s ease, background 0.25s ease, box-shadow 0.25s ease;
    pointer-events: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
}
#scrollTopBtn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
#scrollTopBtn:hover,
#scrollTopBtn:active {
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 6px 28px rgba(255, 255, 255, 0.15);
}
.footer-content {
    padding: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    padding: 5px 10px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.footer-links a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}
.copyright a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
}
/* Responsive design */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    /* Adjust padding for mobile */
    .page {
        padding: 30px 20px 20px;
    }
    .about-content-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .about-content {
        padding: 40px 16px;
    }
    .about-text {
        padding: 24px 20px;
        text-align: center;
    }
    .about-text h2 {
        font-size: 1.6rem;
    }
    .about-right-col {
        gap: 16px;
    }
    .about-image-wrap {
        max-height: 200px;
    }
    .about-img {
        max-height: 200px;
    }
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .stat-number {
        font-size: 1.9rem;
    }
    .content-wrapper {
        min-height: auto;
    }
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }
    .hero-content {
        text-align: center;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    nav {
        flex-direction: column;
        padding: 14px 20px;
        gap: 0;
        position: relative;
        align-items: stretch;
    }
    .nav-top {
        justify-content: space-between;
        width: 100%;
    }
    .hamburger {
        display: flex;
    }
    .nav-links {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        background: rgba(15, 25, 55, 0.92);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 14px;
        padding: 10px 14px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
        z-index: 999;
        padding-top: 0;
        padding-bottom: 0;
    }
    .nav-links.open {
        max-height: 400px;
        opacity: 1;
        pointer-events: auto;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .nav-links a {
        display: block;
        text-align: center;
        width: 100%;
        font-size: 15px;
        padding: 10px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
    .nav-links a:last-child {
        border-bottom: none;
    }
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .about-content-inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .about-content {
        padding: 50px 20px;
    }
    .about-text {
        padding: 28px 24px;
        text-align: center;
    }
    .about-text h2 {
        font-size: 1.8rem;
    }
    .about-text p {
        font-size: 1rem;
    }
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 0;
    }
    .stat-card {
        padding: 20px 12px;
    }
    .stat-number {
        font-size: 2.2rem;
    }
    .stat-label {
        font-size: 0.9rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-links {
        gap: 15px;
        flex-direction: column;
        align-items: center;
        order: 2;
    }
    .copyright {
        order: 1;
    }
    .footer-links a {
        display: block;
        text-align: center;
        width: auto;
        min-width: 160px;
    }
    button[type="submit"] {
        width: 100%;
    }
    .map-container {
        height: 350px;
    }
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    .logo {
        font-size: 22px;
    }
    /* Video testimonial mobile */
    .video-bg-section {
        padding: 50px 16px 0;
    }
    .video-testimonial-card {
        padding: 20px 16px;
    }
    .video-testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 18px;
    }
    .video-testimonial-icon {
        font-size: 30px;
    }
    .video-testimonial-header h2 {
        font-size: 1.4rem;
    }
    .video-testimonial-header p {
        font-size: 0.9rem;
    }
    .video-testimonial-wrapper {
        border-radius: 10px;
    }
    .video-testimonial-wrapper video {
        max-height: 280px;
    }
}

@media (max-width: 480px) {
    #scrollTopBtn {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
    #siteGuide {
        bottom: 76px;
        right: 20px;
        width: fit-content;
        height: fit-content;
    }
    #guideBtn {
        width: 44px;
        height: 44px;
        font-size: 17px;
    }
    #siteGuidePanel {
        width: min(260px, calc(100vw - 40px));
        right: 0;
    }

}

/* ── GALLERY ─────────────────────────────────────────── */
.gallery-section {
    margin-top: 60px;
    margin-bottom: 60px;
}
.gallery-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 36px;
    margin-bottom: 36px;
    color: white;
}
.gallery-header-icon {
    font-size: 38px;
    color: rgba(255, 255, 255, 0.85);
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(255,255,255,0.2));
}
.gallery-header h2 {
    font-size: 1.9rem;
    color: white;
    margin-bottom: 6px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.gallery-header p {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
    margin: 0;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: 0 6px 24px rgba(0,0,0,0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 14px 40px rgba(0,0,0,0.5);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.08);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 60, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay i {
    font-size: 28px;
    color: white;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

/* ── GALLERY LIGHTBOX ────────────────────────────────── */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(5, 10, 25, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 99000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.gallery-lightbox.open {
    opacity: 1;
    visibility: visible;
}
.gallery-lightbox-img-wrap {
    max-width: min(1000px, 90vw);
    max-height: 82vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-lightbox-img-wrap img {
    max-width: 100%;
    max-height: 82vh;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    object-fit: contain;
    display: block;
    transition: opacity 0.25s ease;
}
.gallery-lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    touch-action: manipulation;
}
.gallery-lightbox-close:hover {
    background: rgba(255,255,255,0.22);
}
.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    touch-action: manipulation;
    z-index: 1;
}
.gallery-lightbox-prev { left: 20px; }
.gallery-lightbox-next { right: 20px; }
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
    background: rgba(255,255,255,0.22);
}
.gallery-lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

/* ── GALLERY RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}
@media (max-width: 768px) {
    .gallery-section {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 20px 18px;
        margin-bottom: 20px;
    }
    .gallery-header-icon {
        font-size: 28px;
    }
    .gallery-header h2 {
        font-size: 1.4rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .gallery-lightbox-prev { left: 8px; }
    .gallery-lightbox-next { right: 8px; }
    .gallery-lightbox-prev,
    .gallery-lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .gallery-item {
        border-radius: 10px;
    }
}

/* ══════════════════════════════════════════════════════
   PRELOADER
══════════════════════════════════════════════════════ */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        #0c0c0c 0%,
        #1a1a2e 15%,
        #16213e 35%,
        #0f3460 50%,
        #533a7d 70%,
        #8b5a8c 85%,
        #a0616a 100%
    );
    transition: opacity 0.55s ease, visibility 0.55s ease;
}
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Same floating shapes as the site */
.preloader-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.preloader-shapes .preloader-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}
.preloader-shapes .preloader-shape:nth-child(1) {
    width: 120px; height: 80px;
    border-radius: 15px;
    top: 20%; left: 10%;
    animation-delay: 0s;
}
.preloader-shapes .preloader-shape:nth-child(2) {
    width: 90px; height: 140px;
    border-radius: 12px;
    top: 60%; right: 15%;
    animation-delay: 2s;
    transform: rotate(-20deg);
}
.preloader-shapes .preloader-shape:nth-child(3) {
    width: 100px; height: 60px;
    border-radius: 10px;
    bottom: 20%; left: 20%;
    animation-delay: 4s;
    transform: rotate(25deg);
}
.preloader-shapes .preloader-shape:nth-child(4) {
    width: 80px; height: 120px;
    border-radius: 8px;
    top: 10%; right: 30%;
    animation-delay: 1s;
    transform: rotate(-10deg);
}
.preloader-shapes .preloader-shape:nth-child(5) {
    width: 110px; height: 70px;
    border-radius: 14px;
    bottom: 40%; right: 20%;
    animation-delay: 3s;
    transform: rotate(30deg);
}
.preloader-shapes .preloader-shape:nth-child(6) {
    width: 95px; height: 95px;
    border-radius: 20px;
    top: 40%; left: 5%;
    animation-delay: 5s;
    transform: rotate(-15deg);
}

/* Glass card — uses the same .glass class */
.preloader-card {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 48px 56px;
    min-width: 280px;
    /* override the hover lift from .glass */
    pointer-events: none;
}
.preloader-card:hover {
    transform: none;
}

/* Logo */
.preloader-logo {
    width: 110px;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 16px rgba(255, 255, 255, 0.18));
    animation: preloaderLogoPulse 2.6s ease-in-out infinite;
}
@keyframes preloaderLogoPulse {
    0%, 100% { opacity: 1;    filter: drop-shadow(0 4px 16px rgba(255,255,255,0.18)); }
    50%       { opacity: 0.82; filter: drop-shadow(0 4px 28px rgba(255,255,255,0.34)); }
}

/* Company name */
.preloader-name {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    white-space: nowrap;
}

/* Animated dots */
.preloader-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}
.preloader-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    animation: preloaderDot 1.4s ease-in-out infinite;
}
.preloader-dots span:nth-child(1) { animation-delay: 0s; }
.preloader-dots span:nth-child(2) { animation-delay: 0.22s; }
.preloader-dots span:nth-child(3) { animation-delay: 0.44s; }
@keyframes preloaderDot {
    0%, 80%, 100% { transform: scale(0.75); opacity: 0.35; }
    40%            { transform: scale(1.25); opacity: 1; }
}

/* ══════════════════════════════════════════════════════
   PRIVACY PAGE
══════════════════════════════════════════════════════ */
.privacy-page {
    max-width: 960px;
    margin: 0 auto;
    padding: 60px 20px 80px;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

/* Hero banner */
.privacy-hero {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 40px 44px;
    margin-bottom: 40px;
    color: white;
}
.privacy-hero-icon {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.privacy-hero-text h1 {
    font-size: 2.2rem;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.privacy-hero-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}
.privacy-hero:hover {
    transform: none;
}

/* Cards grid */
.privacy-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.privacy-card {
    padding: 36px 40px;
    color: white;
}
.privacy-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    margin-bottom: 18px;
    flex-shrink: 0;
}
.privacy-card h2 {
    font-size: 1.35rem;
    margin-bottom: 14px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.privacy-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 14px;
}
.privacy-card p:last-child {
    margin-bottom: 0;
}
.privacy-card a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}
.privacy-card a:hover {
    color: white;
}

/* Bullet list */
.privacy-list {
    list-style: none;
    margin: 14px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.privacy-list li {
    display: block;
    position: relative;
    padding-left: 20px;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}
.privacy-list li i {
    position: absolute;
    left: 0;
    top: 6px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
}
.privacy-list li strong {
    white-space: nowrap;
}

/* Email button */
.privacy-email-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 16px 0;
    padding: 12px 28px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: white !important;
    text-decoration: none !important;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.privacy-email-btn:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 768px) {
    .privacy-page {
        padding: 40px 16px 60px;
        gap: 24px;
    }
    .privacy-hero {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 28px 20px;
    }
    .privacy-hero-text h1 {
        font-size: 1.6rem;
    }
    .privacy-hero-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }
    .privacy-card {
        padding: 24px 20px;
    }
    .privacy-card h2 {
        font-size: 1.15rem;
    }
    .privacy-card p,
    .privacy-list li {
        font-size: 0.95rem;
    }
    .privacy-grid {
        gap: 14px;
    }
}
@media (max-width: 480px) {
    .privacy-hero-text h1 {
        font-size: 1.4rem;
    }
    .privacy-card {
        padding: 20px 16px;
    }
}

/* ══════════════════════════════════════════════════════
   FAQs PAGE
══════════════════════════════════════════════════════ */
.faqs-page {
    max-width: 820px;
}

/* Category block */
.faq-category {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}
.faq-category-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    align-self: flex-start;
    pointer-events: none;
    margin-bottom: 4px;
}
.faq-category-label:hover {
    transform: none;
}
.faq-category-label i {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

/* FAQ item */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.faq-item {
    overflow: hidden;
    border-radius: 16px;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}
.faq-item:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.18);
}

/* Question button */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    color: white;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.02rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    line-height: 1.5;
    transition: color 0.2s ease;
}
.faq-question:hover {
    color: rgba(255, 255, 255, 0.9);
}
.faq-icon {
    flex-shrink: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s ease;
}
.faq-item.open .faq-icon {
    transform: rotate(180deg);
    color: rgba(255, 255, 255, 0.85);
}

/* Answer panel */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.35s ease;
    padding: 0 24px;
}
.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 24px 22px;
}
.faq-answer p {
    font-size: 0.97rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
}
.faq-answer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}
.faq-answer a:hover {
    color: white;
}

/* CTA card */
.faq-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 36px;
    margin-top: 8px;
    flex-wrap: wrap;
    color: white;
}
.faq-cta:hover {
    transform: none;
}
.faq-cta-icon {
    font-size: 36px;
    color: rgba(255, 255, 255, 0.75);
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(255,255,255,0.15));
}
.faq-cta-text {
    flex: 1;
    min-width: 180px;
}
.faq-cta-text h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.faq-cta-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
    margin: 0;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 768px) {
    .faq-category {
        gap: 8px;
        margin-bottom: 24px;
    }
    .faq-question {
        padding: 16px 18px;
        font-size: 0.95rem;
    }
    .faq-answer {
        padding: 0 18px;
    }
    .faq-item.open .faq-answer {
        padding: 0 18px 18px;
    }
    .faq-cta {
        padding: 24px 20px;
        gap: 16px;
    }
    .faq-cta-icon {
        font-size: 28px;
    }
    .faq-cta-text h3 {
        font-size: 1.05rem;
    }
}
@media (max-width: 480px) {
    .faq-question {
        padding: 14px 16px;
        font-size: 0.9rem;
    }
    .faq-answer {
        padding: 0 16px;
    }
    .faq-item.open .faq-answer {
        padding: 0 16px 16px;
    }
    .faq-cta {
        padding: 20px 16px;
    }
}

/* ══════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════ */
.contact-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

/* Two-column layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start;
}

/* ── Form card ────────────────────────────────────────── */
.contact-form-wrap {
    padding: 40px 44px;
    color: white;
}
.contact-form-wrap:hover {
    transform: none;
}
.contact-form-title {
    font-size: 1.4rem;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.contact-form-title i {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
}

/* Form fields */
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.contact-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.contact-field--full {
    grid-column: 1 / -1;
}
.contact-field label {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
}
.field-optional {
    font-weight: 400;
    text-transform: none;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0;
}
.contact-field input,
.contact-field select,
.contact-field textarea {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 12px;
    padding: 13px 16px;
    color: white;
    font-size: 0.97rem;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    outline: none;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    width: 100%;
}
.contact-field select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='rgba(255,255,255,0.5)' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}
.contact-field select option {
    background: #1a1a2e;
    color: white;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: rgba(255,255,255,0.3);
}
.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    background: rgba(255,255,255,0.13);
    border-color: rgba(255,255,255,0.38);
    box-shadow: 0 0 0 3px rgba(255,255,255,0.06);
}
.contact-field input.field-error,
.contact-field select.field-error,
.contact-field textarea.field-error {
    border-color: rgba(255, 100, 100, 0.7);
    background: rgba(255, 80, 80, 0.08);
}
.contact-field textarea {
    resize: vertical;
    min-height: 130px;
}

/* Submit button */
.contact-submit {
    width: 100%;
    padding: 15px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.28);
    background: rgba(255,255,255,0.18);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    touch-action: manipulation;
}
.contact-submit:hover {
    background: rgba(255,255,255,0.26);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}
.contact-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

/* Success message */
.contact-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    gap: 16px;
}
.contact-success.visible {
    display: flex;
}
.contact-success-icon {
    font-size: 52px;
    color: rgba(130, 255, 160, 0.85);
    filter: drop-shadow(0 4px 14px rgba(100,255,140,0.3));
}
.contact-success h3 {
    font-size: 1.5rem;
    color: white;
    margin: 0;
}
.contact-success p {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 400px;
    margin: 0;
}

/* ── Info sidebar ─────────────────────────────────────── */
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 24px;
    color: white;
}
.contact-info-card:hover {
    transform: translateY(-3px);
}
.contact-info-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
}
.contact-info-body h3 {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-bottom: 6px;
}
.contact-info-body a {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
    margin-bottom: 4px;
    transition: color 0.2s ease;
}
.contact-info-body a:hover {
    color: rgba(255,255,255,0.8);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.contact-info-body p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin: 0;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .contact-info-col {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .contact-page {
        padding: 40px 16px 60px;
    }
    .contact-form-wrap {
        padding: 28px 20px;
    }
    .contact-form {
        grid-template-columns: 1fr;
    }
    .contact-form-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    .contact-info-col {
        grid-template-columns: 1fr;
    }
    .contact-info-card {
        padding: 18px 18px;
    }
}
@media (max-width: 480px) {
    .contact-form-wrap {
        padding: 22px 16px;
    }
    .contact-info-card {
        padding: 16px 16px;
        gap: 14px;
    }
    .contact-info-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ── Contact Map ──────────────────────────────────────── */
.contact-map-wrap {
    margin-top: 28px;
    padding: 32px 36px 0;
    overflow: hidden;
    color: white;
}
.contact-map-wrap:hover {
    transform: none;
}
.contact-map-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}
.contact-map-title {
    font-size: 1.25rem;
    margin-bottom: 5px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.contact-map-subtitle {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}
.contact-map-frame {
    width: calc(100% + 72px);
    margin-left: -36px;
    height: 420px;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
}
.contact-map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: brightness(0.88) saturate(0.9);
}

@media (max-width: 768px) {
    .contact-map-wrap {
        padding: 24px 20px 0;
        margin-top: 20px;
    }
    .contact-map-header {
        gap: 14px;
        margin-bottom: 18px;
    }
    .contact-map-title {
        font-size: 1.1rem;
    }
    .contact-map-frame {
        width: calc(100% + 40px);
        margin-left: -20px;
        height: 300px;
        border-radius: 0 0 16px 16px;
    }
}
@media (max-width: 480px) {
    .contact-map-wrap {
        padding: 20px 16px 0;
    }
    .contact-map-frame {
        width: calc(100% + 32px);
        margin-left: -16px;
        height: 240px;
    }
}

/* ══════════════════════════════════════════════════════
   FORM RESULT MODALS (contact.html)
══════════════════════════════════════════════════════ */
.form-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 10, 30, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 60000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.form-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.form-modal-box {
    position: relative;
    width: 100%;
    max-width: 480px;
    border-radius: 24px;
    padding: 48px 44px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    transform: translateY(28px) scale(0.96);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: white;
}
.form-modal-overlay.open .form-modal-box {
    transform: translateY(0) scale(1);
}
.form-modal-box:hover {
    transform: translateY(0) scale(1);
}

/* Close × */
.form-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
    touch-action: manipulation;
}
.form-modal-close:hover {
    background: rgba(255,255,255,0.22);
    color: white;
}

/* Big icon */
.form-modal-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 4px;
    flex-shrink: 0;
}
.form-modal-icon--success {
    background: rgba(80, 220, 130, 0.18);
    color: rgba(100, 245, 155, 0.95);
    box-shadow: 0 0 32px rgba(80, 220, 130, 0.25);
}
.form-modal-icon--error {
    background: rgba(255, 100, 80, 0.18);
    color: rgba(255, 130, 110, 0.95);
    box-shadow: 0 0 32px rgba(255, 100, 80, 0.22);
}

/* Title */
.form-modal-title {
    font-size: 1.5rem;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Subtitle text */
.form-modal-text {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin: 0;
}

/* Error field list */
.form-modal-errors {
    list-style: none;
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(255, 80, 60, 0.1);
    border: 1px solid rgba(255, 100, 80, 0.22);
    border-radius: 14px;
    padding: 18px 20px;
    margin: 4px 0;
}
.form-modal-errors li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.5;
}
.form-modal-errors li i {
    color: rgba(255, 130, 110, 0.8);
    font-size: 0.65rem;
    margin-top: 5px;
    flex-shrink: 0;
}
.form-modal-errors li strong {
    color: white;
}

/* Action button */
.form-modal-btn {
    padding: 13px 36px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.25);
    font-size: 0.97rem;
    font-weight: 600;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    touch-action: manipulation;
    margin-top: 4px;
    color: white;
}
.form-modal-btn--success {
    background: rgba(80, 220, 130, 0.2);
    border-color: rgba(100, 245, 155, 0.3);
}
.form-modal-btn--success:hover {
    background: rgba(80, 220, 130, 0.32);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(80, 220, 130, 0.2);
}
.form-modal-btn--error {
    background: rgba(255, 255, 255, 0.12);
}
.form-modal-btn--error:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

@media (max-width: 480px) {
    .form-modal-box {
        padding: 40px 24px 32px;
    }
    .form-modal-title {
        font-size: 1.25rem;
    }
    .form-modal-errors {
        padding: 14px 16px;
    }
}

/* ══════════════════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════════════════ */
.svc-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

/* ── Services grid ────────────────────────────────────── */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
    gap: 20px;
    margin-bottom: 56px;
}
.svc-card-img {
    margin: -36px -36px 0;
    height: 200px;
    overflow: hidden;
    position: relative;
}
.svc-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(15,20,45,0.72) 100%);
    pointer-events: none;
}
.svc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}
.svc-card:hover .svc-card-img img {
    transform: scale(1.06);
}

.svc-card {
    padding: 36px 36px 32px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.svc-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
}
.svc-card h2 {
    font-size: 1.3rem;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.svc-card > p {
    font-size: 0.97rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.82);
    margin: 0;
    flex-grow: 1;
}
.svc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 16px;
    margin-top: 4px;
}
.svc-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.5;
}
.svc-list li i {
    color: rgba(255,255,255,0.4);
    font-size: 0.65rem;
    margin-top: 5px;
    flex-shrink: 0;
}

/* ── Process section ──────────────────────────────────── */
.svc-process {
    margin-bottom: 40px;
}
.svc-process-header {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 32px 40px;
    margin-bottom: 24px;
    color: white;
}
.svc-process-header:hover {
    transform: none;
}
.svc-process-header-icon {
    font-size: 34px;
    color: rgba(255,255,255,0.75);
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(255,255,255,0.15));
}
.svc-process-header h2 {
    font-size: 1.5rem;
    margin-bottom: 6px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.svc-process-header p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.svc-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.svc-step {
    padding: 30px 28px;
    color: white;
    position: relative;
    overflow: visible;
}
.svc-step-num {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(255,255,255,0.08);
    position: absolute;
    top: 16px;
    right: 20px;
    letter-spacing: -0.03em;
    pointer-events: none;
    user-select: none;
}
.svc-step-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}
.svc-step h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.svc-step p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    margin: 0;
}

/* ── CTA ──────────────────────────────────────────────── */
.svc-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 40px 48px;
    flex-wrap: wrap;
    color: white;
}
.svc-cta:hover {
    transform: none;
}
.svc-cta-text h2 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.svc-cta-text p {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin: 0;
}
.svc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 38px;
    border-radius: 50px;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    flex-shrink: 0;
}
.svc-cta-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
    .svc-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .svc-page {
        padding: 40px 16px 60px;
    }
    .svc-grid {
        gap: 14px;
        margin-bottom: 36px;
    }
    .svc-card {
        padding: 24px 20px;
        gap: 12px;
    }
    .svc-card-img {
        margin: -24px -20px 0;
        height: 170px;
    }
    .svc-card-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    .svc-card h2 {
        font-size: 1.15rem;
    }
    .svc-process-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 24px 20px;
    }
    .svc-process-header h2 {
        font-size: 1.25rem;
    }
    .svc-steps {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .svc-step {
        padding: 22px 20px;
    }
    .svc-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 20px;
        gap: 20px;
    }
    .svc-cta-text h2 {
        font-size: 1.3rem;
    }
    .svc-cta-btn {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .svc-card {
        padding: 20px 16px;
    }
    .svc-card-img {
        margin: -20px -16px 0;
        height: 150px;
    }
    .svc-step {
        padding: 18px 16px;
    }
    .svc-step-num {
        font-size: 2.2rem;
    }
    .svc-cta {
        padding: 22px 16px;
    }
}

/* ══════════════════════════════════════════════════════
   PRICING PLANS (services.html)
══════════════════════════════════════════════════════ */
.svc-pricing {
    margin-bottom: 56px;
}
.svc-pricing-header {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 32px 40px;
    margin-bottom: 24px;
    color: white;
}
.svc-pricing-header:hover {
    transform: none;
}

/* Plans row */
.svc-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

/* Wrapper for featured plan — holds badge above the card */
.svc-plan-featured-wrap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

/* Single plan card */
.svc-plan {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 36px 32px 32px;
    color: white;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.svc-plan:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* Featured plan */
.svc-plan--featured {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 48px rgba(0,0,0,0.25);
}
.svc-plan--featured:hover {
    background: rgba(255, 255, 255, 0.27);
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

/* Badge — sits above the featured card */
.svc-plan-badge {
    display: block;
    width: fit-content;
    align-self: center;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.38);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* Plan name */
.svc-plan-name {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

/* Price */
.svc-plan-price {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    line-height: 1;
}
.svc-plan-currency {
    font-size: 1.6rem;
    font-weight: 700;
    color: rgba(255,255,255,0.75);
    margin-bottom: 4px;
}
.svc-plan-amount {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: white;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.svc-plan-period {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 6px;
}

/* Description */
.svc-plan-desc {
    font-size: 0.93rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.72);
    margin: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

/* Feature list */
.svc-plan-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}
.svc-plan-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.91rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.45;
}
.svc-plan-list li i {
    color: rgba(130, 255, 165, 0.85);
    font-size: 0.78rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* CTA button */
.svc-plan-btn {
    display: block;
    width: 100%;
    padding: 13px 20px;
    border-radius: 50px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    margin-top: auto;
}
.svc-plan-btn:hover {
    background: rgba(255,255,255,0.24);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.svc-plan-btn--featured {
    background: rgba(255,255,255,0.26);
    border-color: rgba(255,255,255,0.45);
}
.svc-plan-btn--featured:hover {
    background: rgba(255,255,255,0.36);
    box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}

/* Footnote */
.svc-pricing-note {
    margin-top: 20px;
    text-align: center;
    font-size: 0.87rem;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.svc-pricing-note i {
    color: rgba(255,255,255,0.35);
    flex-shrink: 0;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
    .svc-plans {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    .svc-plan-featured-wrap {
        order: 0;
    }
}
@media (max-width: 768px) {
    .svc-pricing-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 24px 20px;
    }
    .svc-pricing-header h2 {
        font-size: 1.25rem;
    }
    .svc-plan {
        padding: 32px 24px 28px;
    }
    .svc-plan-amount {
        font-size: 2.4rem;
    }
}
@media (max-width: 480px) {
    .svc-plan {
        padding: 28px 18px 24px;
    }
    .svc-plan-amount {
        font-size: 2.1rem;
    }
}

/* ══════════════════════════════════════════════════════
   SERVICE CARD — LEARN MORE BUTTON
══════════════════════════════════════════════════════ */
.svc-learn-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 10px 24px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 50px;
    color: rgba(255,255,255,0.88);
    font-size: 0.87rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s, box-shadow 0.25s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
}
.svc-learn-btn:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.4);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.svc-learn-btn i {
    font-size: 0.9rem;
    opacity: 0.85;
}

/* ══════════════════════════════════════════════════════
   SERVICE DETAIL MODAL BODY
══════════════════════════════════════════════════════ */
.svc-detail-box {
    max-width: 560px;
    max-height: 88vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.svc-detail-box::-webkit-scrollbar {
    width: 5px;
}
.svc-detail-box::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
}
.svc-modal-icon {
    background: rgba(160, 180, 255, 0.16);
    color: rgba(180, 210, 255, 0.95);
    box-shadow: 0 0 32px rgba(130, 160, 255, 0.22);
}
.svc-modal-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: left;
    width: 100%;
    color: rgba(255,255,255,0.82);
    font-size: 0.93rem;
    line-height: 1.65;
}
.svc-modal-body > p {
    margin: 0;
}
.svc-modal-section {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 16px 20px;
}
.svc-modal-section h3 {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(200,220,255,0.9);
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.svc-modal-section h3 i {
    font-size: 0.82rem;
    opacity: 0.75;
}
.svc-modal-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.svc-modal-section ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.78);
}
.svc-modal-section ul li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    min-width: 6px;
    border-radius: 50%;
    background: rgba(160,200,255,0.7);
    margin-top: 8px;
}
.svc-modal-section p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.78);
}
.svc-modal-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    align-self: center;
    padding: 12px 32px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    margin-top: 4px;
}
.svc-modal-cta-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(0,0,0,0.22);
    color: #fff;
}

/* ══════════════════════════════════════════════════════
   GET STARTED — EMAIL FORM INSIDE MODAL
══════════════════════════════════════════════════════ */
.gs-email-icon {
    background: rgba(120, 160, 255, 0.18);
    color: rgba(160, 200, 255, 0.95);
    box-shadow: 0 0 32px rgba(100, 150, 255, 0.22);
}
.gs-email-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 4px;
}
.gs-input-wrap {
    position: relative;
    width: 100%;
}
.gs-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.45);
    font-size: 0.95rem;
    pointer-events: none;
    transition: color 0.2s;
}
.gs-input-wrap input[type="email"] {
    width: 100%;
    padding: 13px 16px 13px 42px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: white;
    font-size: 0.97rem;
    outline: none;
    transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
    box-sizing: border-box;
}
.gs-input-wrap input[type="email"]::placeholder {
    color: rgba(255,255,255,0.35);
}
.gs-input-wrap input[type="email"]:focus {
    border-color: rgba(160,200,255,0.55);
    background: rgba(255,255,255,0.13);
    box-shadow: 0 0 0 3px rgba(120,160,255,0.12);
}
.gs-input-wrap input[type="email"]:focus + .gs-input-icon,
.gs-input-wrap:focus-within .gs-input-icon {
    color: rgba(160,200,255,0.8);
}
.gs-input-error input[type="email"] {
    border-color: rgba(255,120,100,0.6);
    background: rgba(255,80,60,0.08);
    box-shadow: 0 0 0 3px rgba(255,100,80,0.1);
}
.gs-field-error {
    display: none;
    color: rgba(255,150,130,0.95);
    font-size: 0.82rem;
    padding-left: 16px;
    margin: 0;
    line-height: 1.4;
}
.gs-submit-btn {
    margin-top: 4px;
    align-self: center;
    cursor: pointer;
}

/* ══════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════
   EXPANDED FOOTER (index.html only)
══════════════════════════════════════════════════════ */
.footer-expanded {
    padding: 0 !important;
}

/* ── Top grid ── */
.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 0;
    padding: 48px 48px 36px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ── Brand column ── */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-right: 48px;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.footer-logo-link {
    display: inline-block;
    width: fit-content;
}
.footer-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    animation: footerLogoPulse 3.5s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.18));
    transition: filter 0.3s ease, transform 0.3s ease;
}
.footer-logo-link:hover .footer-logo-img {
    filter: drop-shadow(0 0 16px rgba(255,255,255,0.4));
    transform: scale(1.05);
}
@keyframes footerLogoPulse {
    0%, 100% { filter: drop-shadow(0 0 6px rgba(255,255,255,0.15)); }
    50%       { filter: drop-shadow(0 0 14px rgba(255,255,255,0.35)); }
}
.footer-tagline {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    margin: 0;
    max-width: 320px;
}
.footer-services-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    padding: 9px 22px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    margin-top: 4px;
}
.footer-services-btn:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    color: #fff;
}

/* ── Info columns ── */
.footer-col {
    padding: 0 0 0 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-col + .footer-col {
    border-left: 1px solid rgba(255,255,255,0.1);
}
.footer-col-title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-col-title i { font-size: 0.75rem; }

/* Contact list */
.footer-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.55;
}
.footer-info-list li i {
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
    margin-top: 3px;
    flex-shrink: 0;
}
.footer-info-list a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-info-list a:hover { color: #fff; }

/* Hours list */
.footer-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
}
.footer-hours-day {
    color: rgba(255,255,255,0.65);
}
.footer-hours-time {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    white-space: nowrap;
}
.footer-hours-closed {
    color: rgba(255,130,130,0.85);
}
.footer-hours-note {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.55;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}
.footer-hours-note i { margin-top: 2px; flex-shrink: 0; }

/* ── Bottom bar ── */
.footer-bottom {
    padding: 22px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-bottom .footer-links {
    margin-bottom: 0;
    justify-content: flex-start;
}
.footer-bottom .copyright {
    border-top: none;
    padding-top: 0;
    font-size: 13px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr;
        padding: 36px 24px 28px;
        gap: 28px;
        text-align: center;
    }
    .footer-brand {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-right: 0;
        padding-bottom: 24px;
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }
    .footer-tagline {
        max-width: 100%;
        text-align: center;
    }
    .footer-services-btn {
        align-self: center;
    }
    .footer-col {
        padding-left: 0;
        align-items: center;
    }
    .footer-col + .footer-col {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.08);
        padding-top: 20px;
    }
    .footer-col-title {
        justify-content: center;
    }
    .footer-info-list li {
        justify-content: center;
    }
    .footer-info-list li span,
    .footer-info-list li a {
        text-align: center;
    }
    .footer-hours-list li {
        justify-content: center;
        gap: 20px;
    }
    .footer-hours-note {
        justify-content: center;
        text-align: center;
    }
    .footer-bottom {
        padding: 20px 24px;
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 12px;
    }
    .footer-bottom .footer-links {
        justify-content: center;
        order: 2;
    }
    .footer-bottom .copyright {
        order: 1;
    }
}

/* Active nav link */
.nav-active {
    color: #fff !important;
    opacity: 1 !important;
    font-weight: 700;
}

/* ── Story block ── */
.about-story-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    overflow: hidden;
    color: white;
}
.about-story-img {
    overflow: hidden;
    min-height: 340px;
}
.about-story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}
.about-story-wrap:hover .about-story-img img {
    transform: scale(1.04);
}
.about-story-text {
    padding: 40px 38px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
}
.about-story-label {
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: rgba(160,200,255,0.75);
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 0;
}
.about-story-text h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.25;
}
.about-story-text p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.78);
    margin: 0;
}
.about-story-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}
.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    border-radius: 50px;
}
.about-tag i { opacity: 0.8; font-size: 0.78rem; }

/* ── Numbers strip ── */
.about-numbers {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 0;
    padding: 32px 20px;
    text-align: center;
    color: white;
}
.about-number-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 28px;
}
.about-number-val {
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1;
    color: #fff;
}
.about-number-plus {
    font-size: 1.8rem;
}
.about-number-lbl {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.about-number-divider {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

/* ── Commitment block ── */
.about-commitment {
    padding: 36px 40px;
    color: white;
}
.about-commitment-icon {
    margin-bottom: 18px;
}
.about-commitment-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.about-commitment-body h2 {
    font-size: 1.35rem;
    font-weight: 800;
    margin: 0;
}
.about-commitment-body p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.78);
    margin: 0;
}
.about-commitment-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    align-self: flex-start;
    padding: 12px 30px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    margin-top: 4px;
}
.about-commitment-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(0,0,0,0.22);
    color: #fff;
}

/* ── Responsive ── */
@media (max-width: 860px) {
    .about-story-wrap {
        grid-template-columns: 1fr;
    }
    .about-story-img {
        min-height: 240px;
        max-height: 300px;
    }
    .about-story-text {
        padding: 28px 24px;
    }
    .about-story-text h2 {
        font-size: 1.45rem;
    }
    .about-commitment {
        padding: 28px 24px;
    }
}
@media (max-width: 600px) {
    .about-numbers {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px 0;
        padding: 24px 16px;
        text-align: center;
    }
    .about-number-divider {
        display: none;
    }
    .about-number-item {
        padding: 0;
        align-items: center;
    }
    .about-number-val {
        font-size: 2rem;
    }
    .about-story-text {
        padding: 22px 18px;
    }
    .about-commitment {
        padding: 22px 18px;
    }
}
