@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background: #f9fafb;
    color: #111827;
    overflow-x: hidden;
}

:root {
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --blue-light: #eff6ff;
    --blue-border: #bfdbfe;
    --blue-mid: #dbeafe;
    --text: #111827;
    --muted: #6b7280;
    --subtle: #9ca3af;
    --border: #e5e7eb;
    --surface: #ffffff;
    --bg: #f9fafb;
    --nav-height: 68px;
    --radius: 14px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.09);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
    --shadow-blue: 0 4px 16px rgba(37, 99, 235, 0.2);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-32px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(32px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes floatImg {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-10px) rotate(0.5deg);
    }

    66% {
        transform: translateY(-5px) rotate(-0.5deg);
    }
}

@keyframes floatUp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.3);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

@keyframes zoomPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }
}

.animate-fade-up {
    animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.animate-fade-in {
    animation: fadeIn 0.5s ease both;
}

.animate-fade-left {
    animation: fadeLeft 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.animate-fade-right {
    animation: fadeRight 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.animate-scale-in {
    animation: scaleIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.d1 {
    animation-delay: 0.05s;
}

.d2 {
    animation-delay: 0.12s;
}

.d3 {
    animation-delay: 0.2s;
}

.d4 {
    animation-delay: 0.28s;
}

.d5 {
    animation-delay: 0.36s;
}

.d6 {
    animation-delay: 0.44s;
}

.eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-light);
    padding: 0.3rem 0.85rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--blue-border);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--blue);
}

.hero-section {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.18;
    margin: 0 0 1.25rem;
    letter-spacing: -0.03em;
}

.hero-text p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.8;
    margin: 0 0 2rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--blue);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
    transition: background 0.18s, transform 0.2s, box-shadow 0.2s;
    animation: floatUp 3s ease-in-out infinite;
}

.hero-cta:hover {
    background: var(--blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.38);
}

.hero-cta svg {
    transition: transform 0.2s;
}

.hero-cta:hover svg {
    transform: translateX(4px);
}

.hero-image-wrap {
    position: relative;
}

.hero-image-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    display: block;
    animation: floatImg 6s ease-in-out infinite;
}

.hero-image-wrap::after {
    content: '';
    position: absolute;
    inset: -10px -10px auto auto;
    width: 70px;
    height: 70px;
    border-top: 3px solid var(--blue);
    border-right: 3px solid var(--blue);
    border-radius: 0 18px 0 0;
    pointer-events: none;
}

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

.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5.5rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    display: block;
    animation: floatImg 7s ease-in-out infinite;
}

.about-image-wrap::before {
    content: '';
    position: absolute;
    inset: auto auto -10px -10px;
    width: 70px;
    height: 70px;
    border-bottom: 3px solid var(--blue-mid);
    border-left: 3px solid var(--blue-mid);
    border-radius: 0 0 0 18px;
    pointer-events: none;
}

.about-text h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--text);
    margin: 0 0 1.1rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.about-text p {
    font-size: 0.97rem;
    color: #4b5563;
    line-height: 1.85;
    margin: 0 0 1.25rem;
}

.read-btn {
    background: none;
    border: 1px solid var(--blue);
    color: var(--blue);
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 7px;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, transform 0.18s;
}

.read-btn:hover {
    background: var(--blue);
    color: #fff;
    transform: translateY(-1px);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--text);
    margin: 0;
    letter-spacing: -0.02em;
}

.team-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.team-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2.5rem 4rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.team-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0 1.5rem 1.75rem;
    text-align: center;
    transition: box-shadow 0.28s, transform 0.28s, border-color 0.28s;
    position: relative;
    margin-top: 52px;
}

.team-card:hover {
    box-shadow: 0 14px 40px rgba(37, 99, 235, 0.12);
    transform: translateY(-6px);
    border-color: var(--blue-border);
}

.team-card .tc-img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.team-card .tc-img-wrap img {
    width: 104px;
    height: 104px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--surface);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.18);
    position: relative;
    margin-top: -52px;
    display: block;
    transition: transform 0.3s, box-shadow 0.3s;
    background: var(--bg);
}

.team-card:hover .tc-img-wrap img {
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.25);
    animation: pulse-ring 1.4s ease-out;
}

.team-card .tc-img-wrap::before {
    content: '';
    position: absolute;
    top: -52px;
    left: 50%;
    transform: translateX(-50%);
    width: 104px;
    height: 52px;
    border-radius: var(--radius) var(--radius) 0 0;
    z-index: 0;
}

.team-card .tm-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin: 1rem 0 0.3rem;
}

.team-card .tm-role {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.5;
}

.team-more {
    text-align: center;
}

.team-more a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--blue);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--blue-border);
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    transition: background 0.18s, color 0.18s, transform 0.18s;
}

.team-more a:hover {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
    transform: translateY(-2px);
}

.team-more a svg {
    transition: transform 0.2s;
}

.team-more a:hover svg {
    transform: translateX(4px);
}

.testimonials-section {
    background: var(--bg);
    overflow: hidden;
}

.testimonials-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2.5rem;
}

.testimonials-track-wrap {
    overflow: hidden;
    position: relative;
}

.testimonials-track-wrap::before,
.testimonials-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.testimonials-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--bg), transparent);
}

.testimonials-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--bg), transparent);
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scroll-left 36s linear infinite;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

.tcard {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    width: 300px;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}

.tcard:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--blue-border);
}

.tcard-top {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.tcard-top img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--blue-mid);
    flex-shrink: 0;
    transition: transform 0.25s;
}

.tcard:hover .tcard-top img {
    transform: scale(1.1);
}

.tcard-top .tc-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
}

.tcard-stars {
    font-size: 0.9rem;
    margin-bottom: 0.85rem;
}

.tcard p {
    font-size: 0.85rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 0;
}

.gallery-preview-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
}

.gallery-preview-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2.5rem;
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.gallery-preview-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--border);
    aspect-ratio: 1/1;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.28s, transform 0.28s;
}

.gallery-preview-item:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
    transform: translateY(-4px);
}

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

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

.gallery-preview-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(37, 99, 235, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.gallery-preview-item:hover .overlay {
    background: rgba(37, 99, 235, 0.18);
}

.gallery-preview-item .overlay svg {
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.25s, transform 0.28s;
    color: #fff;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.gallery-preview-item:hover .overlay svg {
    opacity: 1;
    transform: scale(1);
}

.gallery-view-all {
    text-align: center;
}

.gallery-view-all a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--blue);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.7rem 1.6rem;
    border-radius: 9px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
    transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
}

.gallery-view-all a:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.32);
}

.gallery-view-all a svg {
    transition: transform 0.2s;
}

.gallery-view-all a:hover svg {
    transform: translateX(4px);
}

.contact-section {
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3.5rem;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--text);
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

.contact-info .ci-sub {
    color: var(--muted);
    font-size: 0.92rem;
    margin: 0 0 2rem;
    line-height: 1.65;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ci-card {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1.1rem 1.25rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.ci-card:hover {
    border-color: var(--blue-border);
    box-shadow: var(--shadow-blue);
    transform: translateX(5px);
}

.ci-icon {
    width: 40px;
    height: 40px;
    background: var(--blue-light);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
}

.ci-card:hover .ci-icon {
    background: var(--blue);
    transform: scale(1.1);
}

.ci-icon svg {
    width: 19px;
    height: 19px;
    color: var(--blue);
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: color 0.2s;
}

.ci-card:hover .ci-icon svg {
    color: #fff;
}

.ci-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--subtle);
    margin-bottom: 0.2rem;
}

.ci-value {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
}

.contact-map {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transition: box-shadow 0.3s, transform 0.3s;
}

.contact-map:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

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

.page-hero {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 4rem 2.5rem 3.5rem;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--text);
    margin: 0;
    letter-spacing: -0.02em;
}

.page-hero p {
    margin: 0.85rem auto 0;
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 420px;
}

.about-hero {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.about-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 2.5rem 4.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-hero-text h1 {
    font-size: clamp(1.9rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    margin: 0 0 1.25rem;
    letter-spacing: -0.02em;
}

.about-hero-text p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.8;
    margin: 0;
}

.about-hero-image {
    position: relative;
}

.about-hero-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: block;
    animation: floatImg 7s ease-in-out infinite;
}

.about-hero-image::before {
    content: '';
    position: absolute;
    inset: -12px -12px auto auto;
    width: 80px;
    height: 80px;
    border-top: 3px solid var(--blue);
    border-right: 3px solid var(--blue);
    border-radius: 0 16px 0 0;
    pointer-events: none;
}

.about-hero-image::after {
    content: '';
    position: absolute;
    inset: auto auto -12px -12px;
    width: 80px;
    height: 80px;
    border-bottom: 3px solid var(--blue-mid);
    border-left: 3px solid var(--blue-mid);
    border-radius: 0 0 0 16px;
    pointer-events: none;
}

.team-page-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 2.5rem 4rem;
}

.team-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.team-page-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0 1.5rem 1.75rem;
    text-align: center;
    transition: box-shadow 0.28s, transform 0.28s, border-color 0.28s;
    position: relative;
    margin-top: 52px;
}

.team-page-card:hover {
    box-shadow: 0 14px 40px rgba(37, 99, 235, 0.12);
    transform: translateY(-6px);
    border-color: var(--blue-border);
}

.team-page-card .tc-img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.team-page-card .tc-img-wrap img {
    width: 104px;
    height: 104px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--surface);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.18);
    position: relative;
    margin-top: -52px;
    display: block;
    transition: transform 0.3s, box-shadow 0.3s;
    background: var(--bg);
}

.team-page-card:hover .tc-img-wrap img {
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.25);
    animation: pulse-ring 1.4s ease-out;
}

.team-page-card .tc-img-wrap::before {
    content: '';
    position: absolute;
    top: -52px;
    left: 50%;
    transform: translateX(-50%);
    width: 104px;
    height: 52px;
    border-radius: var(--radius) var(--radius) 0 0;
    z-index: 0;
}

.team-page-card .team-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin: 1rem 0 0.3rem;
}

.team-page-card .team-role {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
}

.gallery-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--surface);
    aspect-ratio: 1/1;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.28s, transform 0.28s;
}

.gallery-item:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
    transform: translateY(-4px);
}

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

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

.gallery-item.no-url img {
    transition: transform 0.6s ease;
}

.gallery-item.no-url:hover img {
    transform: scale(1.12);
}

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(37, 99, 235, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.gallery-item:hover .overlay {
    background: rgba(37, 99, 235, 0.18);
}

.gallery-item .overlay svg {
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.25s, transform 0.28s;
    color: #fff;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.gallery-item:hover .overlay svg {
    opacity: 1;
    transform: scale(1);
}

.gallery-empty {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--subtle);
    font-size: 1rem;
}

.book-wrap {
    max-width: 520px;
    margin: 0 auto;
    padding: 3.5rem 2rem 5rem;
}

.book-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s;
}

.book-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
    letter-spacing: 0.03em;
    margin-bottom: 0.45rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.65rem 0.9rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--bg);
    border: 1px solid #d1d5db;
    border-radius: 9px;
    outline: none;
    transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: var(--surface);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--subtle);
}

.form-group textarea {
    min-height: 110px;
    line-height: 1.6;
}

.btn-submit {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: var(--blue);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.28);
    transition: background 0.18s, transform 0.2s, box-shadow 0.2s;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.btn-submit:active {
    transform: translateY(0);
}

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

.contact-page-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3.5rem;
    align-items: start;
}

.contact-page-info h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--text);
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

.contact-page-info .cp-sub {
    color: var(--muted);
    font-size: 0.92rem;
    margin: 0 0 2rem;
    line-height: 1.65;
}

.contact-page-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-page-card {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1.1rem 1.25rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.contact-page-card:hover {
    border-color: var(--blue-border);
    box-shadow: var(--shadow-blue);
    transform: translateX(5px);
}

.contact-page-card .cp-icon {
    width: 40px;
    height: 40px;
    background: var(--blue-light);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
}

.contact-page-card:hover .cp-icon {
    background: var(--blue);
    transform: scale(1.1);
}

.contact-page-card .cp-icon svg {
    width: 19px;
    height: 19px;
    color: var(--blue);
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: color 0.2s;
}

.contact-page-card:hover .cp-icon svg {
    color: #fff;
}

.contact-page-card .cp-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--subtle);
    margin-bottom: 0.2rem;
}

.contact-page-card .cp-value {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
}

.contact-page-map {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transition: box-shadow 0.3s, transform 0.3s;
}

.contact-page-map:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.contact-page-map iframe {
    display: block;
    width: 100%;
    height: 440px;
    border: none;
}

@media(max-width:960px) {

    .hero-inner,
    .about-inner,
    .contact-inner,
    .contact-page-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3.5rem 1.5rem;
    }

    .hero-image-wrap img,
    .about-image-wrap img {
        height: 320px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-inner .about-image-wrap {
        order: -1;
    }

    .testimonials-inner,
    .team-inner {
        padding: 3.5rem 1.5rem;
    }

    .about-hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3.5rem 1.5rem 3rem;
    }

    .about-hero-image img {
        height: 300px;
    }

    .team-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-page-section {
        padding: 3.5rem 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-preview-inner {
        padding: 3.5rem 1.5rem;
    }
}

@media(max-width:600px) {

    .hero-inner,
    .about-inner {
        padding: 2.5rem 1.25rem;
    }

    .hero-image-wrap img,
    .about-image-wrap img {
        height: 240px;
    }

    .team-grid,
    .team-page-grid {
        grid-template-columns: 1fr;
    }

    .team-inner,
    .testimonials-inner {
        padding: 2.5rem 1.25rem;
    }

    .team-page-section {
        padding: 2.5rem 1.25rem;
    }

    .tcard {
        width: 260px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .gallery-wrap {
        padding: 2rem 1.25rem;
    }

    .gallery-preview-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .gallery-preview-inner {
        padding: 2rem 1.25rem;
    }

    .page-hero {
        padding: 2.5rem 1.25rem 2rem;
    }

    .about-hero-inner {
        padding: 2.5rem 1.25rem 2rem;
    }

    .book-wrap {
        padding: 2rem 1.25rem 3.5rem;
    }

    .book-card {
        padding: 1.75rem 1.25rem;
    }

    .contact-page-inner {
        padding: 2rem 1.25rem;
    }

    .contact-page-map iframe {
        height: 280px;
    }
}