/* ============================================ */
/* MOBILE.CSS - COMPREHENSIVE MOBILE STYLES */
/* ============================================ */

/* ============================================ */
/* BASE MOBILE SETTINGS */
/* ============================================ */
@media only screen and (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    html {
        scroll-behavior: smooth;
        overflow-x: hidden;
    }
    
    body {
        overflow-x: hidden;
        font-size: 16px;
        -webkit-text-size-adjust: 100%;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    a, button {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* ============================================ */
/* NAVIGATION BAR - MOBILE */
/* ============================================ */
@media only screen and (max-width: 768px) {
    .navbar {
        padding: 15px 20px !important;
        background-color: #000000 !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 100;
    }
    
    /* Logo */
    .logo img {
        height: 60px !important;
        width: auto !important;
    }
    
    /* Hamburger Menu Button - Change to horizontal lines */
    .hamburger-menu {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 1001;
        position: relative;
    }

    .hamburger-icon {
        display: flex;
        flex-direction: column;
        gap: 6px;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    /* Change dots to horizontal lines */
    .hamburger-icon .dot {
        width: 25px !important;
        height: 3px !important;
        background-color: #ffffff !important;
        border-radius: 2px !important;
        transition: all 0.3s ease;
        display: block;
    }

    .hamburger-menu:hover .dot {
        background-color: #FFD700 !important;
    }

    /* Active state - X icon */
    .hamburger-menu.active .hamburger-icon {
        gap: 0;
    }

    .hamburger-menu.active .dot:nth-child(1) {
        transform: rotate(45deg) translateY(0px);
        position: relative;
        top: 3px;
    }

    .hamburger-menu.active .dot:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

    .hamburger-menu.active .dot:nth-child(3) {
        transform: rotate(-45deg) translateY(0px);
        position: relative;
        top: -3px;
    }
    
    /* Keep close icon hidden */
    .close-icon {
        display: none !important;
    }

    /* Slide-in Navigation Menu */
    .nav-links {
        position: fixed !important;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 280px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column !important;
        align-items: center;
        justify-content: center;
        gap: 30px !important;
        transition: right 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 1000;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.7);
        padding: 80px 30px;
        display: flex !important;
    }
    
    .nav-links.active {
        right: 0 !important;
    }
    
    .nav-links li {
        list-style: none;
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.3s ease;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.35s; }
    
    .nav-links li a {
        color: #ffffff !important;
        font-size: 16px !important;
        padding: 12px 20px !important;
        display: block;
        transition: all 0.3s ease;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-weight: 500;
        text-decoration: none;
    }
    
    .nav-links li a:hover {
        color: #FFD700 !important;
        transform: translateX(5px);
    }

    .nav-links li a::after {
        display: none;
    }
}

/* ============================================ */
/* HERO SECTION - MOBILE */
/* ============================================ */
@media only screen and (max-width: 768px) {
    .hero-section {
        height: 100vh !important;
        min-height: 600px !important;
        width: 100%;
        overflow: hidden;
    }
    
    .hero-background {
        width: 100%;
        height: 100%;
    }
    
    .hero-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .hero-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.85) 45%,
        rgba(0, 0, 0, 0.50) 70%,
        rgba(0, 0, 0, 0.30) 100%
    );
}
    
   .hero-content {
    padding: 80px 20px 40px 20px !important;  /* more space from top */
    justify-content: flex-start !important;  /* move content to top */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
    
    /* Brand Name - NS Photography */
    .brand-name {
        font-size: 48px !important;
        letter-spacing: 4px !important;
        margin-bottom: 15px !important;
        margin-top: 20px !important;
        line-height: 1.2 !important;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    }
    
    /* Divider */
    .divider {
        width: 200px !important;
        margin: 15px auto !important;
    }
    
    .divider::before,
    .divider::after {
        font-size: 10px !important;
    }
    
    /* Photographer Name */
    .photographer-name {
        font-size: 22px !important;
        margin-bottom: 25px !important;
        letter-spacing: 2px !important;
        line-height: 1.3 !important;
    }
    
    /* Hero Quote */
    .hero-quote {
        font-size: 18px !important;
        padding: 0 30px !important;
        line-height: 1.7 !important;
        max-width: 100% !important;
        margin-top: 10px;
    }
    
    .hero-quote::before {
        font-size: 50px !important;
        top: -10px !important;
        left: 0 !important;
    }
    
    .hero-quote::after {
        font-size: 50px !important;
        bottom: -25px !important;
        right: 0 !important;
    }
    
    /* Corner Decorations */
    .corner-decoration {
        display: block !important;
    }
    
    .corner-top-left,
    .corner-top-right {
        width: 50px !important;
        height: 50px !important;
        top: 20px !important;
        border-width: 2px !important;
    }
    
    .corner-top-left {
        left: 20px !important;
    }
    
    .corner-top-right {
        right: 20px !important;
    }
    
    .corner-bottom-left,
    .corner-bottom-right {
        display: none !important;
    }
}

/* ============================================ */
/* WELCOME SECTION - MOBILE */
/* ============================================ */
@media only screen and (max-width: 768px) {
    .welcome-section {
        padding: 60px 25px !important;
        min-height: auto !important;
        text-align: center;
        background-color: #ffffff;
    }
    
    .logo-initial {
        font-size: 80px !important;
        margin-bottom: 2rem !important;
        color: #000000;
        line-height: 1;
    }
    
    .welcome-text {
        font-size: 16px !important;
        margin-bottom: 2rem !important;
        line-height: 1.6 !important;
        padding: 0 15px;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: #000000;
    }
    
    .description {
        font-size: 16px !important;
        line-height: 1.9 !important;
        max-width: 100% !important;
        padding: 0 15px;
        text-align: center;
        color: #333333;
        margin-bottom: 1.5rem;
    }
    
    .description p {
        margin-bottom: 1.5rem;
        font-size: 16px;
        line-height: 1.9;
    }
    
    .signature-quote {
        font-style: italic;
        font-size: 15px !important;
        line-height: 1.8 !important;
        color: #555555;
        padding: 0 20px;
        margin-top: 2rem;
    }
}

/* ============================================ */
/* WEDDING GALLERY SECTION - MOBILE */
/* ============================================ */
@media only screen and (max-width: 768px) {
    .wedding-section {
        padding: 60px 20px !important;
    }
    
    .section-title {
        font-size: 36px !important;
        margin-bottom: 15px !important;
        letter-spacing: 2px !important;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 12px !important;
        letter-spacing: 3px !important;
        margin-bottom: 40px !important;
    }
    
    /* Gallery Grid - Single column on mobile */
    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 0;
    }
    
    .gallery-item {
        height: auto !important;
        width: 100%;
    }
    
    .image-container {
        height: 350px !important;
        border-radius: 8px !important;
        overflow: hidden !important;
        position: relative;
    }
    
    .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .item-title {
        font-size: 20px !important;
        margin-top: 12px !important;
        letter-spacing: 1.5px !important;
    }
    
    .item-location {
        font-size: 12px !important;
        margin-top: 6px !important;
        letter-spacing: 2px;
    }
    
    .view-gallery-btn {
        padding: 12px 30px !important;
        font-size: 13px !important;
        min-width: 140px !important;
    }
    
    .cta-button {
        padding: 16px 40px !important;
        font-size: 14px !important;
        margin-top: 40px !important;
        letter-spacing: 2px;
    }
}

/* ============================================ */
/* OVERALL STATS SECTION - MOBILE */
/* ============================================ */
@media only screen and (max-width: 768px) {
    .overall-wedding-section {
        padding: 60px 20px !important;
    }
    
    .section-header h2 {
        font-size: 36px !important;
        margin-bottom: 15px !important;
        letter-spacing: 2px !important;
        line-height: 1.2;
    }
    
    .section-header p {
        font-size: 13px !important;
        letter-spacing: 2px !important;
        margin-bottom: 40px !important;
    }
    
    /* Stats Container - Stack vertically */
    .stats-container {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .stat-card {
        padding: 35px 25px !important;
        text-align: center;
    }
    
    .stat-icon {
        font-size: 42px !important;
        margin-bottom: 15px !important;
    }
    
    .stat-number {
        font-size: 42px !important;
        margin-bottom: 10px !important;
    }
    
    .stat-label {
        font-size: 13px !important;
        letter-spacing: 2px !important;
    }
    
    .stat-description {
        font-size: 13px !important;
        line-height: 1.6 !important;
        margin-top: 12px !important;
    }
}

/* ============================================ */
/* INSTAGRAM GALLERY SECTION - MOBILE */
/* ============================================ */
@media only screen and (max-width: 768px) {
    .instagram-gallery-section {
        padding: 60px 0 !important;
        overflow: hidden;
    }
    
    .section-header-instagram {
        padding: 0 20px;
        margin-bottom: 35px;
    }
    
    .gallery-title {
        font-size: 36px !important;
        margin-bottom: 12px !important;
        letter-spacing: 2px !important;
    }
    
    .gallery-subtitle {
        font-size: 12px !important;
        letter-spacing: 3px !important;
    }
    
    /* Horizontal scrollable gallery */
    .gallery-wrapper-new {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        padding: 0 20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .gallery-wrapper-new::-webkit-scrollbar {
        display: none;
    }
    
    .gallery-grid-new {
        display: flex !important;
        flex-direction: row;
        gap: 15px !important;
        width: max-content;
    }
    
    .gallery-item-new {
        flex: 0 0 280px !important;
        min-width: 280px !important;
        height: 350px !important;
    }
    
    .gallery-image-new {
        height: 100%;
        border-radius: 10px;
    }
    
    .gallery-image-new img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .view-instagram-btn {
        margin-top: 35px;
        padding: 16px 40px !important;
        font-size: 14px !important;
    }
}

/* ============================================ */
/* VIDEO SHOWCASE SECTION - MOBILE */
/* ============================================ */
@media only screen and (max-width: 768px) {
    .video-showcase-section {
        padding: 60px 20px !important;
    }
    
    .video-header {
        margin-bottom: 35px;
    }
    
    .video-main-title {
        font-size: 36px !important;
        margin-bottom: 12px !important;
        letter-spacing: 2px !important;
        line-height: 1.2;
    }
    
    .video-subtitle {
        font-size: 12px !important;
        letter-spacing: 3px !important;
    }
    
    /* Video Container */
    .video-container {
        max-width: 100% !important;
        height: auto !important;
        aspect-ratio: 16/9;
        margin-bottom: 25px;
    }
    
    .video-wrapper {
        width: 100%;
        height: 100%;
        position: relative;
        padding-bottom: 56.25%;
    }
    
    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .video-play-btn {
        width: 70px !important;
        height: 70px !important;
    }
    
    .video-play-btn i {
        font-size: 28px !important;
    }
    
    /* Video Info */
    .video-info {
        text-align: center;
        padding: 0 10px;
    }
    
    .video-title {
        font-size: 22px !important;
        margin-bottom: 12px !important;
        letter-spacing: 1.5px !important;
    }
    
    .video-description {
        font-size: 14px !important;
        line-height: 1.7 !important;
        margin-bottom: 25px !important;
    }
    
    .watch-more-btn {
        padding: 16px 40px !important;
        font-size: 14px !important;
    }
}

/* ============================================ */
/* TESTIMONIALS SECTION - MOBILE */
/* ============================================ */
@media only screen and (max-width: 768px) {
    .testimonials-section {
        padding: 60px 20px !important;
    }
    
    .testimonials-header {
        margin-bottom: 35px;
    }
    
    .testimonials-title {
        font-size: 36px !important;
        margin-bottom: 12px !important;
        letter-spacing: 2px !important;
        line-height: 1.2;
    }
    
    .testimonials-subtitle {
        font-size: 12px !important;
        letter-spacing: 3px !important;
    }
    
    /* Testimonial Slider */
    .testimonials-slider {
        max-width: 100% !important;
        padding: 0;
    }
    
    .testimonial-track {
        gap: 20px;
    }
    
    .testimonial-slide {
        min-width: 100% !important;
        padding: 0 10px;
    }
    
    .testimonial-card {
        padding: 35px 25px !important;
        border-radius: 12px;
    }
    
    .testimonial-text {
        font-size: 16px !important;
        line-height: 1.8 !important;
        margin-bottom: 20px !important;
    }
    
    .testimonial-author {
        font-size: 18px !important;
        margin-bottom: 8px !important;
        letter-spacing: 1.5px !important;
    }
    
    .testimonial-location {
        font-size: 12px !important;
        letter-spacing: 2px !important;
    }
    
    /* Navigation Controls */
    .navigation-controls {
        margin-top: 30px;
        gap: 15px;
    }
    
    .nav-button {
        width: 45px !important;
        height: 45px !important;
        font-size: 20px !important;
    }
    
    .dots-container {
        gap: 8px;
    }
    
    .dot {
        width: 10px !important;
        height: 10px !important;
    }
}

/* ============================================ */
/* FOOTER SECTION - MOBILE */
/* ============================================ */
@media only screen and (max-width: 768px) {
    .footer-section {
        padding: 50px 0 !important;
    }
    
    .footer-container {
        padding: 0 20px !important;
    }
    
    /* Footer Top - Stack columns vertically */
    .footer-top {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center;
    }
    
    .footer-column {
        max-width: 100% !important;
    }
    
    /* Footer Logo */
    .footer-logo {
        margin-bottom: 20px;
    }
    
    .footer-logo img {
        height: 70px !important;
        margin: 0 auto !important;
        display: block;
    }
    
    /* Footer Description */
    .footer-description {
        font-size: 14px !important;
        line-height: 1.8 !important;
        margin-bottom: 25px !important;
        text-align: center;
    }
    
    /* Social Media Icons */
    .social-media {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }
    
    .social-link {
        width: 45px !important;
        height: 45px !important;
        font-size: 20px !important;
    }
    
    /* Footer Headings */
    .footer-heading {
        font-size: 20px !important;
        margin-bottom: 20px !important;
        letter-spacing: 1.5px !important;
        text-align: center;
    }
    
    /* Footer Links */
    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }
    
    .footer-links li {
        margin-bottom: 12px;
    }
    
    .footer-links li a {
        font-size: 14px !important;
        display: inline-block;
        padding: 8px 0;
    }
    
    /* Contact Info */
    .contact-info {
        text-align: left;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .contact-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    .contact-item i {
        color: #d4a574;
        font-size: 20px;
        width: 30px;
        text-align: center;
        margin-top: 2px;
        flex-shrink: 0;
    }
    
    .contact-item div {
        flex: 1;
        text-align: left;
    }
    
    .contact-item p {
        color: #a0a0a0;
        font-size: 14px !important;
        line-height: 1.6;
        margin: 0;
    }
    
    .contact-item strong {
        color: #e8e8e8;
        display: block;
        margin-bottom: 5px;
        font-size: 15px;
        font-weight: 600;
    }
    
    .contact-item a {
        color: #d4a574;
        text-decoration: none;
        font-size: 14px;
        word-break: break-word;
    }
    
    /* Get In Touch Button */
    .get-in-touch-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        max-width: 400px;
        margin: 25px auto 0;
        padding: 16px 35px !important;
        font-size: 15px !important;
        border-radius: 50px;
    }
    
    .get-in-touch-btn i {
        font-size: 16px;
    }
    
    /* Footer Bottom */
    .footer-bottom {
        padding: 25px 0 !important;
        margin-top: 40px !important;
    }
    
    .footer-divider {
        margin-bottom: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 15px !important;
    }
    
    .copyright {
        font-size: 13px !important;
        line-height: 1.6;
    }
    
    .footer-links-bottom {
        font-size: 13px !important;
        gap: 10px;
    }
    
    .footer-links-bottom a {
        padding: 5px 10px;
    }
}

/* ============================================ */
/* VERY SMALL DEVICES (< 480px) */
/* ============================================ */
@media only screen and (max-width: 480px) {
    /* Navbar */
    .navbar {
        padding: 12px 15px !important;
    }
    
    .logo img {
        height: 50px !important;
    }
    
    /* Hero Section */
    .hero-content {
        padding: 15px 15px 30px 15px !important;
    }
    
    .brand-name {
        font-size: 36px !important;
        letter-spacing: 3px !important;
    }
    
    .photographer-name {
        font-size: 18px !important;
        letter-spacing: 1.5px !important;
    }
    
    .hero-quote {
        font-size: 16px !important;
        padding: 0 20px !important;
    }
    
    .hero-quote::before,
    .hero-quote::after {
        font-size: 40px !important;
    }
    
    .divider {
        width: 150px !important;
    }
    
    .corner-top-left,
    .corner-top-right {
        width: 40px !important;
        height: 40px !important;
        top: 15px !important;
    }
    
    .corner-top-left {
        left: 15px !important;
    }
    
    .corner-top-right {
        right: 15px !important;
    }
    
    /* Sections Padding */
    .welcome-section,
    .wedding-section,
    .overall-wedding-section,
    .instagram-gallery-section,
    .video-showcase-section,
    .testimonials-section {
        padding: 50px 15px !important;
    }
    
    /* Section Titles */
    .section-title,
    .gallery-title,
    .video-main-title,
    .testimonials-title {
        font-size: 30px !important;
    }
    
    .logo-initial {
        font-size: 70px !important;
    }
    
    .welcome-text {
        font-size: 14px !important;
        letter-spacing: 2px !important;
    }
    
    .description {
        font-size: 15px !important;
        line-height: 1.8 !important;
    }
    
    .description p {
        font-size: 15px !important;
        margin-bottom: 1.2rem;
    }
    
    .signature-quote {
        font-size: 14px !important;
    }
    
    /* Image Containers */
    .image-container {
        height: 300px !important;
    }
    
    /* Stats */
    .stat-number {
        font-size: 38px !important;
    }
    
    .stat-icon {
        font-size: 38px !important;
    }
    
    /* Instagram Gallery Items */
    .gallery-item-new {
        flex: 0 0 250px !important;
        min-width: 250px !important;
        height: 320px !important;
    }
    
    /* Video Container */
    .video-container {
        margin-bottom: 20px;
    }
    
    /* Testimonial Card */
    .testimonial-card {
        padding: 30px 20px !important;
    }
    
    .testimonial-text {
        font-size: 15px !important;
    }
    
    /* Footer */
    .footer-container {
        padding: 0 15px !important;
    }
    
    .footer-logo img {
        height: 60px !important;
    }
    
    .footer-description {
        font-size: 13px !important;
    }
    
    .contact-info {
        padding: 0 10px;
    }
    
    .copyright {
        font-size: 12px !important;
    }
}

/* ============================================ */
/* LANDSCAPE ORIENTATION ON PHONES */
/* ============================================ */
@media only screen and (max-width: 896px) and (orientation: landscape) {
    .hero-section {
        height: 100vh !important;
        min-height: 500px !important;
    }
    
    .hero-content {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    
    .brand-name {
        font-size: 40px !important;
        margin-bottom: 10px !important;
    }
    
    .photographer-name {
        font-size: 20px !important;
        margin-bottom: 20px !important;
    }
    
    .hero-quote {
        font-size: 16px !important;
        padding: 0 25px !important;
    }
    
    .divider {
        margin: 10px auto !important;
    }
}

/* ============================================ */
/* GALLERY MODAL - MOBILE */
/* ============================================ */
@media only screen and (max-width: 768px) {
    .gallery-modal-content {
        width: 95% !important;
        height: 95vh !important;
    }
    
    .gallery-modal-title {
        font-size: 28px !important;
        letter-spacing: 1.5px !important;
    }
    
    .gallery-modal-location {
        font-size: 11px !important;
        letter-spacing: 2px !important;
    }
    
    .gallery-slider-container {
        height: 400px !important;
        max-width: 100% !important;
    }
    
    .gallery-main-image {
        border-width: 2px !important;
    }
    
    .gallery-nav-btn {
        width: 45px !important;
        height: 45px !important;
        font-size: 24px !important;
    }
    
    .gallery-prev {
        left: 5px !important;
    }
    
    .gallery-next {
        right: 5px !important;
    }
    
    .gallery-close {
        top: 10px !important;
        right: 10px !important;
        font-size: 35px !important;
        width: 45px !important;
        height: 45px !important;
    }
}

@media only screen and (max-width: 480px) {
    .gallery-modal-title {
        font-size: 22px !important;
    }
    
    .gallery-slider-container {
        height: 300px !important;
    }
    
    .gallery-nav-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 20px !important;
    }
}

/* ============================================ */
/* TOUCH-FRIENDLY ENHANCEMENTS */
/* ============================================ */
@media only screen and (max-width: 768px) {
    /* Ensure all interactive elements are touch-friendly */
    button,
    .cta-button,
    .view-gallery-btn,
    .view-instagram-btn,
    .watch-more-btn,
    .get-in-touch-btn,
    .nav-button,
    .social-link {
        min-height: 44px;
        min-width: 44px;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Smooth transitions for all interactive elements */
    button,
    a,
    .gallery-item,
    .stat-card,
    .testimonial-card {
        transition: all 0.3s ease;
    }
    
    /* Prevent text selection on buttons and links */
    button,
    a {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
}