/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #1a5490;
    --secondary-color: #d4af37;
    --accent-color: #2c7fc1;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-family: 'Playfair Display', Georgia, serif;
    letter-spacing: -1px;
}

.title-underline {
    width: 100px;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 10px;
    position: relative;
}

.title-underline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    filter: blur(8px);
    opacity: 0.5;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 84, 144, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(26, 84, 144, 1);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 50px;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: #ffffff;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    padding-top: 80px;
    overflow: hidden;
}

/* ===== PAGE HEADER ===== */
.page-header {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    text-align: center;
    color: #ffffff;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: #ffffff;
}

.page-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

/* Hero Background Effects */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.animated-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(26, 84, 144, 0.3) 0%, 
        rgba(44, 127, 193, 0.3) 25%,
        rgba(212, 175, 55, 0.2) 50%,
        rgba(26, 84, 144, 0.3) 75%,
        rgba(44, 127, 193, 0.3) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.hero-shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    top: -150px;
    right: -100px;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--secondary-color), #f4d03f);
    bottom: -100px;
    left: -150px;
    animation-delay: 7s;
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(90deg); }
    50% { transform: translate(-30px, 30px) rotate(180deg); }
    75% { transform: translate(30px, 30px) rotate(270deg); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

/* Hero Text */
.hero-text {
    color: #ffffff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 25px;
    animation: fadeInDown 1s ease;
}

.hero-badge i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.hero-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

.hero-title {
    margin-bottom: 25px;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: backwards;
}

.hero-title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.1;
}

.hero-title-gradient {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    letter-spacing: 0.3px;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: backwards;
    font-family: 'Inter', sans-serif;
}

.hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 600px;
    animation: fadeInUp 1s ease 0.6s;
    animation-fill-mode: backwards;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
    animation: fadeInUp 1s ease 0.8s;
    animation-fill-mode: backwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.stat-number::after {
    content: '+';
    margin-left: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 1s;
    animation-fill-mode: backwards;
}

.btn-large {
    padding: 16px 35px;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.btn-large i {
    transition: transform 0.3s ease;
}

.btn-large:hover i {
    transform: translateX(5px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f4d03f 100%);
    color: var(--dark-color);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Social */
.hero-social {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: fadeInUp 1s ease 1.2s;
    animation-fill-mode: backwards;
}

.social-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--secondary-color), #f4d03f);
    color: var(--dark-color);
    transform: translateY(-5px) scale(1.1);
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* Hero Image Section */
.hero-image-wrapper {
    position: relative;
    animation: fadeInRight 1s ease 0.5s;
    animation-fill-mode: backwards;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    animation: rotate 20s linear infinite;
}

.decoration-circle-1 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.decoration-circle-2 {
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.decoration-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(212, 175, 55, 0.2) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

.hero-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
    border: 5px solid rgba(255, 255, 255, 0.1);
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 30px;
    filter: blur(60px);
    opacity: 0.4;
    z-index: 0;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.05); }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    color: var(--primary-color);
}

.floating-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 3px;
}

.floating-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

.floating-card-1 {
    display: none;
}

.floating-card-2 {
    bottom: 10%;
    left: -20px;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-indicator i {
    font-size: 1.5rem;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 100px 0;
    background: #ffffff;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 60px;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(26, 84, 144, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 20px;
}

.about-stats .stat-item {
    text-align: center;
}

.about-stats .stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'Playfair Display', Georgia, serif;
}

.about-stats .stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: capitalize;
    font-family: 'Inter', sans-serif;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.expertise {
    margin-top: 50px;
}

.expertise h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 30px;
    text-align: center;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.expertise-item {
    padding: 30px;
    background: var(--light-color);
    border-radius: 15px;
    transition: var(--transition);
    text-align: center;
}

.expertise-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.expertise-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.expertise-item h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.expertise-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== MILESTONES SECTION ===== */
.milestones {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.milestones .section-title {
    color: #ffffff;
}

.milestones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.milestone-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.milestone-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.milestone-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.milestone-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.milestone-card p {
    line-height: 1.7;
    opacity: 0.9;
}

/* ===== EXPERIENCE TIMELINE ===== */
.experience {
    padding: 100px 0;
    background: var(--light-color);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    display: block;
    margin-bottom: 50px;
    position: relative;
    padding-left: 60px;
}

.timeline-year {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    margin-bottom: 20px;
    font-family: 'Playfair Display', Georgia, serif;
}

.timeline-year::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 8px;
    width: 22px;
    height: 22px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 5px solid #ffffff;
    box-shadow: 0 0 0 3px var(--primary-color);
    z-index: 2;
}

.timeline-content {
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.timeline-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.timeline-content h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 100px 0;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    padding: 40px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.service-card > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 10px 0;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.service-features i {
    color: var(--primary-color);
    margin-top: 3px;
    font-size: 0.9rem;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 100px 0;
    background: var(--light-color);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-light);
}

.contact-form-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
}

/* ===== GALLERY PAGE ===== */
.gallery-header {
    padding: 150px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.gallery-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(26, 84, 144, 0.3) 0%, 
        rgba(44, 127, 193, 0.3) 50%,
        rgba(212, 175, 55, 0.2) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

.gallery-header .container {
    position: relative;
    z-index: 1;
}

.gallery-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #ffffff 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 500;
}

/* ===== ALBUM CARDS (Main Gallery Page) ===== */
.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.album-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: fadeIn 0.5s ease;
}

.album-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.album-link {
    display: block;
    text-decoration: none;
}

.album-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.album-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.album-card:hover .album-image img {
    transform: scale(1.1);
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition);
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.album-info {
    color: #ffffff;
    width: 100%;
}

.album-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.photo-count {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.view-album-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
}

.view-album-btn:hover {
    background: #ffffff;
    transform: translateX(5px);
}

.album-details {
    padding: 20px 25px;
}

.album-details h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.album-category {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== EVENT PAGE STYLES ===== */
.event-header {
    padding: 120px 0 60px;
    background: var(--light-color);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary-color);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

.breadcrumb .separator {
    color: var(--text-light);
}

.breadcrumb .current {
    color: var(--text-color);
    font-weight: 600;
}

.event-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -1px;
}

.event-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.event-category,
.event-photos {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 1rem;
}

.event-category i,
.event-photos i {
    color: var(--primary-color);
}

.event-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 800px;
}

.event-photos-section {
    padding: 60px 0 100px;
    background: #ffffff;
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.photo-item {
    animation: fadeIn 0.5s ease;
}

.photo-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    aspect-ratio: 4/3;
}

.photo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.photo-card:hover img {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.photo-card:hover .photo-overlay {
    opacity: 1;
}

.view-photo-btn {
    background: var(--secondary-color);
    color: var(--dark-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
    border: 3px solid #ffffff;
}

.view-photo-btn:hover {
    transform: scale(1.15) rotate(90deg);
    background: #ffffff;
    color: var(--primary-color);
}

.back-to-gallery {
    text-align: center;
    margin-top: 40px;
}

.back-to-gallery .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.gallery-filters {
    padding: 40px 0;
    background: #ffffff;
    position: sticky;
    top: 80px;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 30px;
    border-radius: 50px;
    background: var(--light-color);
    color: var(--text-color);
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.gallery-section {
    padding: 60px 0 100px;
    background: var(--light-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    animation: fadeIn 0.5s ease;
}

.gallery-item.hide {
    display: none;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-card:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.view-btn {
    background: var(--secondary-color);
    color: var(--dark-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.view-btn:hover {
    transform: scale(1.1);
    background: #ffffff;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 10px;
}

#lightbox-caption {
    color: #ffffff;
    font-size: 1.2rem;
    margin-top: 20px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.lightbox-close {
    top: 30px;
    right: 30px;
}

.lightbox-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

/* ===== FLOATING SOCIAL ICONS ===== */
.floating-social {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.floating-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d3a6b 100%);
    color: #ffffff;
    border-radius: 50%;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.floating-social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #c49b2e 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.floating-social-icon:hover {
    transform: translateX(5px) scale(1.15);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
    border-color: var(--secondary-color);
}

.floating-social-icon:hover::before {
    opacity: 1;
}

.floating-social-icon i {
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    z-index: 1;
}

.floating-social-icon:hover i {
    transform: scale(1.2) rotate(360deg);
}

/* Individual icon colors on hover */
.floating-social-icon:nth-child(1):hover {
    border-color: #1877f2;
}

.floating-social-icon:nth-child(2):hover {
    border-color: #ff0000;
}

.floating-social-icon:nth-child(3):hover {
    border-color: #e4405f;
}

.floating-social-icon:nth-child(4):hover {
    border-color: #000000;
}

/* Responsive adjustments for floating social icons */
@media (max-width: 968px) {
    .floating-social {
        left: 10px;
        gap: 10px;
    }
    
    .floating-social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .floating-social {
        left: 8px;
        gap: 8px;
    }
    
    .floating-social-icon {
        width: 42px;
        height: 42px;
        font-size: 17px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-color);
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-section p {
    color: #cccccc;
    line-height: 1.7;
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cccccc;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #cccccc;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .btn:hover,
    .nav-link:hover,
    .social-icon:hover,
    .album-card:hover,
    .gallery-card:hover {
        transform: none;
    }

    /* Larger tap targets for mobile */
    .nav-link,
    .btn,
    .social-icon,
    .filter-btn {
        min-height: 44px;
        min-width: 44px;
    }

    /* Prevent text selection on buttons */
    .btn,
    .filter-btn {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }

    /* Smooth scrolling on touch devices */
    * {
        -webkit-overflow-scrolling: touch;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    /* Container adjustments */
    .container {
        padding: 0 15px;
    }

    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
        gap: 15px;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        color: var(--dark-color);
        padding: 12px 0;
        font-size: 1.1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Hero Section */
    .hero {
        min-height: auto;
        padding: 100px 0 80px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
        padding: 0 15px;
    }

    .hero-text {
        order: 2;
    }

    .hero-image-wrapper {
        order: 1;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 8px 20px;
    }

    .hero-title-main {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    .hero-title-gradient {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        margin: 0 auto 35px;
        font-size: 1rem;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-social {
        justify-content: center;
    }

    .hero-image img {
        max-width: 400px;
    }

    .floating-card {
        display: none;
    }

    /* Page Header */
    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1.1rem;
    }

    /* Sections */
    .section-title {
        font-size: 2.2rem;
    }

    .about, .milestones, .experience, .services, .contact {
        padding: 80px 0;
    }

    /* About Section */
    .lead {
        font-size: 1.15rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-stats {
        gap: 40px;
        flex-wrap: wrap;
    }

    .about-stats .stat-number {
        font-size: 3rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Milestones */
    .milestones-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-items {
        gap: 25px;
    }

    /* Timeline */
    .timeline::before {
        left: 18px;
    }

    .timeline-item {
        padding-left: 50px;
    }

    .timeline-year {
        font-size: 1.3rem;
        margin-bottom: 18px;
    }

    .timeline-year::before {
        left: -32px;
        width: 20px;
        height: 20px;
        top: 7px;
        border: 4px solid #ffffff;
    }

    .timeline-content {
        padding: 25px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .albums-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }

    .photos-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .event-title {
        font-size: 2rem;
    }

    /* Lightbox */
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    /* Base adjustments */
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 12px;
    }

    /* Navigation */
    .navbar {
        padding: 15px 0;
    }

    .logo img {
        height: 35px;
    }

    .nav-menu {
        top: 70px;
        padding: 20px 0;
    }

    .nav-link {
        font-size: 1rem;
        padding: 10px 0;
    }

    /* Hero Section */
    .hero {
        padding: 90px 0 60px;
        min-height: auto;
    }

    .hero-content {
        gap: 30px;
        padding: 0 10px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
        margin-bottom: 20px;
    }

    .hero-badge i {
        font-size: 0.9rem;
    }

    .hero-title-main {
        font-size: 2rem;
        letter-spacing: -0.5px;
        margin-bottom: 8px;
    }

    .hero-title-gradient {
        font-size: 1.4rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
        line-height: 1.6;
    }

    .hero-stats {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
        font-size: 1rem;
    }

    .hero-social {
        flex-direction: column;
        gap: 15px;
        margin-top: 25px;
    }

    .hero-image {
        max-width: 100%;
    }

    .hero-image img {
        max-width: 100%;
        border-radius: 20px;
    }

    .hero-shape,
    .decoration-circle {
        display: none;
    }

    /* Page Header */
    .page-header {
        padding: 100px 0 40px;
        min-height: auto;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    /* Sections */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .about,
    .milestones,
    .experience,
    .services,
    .contact {
        padding: 60px 0;
    }

    /* About Section */
    .lead {
        font-size: 1.05rem;
        margin-bottom: 15px;
    }

    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .about-stats {
        flex-direction: column;
        gap: 30px;
        padding: 30px 15px;
    }

    .about-stats .stat-number {
        font-size: 2.5rem;
    }

    .about-stats .stat-label {
        font-size: 0.9rem;
    }

    .expertise-grid {
        gap: 20px;
    }

    .expertise-item {
        padding: 25px;
    }

    .expertise-item i {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .expertise-item h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    /* Milestones */
    .milestones-grid {
        gap: 20px;
    }

    .milestone-card {
        padding: 25px;
    }

    .milestone-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    /* Timeline */
    .timeline::before {
        left: 10px;
    }

    .timeline-item {
        padding-left: 35px;
        margin-bottom: 35px;
    }

    .timeline-year {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .timeline-year::before {
        left: -25px;
        top: 4px;
        width: 16px;
        height: 16px;
        border: 4px solid #ffffff;
        box-shadow: 0 0 0 2px var(--primary-color);
    }

    .timeline-content {
        padding: 18px;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }

    .timeline-content h4 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .timeline-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .timeline-content h3 {
        font-size: 1.15rem;
        margin-bottom: 8px;
    }

    .timeline-content h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    /* Services */
    .services-grid {
        gap: 25px;
    }

    .service-card {
        padding: 30px;
    }

    .service-card i {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .service-features li {
        font-size: 0.9rem;
        padding: 10px 0;
    }

    /* Contact */
    .contact-content {
        gap: 30px;
    }

    .contact-item {
        padding: 20px;
    }

    .contact-item i {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .contact-item h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.95rem;
        padding: 12px 15px;
    }

    /* Gallery */
    .gallery-section {
        padding: 40px 0 60px;
    }

    .gallery-header {
        padding: 100px 0 40px;
    }

    .gallery-title {
        font-size: 2rem;
    }

    .filter-buttons {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .gallery-grid,
    .albums-grid,
    .photos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .album-card,
    .gallery-card {
        margin: 0 auto;
        max-width: 100%;
    }

    /* Event Pages */
    .event-header {
        padding: 100px 0 40px;
    }

    .event-title {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }

    .event-meta {
        flex-direction: column;
        gap: 10px;
        font-size: 0.9rem;
    }

    .album-info h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .album-info p {
        font-size: 0.9rem;
    }

    /* Lightbox */
    .lightbox-content {
        padding: 20px;
        max-width: 95%;
        max-height: 90vh;
    }

    .lightbox img {
        max-width: 100%;
        max-height: 70vh;
    }

    .lightbox-caption {
        font-size: 0.9rem;
        padding: 12px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .lightbox-prev {
        left: 5px;
    }

    .lightbox-next {
        right: 5px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-about,
    .footer-links,
    .footer-social {
        text-align: center;
    }

    .footer-logo img {
        margin: 0 auto 15px;
    }

    .footer-social .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        padding: 20px 0;
        font-size: 0.85rem;
    }

    /* Buttons */
    .btn {
        font-size: 0.95rem;
        padding: 12px 25px;
    }

    /* Breadcrumb */
    .breadcrumb {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
}

/* ===== TABLET LANDSCAPE (768px - 968px) ===== */
@media (min-width: 601px) and (max-width: 968px) {
    .hero-content {
        gap: 60px;
    }

    .hero-title-main {
        font-size: 3.5rem;
    }

    .hero-title-gradient {
        font-size: 2.3rem;
    }

    .expertise-grid,
    .milestones-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .albums-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== VERY SMALL DEVICES (max-width: 400px) ===== */
@media (max-width: 400px) {
    .hero-title-main {
        font-size: 1.7rem;
    }

    .hero-title-gradient {
        font-size: 1.2rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 5px 12px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .btn-large {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .page-header h1 {
        font-size: 1.7rem;
    }
}

/* ===== LOADING ANIMATION ===== */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}
