/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Comic Sans MS', 'Arial Black', 'Arial', sans-serif;
    background: 
        linear-gradient(180deg, 
            rgba(177, 148, 53, 0.85) 0%, 
            rgba(10, 7, 218, 0.95) 100%),
        url('Assets/Landing\ Page_0004s_0002_depositphotos_310718692-stock-photo-group-people-hold-hands-to.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    opacity: 50;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Styles */
.header {
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 100px;
    max-width: max-content;
    margin-right: 350px;
}

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 1.5px;
    transition: color 0.3s;
    text-transform: uppercase;
}

.nav a:hover,
.nav a.active {
    color: #F5B342;
}

.search-bar {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 5px;
    padding: 10px 20px;
    min-width: 250px;
    flex-shrink: 0;
    margin-left: 20px;
}

.search-bar input {
    border: none;
    outline: none;
    flex: 1;
    padding: 5px 10px;
    font-size: 15px;
}

.search-bar button {
    background: none;
    border: none;
    cursor: pointer;
    color: #2C5F8D;
    font-size: 18px;
    padding: 0 5px;
}

.mobile-menu-toggle {
    display: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 40px 0 100px;
    position: relative;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    min-height: 600px;
}

/* Hero Left Side */
.hero-left {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 600px;
}

/* Decorative Shapes Positioning */
.decorative-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.shape-1 {
    position: absolute;
    top: -10px;
    right: 450px;
    width: 300px;
    height: auto;
    animation: float 4s ease-in-out infinite;
}

.shape-2 {
    position: absolute;
    top: 230px;
    left: 1130px;
    width: 300px;
    height: auto;
    animation: float 5s ease-in-out infinite;
    animation-delay: 1s;
}

.shape-3 {
    position: absolute;
    top: -350px;
    left: 1130px;
    width: 300px;
    height: auto;
    animation: float 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.shape-4 {
    width: 300px;
    height: auto;
    animation: float 4.5s ease-in-out infinite;
    animation-delay: 2s;
    margin-left: -300px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Hero Image - Children */
.hero-image {
    width: 200%;
    max-width: 450px;
    margin-bottom: -100px;
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 650px;
    height: auto;
    margin-top: -150px;
    display: block;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* Hero Text */
.hero-text {
    position: relative;
    z-index: 3;
    margin-left: 30px;
}

.hero-text h1 {
    font-size: 75px;
    font-weight: 900;
    color: white;
    line-height: 1;
    text-transform: capitalize;
    letter-spacing: 2px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.underline-curve {
    width: 320px;
    margin-top: -180px;
    margin-left: 5px;
}

.underline-curve img {
    width: 100%;
    height: auto;
    display: block;
}

/* Bottom Decorative Shape */
.decorative-shapes-bottom {
    position: absolute;
    bottom: -30px;
    left: 80px;
    z-index: 1;
}

/* Hero Right Side - Volumes */
.hero-right {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 650px;
}

.volumes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 550px;
    position: relative;
    z-index: 2;
}

.volume-card {
    background: whitesmoke;
    border-radius: 5px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 20px;
    margin-inline-start: 20px;
    }

.volume-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
}

/* Volume Card Images */
.volume-image {
  width: 100%;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.volume-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
  display: block;
}

.volume-card:hover .volume-image img {
  transform: scale(1.08);
}

.volume-card:hover .volume-image {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.order-btn {
    background: #F5B342;
    color: white;
    border: none;
    font-family: Verdana;
    padding: 14px 40px;
    border-radius: none;
    font-weight: bold;
    font-size: 15px;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 15px rgba(245, 179, 66, 0.4);
    text-transform: uppercase;
    margin-bottom: -50px;
    text-decoration: none;
}

.order-btn:hover {
    background: #E5A532;
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(51, 33, 1, 0.6);
}

.order-btn:active {
    transform: scale(0.98);
}

/* Social Media Links */
.social-media {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: flex;
    gap: 18px;
    z-index: 100;
}

.social-media a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2811f1;
    font-size: 22px;
    text-decoration: none;
    transition: all 0.4s;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: -100px;
}

.social-media a:hover {
    background: #F5B342;
    color: white;
    transform: translateY(-8px) rotate(360deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Tablet Styles */
@media screen and (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .logo img {
        height: 80px;
    }

    .nav ul {
        gap: 35px;
    }

    .nav a {
        font-size: 16px;
    }

    .search-bar {
        min-width: 220px;
    }

    .hero-content {
        gap: 50px;
    }

    .hero-text h1 {
        font-size: 65px;
    }

    .underline-curve {
        width: 260px;
    }

    .volumes-grid {
        max-width: 480px;
        gap: 25px;
    }

    .volume-placeholder {
        height: 240px;
    }

    .shape-1, .shape-2, .shape-5 {
        width: 80px;
    }

    .shape-3 {
        width: 45px;
    }

    .shape-4 {
        width: 90px;
    }
}

/* Tablet Portrait */
@media screen and (max-width: 1024px) {
    .hero-content {
        gap: 40px;
        min-height: auto;
    }

    .hero-left {
        max-width: 500px;
    }

    .hero-image {
        max-width: 380px;
    }

    .hero-text h1 {
        font-size: 56px;
    }

    .underline-curve {
        width: 220px;
    }

    .volumes-grid {
        max-width: 420px;
    }

    .volume-placeholder {
        height: 200px;
    }

    .volume-placeholder h3 {
        font-size: 18px;
    }

    .order-btn {
        padding: 12px 32px;
        font-size: 13px;
    }

    .social-media {
        bottom: 35px;
        right: 35px;
        gap: 15px;
    }

    .social-media a {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* Mobile Landscape */
@media screen and (max-width: 900px) {
    .header .container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .nav {
        order: 3;
        width: 100%;
        display: none;
        justify-content: flex-start;
    }

    .nav.active {
        display: flex;
    }

    .nav ul {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
        width: 100%;
    }

    .mobile-menu-toggle {
        display: block;
        order: 2;
        margin-top: -170px;
    }

    .search-bar {
        order: 2;
    }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .logo img {
        height: 100px;
    }

    .search-bar {
        min-width: 80px;
        padding: 8px 15px;
        margin-left: 150px;
        margin-top: -165px;
        
    }

    .search-bar input {
        font-size: 13px;
    }

    .hero {
        padding: 30px 0 80px;
    }

    .hero-content {
        flex-direction: column;
        gap: 60px;
    }

    .hero-left {
        width: 100%;
        max-width: 100%;
        align-items: center;
    }

    .hero-image {
        max-width: 350px;
        margin-bottom: -100px;
        margin-left: -250px;
    }

    .hero-text {
        text-align: center;
        margin-left: 0;
    }

    .hero-text h1 {
        font-size: 52px;
    }

    .underline-curve {
        width: 200px;
        margin-left: auto;
        margin-right: auto;
        margin-top: -100px;
    }

    .decorative-shapes-bottom {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-right {
        width: 100%;
        max-width: 100%;
    }

    .volumes-grid {
        max-width: 500px;
        margin: 0 auto;
        margin-top: -100px;
    }

    .volume-placeholder {
        height: 220px;
    }

    .shape-1 {
        left: -40px;
        width: 70px;
    }

    .shape-2 {
        right: -30px;
        width: 55px;
    }

    .shape-3 {
        width: 40px;
    }

    .shape-4 {
        width: 80px;
        margin-left: -100px;
    }

    .shape-5 {
        right: -60px;
        width: 120px;
    }

    .social-media {
        bottom: 25px;
        right: 25px;
        gap: 12px;
    }

    .social-media a {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}

/* Small Mobile Styles */
@media screen and (max-width: 480px) {
    .logo img {
        height: 60px;
    }

    .search-bar {
        min-width: 140px;
        padding: 6px 12px;
    }

    .search-bar input {
        font-size: 12px;
        padding: 3px 8px;
    }

    .hero-image {
        max-width: 280px;
        margin-bottom: -50px;
    }

    .hero-text h1 {
        font-size: 40px;
    }

    .underline-curve {
        width: 160px;
    }

    .volumes-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        gap: 25px;
    }

    .volume-placeholder {
        height: 320px;
    }

    .volume-placeholder h3 {
        font-size: 20px;
    }

    .order-btn {
        padding: 12px 35px;
        font-size: 13px;
    }

    .shape-1, .shape-4 {
        display: none;
    }

    .shape-2 {
        width: 50px;
    }

    .shape-3 {
        width: 35px;
        right: 60px;
    }

    .shape-5 {
        width: 100px;
        right: -40px;
        top: -40px;
    }

    .social-media {
        flex-direction: column;
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .social-media a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Very Small Screens */
@media screen and (max-width: 360px) {
    .hero-text h1 {
        font-size: 34px;
    }

    .underline-curve {
        width: 140px;
    }

    .volumes-grid {
        max-width: 280px;
    }

    .volume-placeholder {
        height: 280px;
    }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

.about-section {
    padding: 60px 0 100px;
}

.page-title {
    text-align: center;
    margin-bottom: 60px;
}

.page-title h1 {
    font-size: 64px;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.title-underline {
    width: 280px;
    margin: 0 auto 20px;
}

.title-underline img {
    width: 100%;
    height: auto;
}

.subtitle {
    font-size: 18px;
    color: white;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.mission-box {
    background: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 60px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.mission-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #F5B342, #E5A532);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 50px;
    color: white;
    box-shadow: 0 10px 25px rgba(245, 179, 66, 0.4);
}

.mission-box h2 {
    font-size: 36px;
    color: #2C5F8D;
    margin-bottom: 20px;
}

.mission-box p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2C5F8D, #1E4D7B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    color: white;
}

.feature-card h3 {
    font-size: 24px;
    color: #2C5F8D;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.why-section {
    margin-bottom: 60px;
}

.why-section h2 {
    text-align: center;
    font-size: 42px;
    color: white;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-image {
    text-align: center;
}

.why-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

.why-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.why-item i {
    font-size: 32px;
    color: #F5B342;
    flex-shrink: 0;
}

.why-item h4 {
    font-size: 20px;
    color: #2C5F8D;
    margin-bottom: 8px;
}

.why-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.cta-box {
    background: linear-gradient(135deg, #2C5F8D, #1E4D7B);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-box h2 {
    font-size: 38px;
    color: white;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: #F5B342;
    color: white;
    padding: 18px 50px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(245, 179, 66, 0.4);
}

.cta-button:hover {
    background: #E5A532;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(245, 179, 66, 0.6);
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-section {
    padding: 60px 0 100px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-form-container,
.contact-info-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.form-header,
.contact-info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid #F5B342;
}

.form-header i,
.contact-info-header i {
    font-size: 32px;
    color: #2C5F8D;
}

.form-header h2,
.contact-info-header h2 {
    font-size: 28px;
    color: #2C5F8D;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.form-group label i {
    color: #F5B342;
    margin-right: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2C5F8D;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    background: #F5B342;
    color: white;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 15px rgba(245, 179, 66, 0.4);
}

.submit-btn:hover {
    background: #E5A532;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 179, 66, 0.6);
}

.submit-btn i {
    margin-right: 10px;
}

.contact-info-card {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #F8F9FA;
    border-radius: 12px;
    transition: transform 0.3s;
}

.info-item:hover {
    transform: translateX(10px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2C5F8D, #1E4D7B);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
    color: white;
}

.info-text h4 {
    font-size: 18px;
    color: #2C5F8D;
    margin-bottom: 8px;
}

.info-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.social-connect {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid #E0E0E0;
}

.social-connect h3 {
    font-size: 20px;
    color: #2C5F8D;
    margin-bottom: 20px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    text-decoration: none;
    transition: all 0.3s;
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn.whatsapp {
    background: #25d366;
}

.social-btn:hover {
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* ============================================
   GALLERY PAGE STYLES
   ============================================ */

.gallery-section {
    padding: 60px 0 100px;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    color: #2C5F8D;
    border: 2px solid #2C5F8D;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn i {
    margin-right: 8px;
}

.filter-btn:hover,
.filter-btn.active {
    background: #2C5F8D;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(44, 95, 141, 0.4);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: white;
}

.placeholder-image i {
    font-size: 60px;
}

.placeholder-image h3 {
    font-size: 28px;
}

.volume-bg {
    background: linear-gradient(135deg, #2C5F8D, #1E4D7B);
}

.activity-bg {
    background: linear-gradient(135deg, #F5B342, #E5A532);
}

.children-bg {
    background: linear-gradient(135deg, #8B7355, #766248);
}

.gallery-overlay {
    position: absolute;
    top: o;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    width: 100%;
}

.overlay-content h3 {
    font-size: 24px;
    color: white;
    margin-bottom: 10px;
}

.overlay-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.view-btn {
    background: #F5B342;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.view-btn:hover {
    background: #E5A532;
    transform: scale(1.1) rotate(90deg);
}

.gallery-cta {
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-cta h2 {
    font-size: 38px;
    color: #2C5F8D;
    margin-bottom: 20px;
}

.gallery-cta p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.gallery-cta .cta-button i {
    margin-right: 10px;
}

/* ============================================
   RESPONSIVE STYLES FOR NEW PAGES
   ============================================ */

@media screen and (max-width: 1024px) {
    .page-title h1 {
        font-size: 52px;
    }

    .why-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .page-title h1 {
        font-size: 42px;
    }

    .title-underline {
        width: 220px;
    }

    .mission-box {
        padding: 35px 25px;
    }

    .mission-box h2 {
        font-size: 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .why-section h2 {
        font-size: 32px;
    }

    .why-image img {
        max-width: 300px;
    }

    .cta-box {
        padding: 40px 25px;
    }

    .cta-box h2 {
        font-size: 28px;
    }

    .contact-form-container,
    .contact-info-container {
        padding: 30px 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .page-title h1 {
        font-size: 34px;
    }

    .title-underline {
        width: 180px;
    }

    .subtitle {
        font-size: 16px;
    }

    .mission-icon {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }

    .why-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .social-buttons {
        gap: 10px;
    }

    .social-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .gallery-image {
        height: 280px;
    }

    .gallery-cta h2 {
        font-size: 28px;
    }
}