/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background-color: #1a1a1a;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Base logo styles */
.logo {
    display: block;
}

.logo img {
    width: 10%;  /* Original width */
    transition: transform 0.1s ease;
    transform: scale(3);
}

.logo img:hover {
    transform: scale(3.5);
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: #ff4d4d;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: transform 0.3s ease;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 0;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
    z-index: 1;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.8rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.animate-text {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.animate-text:nth-child(1) {
    animation-delay: 0.5s;
}

.animate-text:nth-child(2) {
    animation-delay: 1s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-button {
    display: inline-block;
    background-color: #ff4d4d;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #e63939;
    transform: translateY(-5px);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid #ff4d4d;
}

.cta-button.secondary:hover {
    background-color: #ff4d4d;
}

/* Featured Section */
.featured {
    padding: 80px 0;
}

.featured h2,
.page-header h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background-color: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card h3 {
    font-size: 1.5rem;
    padding: 20px;
}

.card p {
    padding: 0 20px 20px;
    color: #ccc;
}

.btn {
    display: block;
    margin: 20px;
    padding: 10px 20px;
    background-color: #ff4d4d;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #e63939;
}

/* Latest Release */
.latest-release {
    padding: 80px 0;
    margin-top: 40px;
}

.latest-release h2 {
    font-size: 2.5rem;
    color: #ff4d4d;
    margin-bottom: 40px;
    text-align: center;
}

.release-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.release-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.release-card img {
    width: 300px;
    height: 300px;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.release-card img:hover {
    transform: scale(1.05);
}

.release-info {
    flex: 1;
}

.release-info h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #ff4d4d;
}

.release-info p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
}

.release-info .btn {
    display: inline-block;
    background: #ff4d4d;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.release-info .btn:hover {
    background: #e63939;
    transform: translateY(-2px);
}

/* Page Header */
.page-header {
    padding: 100px 0 50px;
    text-align: center;
}

.page-header p {
    font-size: 1.2rem;
    color: #ccc;
}

/* Contact Section */
.contact {
    padding: 50px 0;
    display: flex;
    gap: 50px;
    background: linear-gradient(135deg, #1a1a1a, #222);
    border-radius: 10px;
}

.contact-form-wrapper,
.contact-info {
    flex: 1;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.contact-form-wrapper {
    animation-delay: 0.2s;
}

.contact-info {
    animation-delay: 0.4s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-form-wrapper h2,
.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #333;
    border-radius: 5px;
    background-color: #2a2a2a;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ff4d4d;
    box-shadow: 0 0 8px rgba(255, 77, 77, 0.3);
    outline: none;
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #ccc;
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    color: #ff4d4d;
    background-color: #2a2a2a;
    padding: 0 5px;
}

.contact-info .info-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 1.5rem;
    color: #ff4d4d;
}

.info-item p {
    font-size: 1rem;
    color: #ccc;
}

.info-item a {
    color: #ff4d4d;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #e63939;
}

/* Music Player Styles */
.music-player {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
}

.player-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
}

.track-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.track-cover {
    width: 40px;  /* Reduced size */
    height: 40px; /* Reduced size */
    border-radius: 4px;
    object-fit: cover;
}

.track-details {
    display: flex;
    flex-direction: column;
}

#track-name {
    font-weight: bold;
    color: #fff;
    font-size: 0.9rem;
}

#artist-name {
    color: #999;
    font-size: 0.8rem;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: #333;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.progress {
    height: 100%;
    background: #ff4d4d;
    border-radius: 2px;
    width: 0;
}

.control-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.control-btn, .play-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn {
    font-size: 14px;
    opacity: 0.7;
}

.control-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.play-btn {
    width: 36px;
    height: 36px;
    background: #ff4d4d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.play-btn:hover {
    background: #e63939;
    transform: scale(1.1);
}

.play-btn i {
    margin-left: 2px; /* Centers the play icon better */
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.volume-control i {
    color: #fff;
    font-size: 14px;
}

#volume-slider {
    width: 80px;
    height: 4px;
    -webkit-appearance: none;
    background: #333;
    border-radius: 2px;
    outline: none;
}

#volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    background: #ff4d4d;
    border-radius: 50%;
    cursor: pointer;
}

#volume-slider::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: #ff4d4d;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Footer */
footer {
    background-color: #111;
    padding: 40px 0;
    text-align: center;
    margin-bottom: 70px;
}

footer p {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
}

.social-links i {
    font-size: 24px;
    color: #fff;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links i:hover {
    transform: scale(1.2);
    color: #ff4d4d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        display: block;
        position: relative;
        z-index: 1001;
    }

    .logo img {
        width: 120px;
        transform: scale(1);
        margin-left: 20px;
    }

    header {
        padding: 15px 0;
    }

    header .container {
        height: 40px;
    }

    .nav-toggle-label {
        display: block;
        position: fixed;
        right: 20px;
        top: 20px;
        z-index: 1001;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100%;
        background-color: #111;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 999;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
    }

    nav ul li {
        margin-left: 0;
    }

    nav ul li a {
        font-size: 1.2rem;
        display: block;
        padding: 10px;
    }

    .nav-toggle:checked ~ nav {
        right: 0;
    }

    /* Improve X icon transition */
    .nav-toggle:checked ~ .nav-toggle-label i::before {
        content: '\f00d'; /* FontAwesome X icon */
    }

    /* Keep play button small but maintain player layout */
    .music-player .play-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    /* Keep player layout horizontal */
    .player-container {
        flex-direction: row;
        justify-content: space-between;
        gap: 15px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.4rem;
    }

    .hero-ctas {
        flex-direction: column;
        gap: 15px;
    }

    .release-card {
        flex-direction: column;
        padding: 30px;
        text-align: center;
        gap: 30px;
    }

    .release-card img {
        width: 250px;
        height: 250px;
    }

    .release-info h3 {
        font-size: 1.8rem;
    }

    .release-info p {
        font-size: 1.1rem;
    }

    .track-info {
        justify-content: center;
    }

    .player-controls {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .volume-control {
        width: 100%;
        justify-content: center;
    }

    #volume-slider {
        width: 150px;
    }

    /* Contact Section */
    .contact {
        flex-direction: column;
        gap: 30px;
    }

    .contact-form-wrapper,
    .contact-info {
        width: 100%;
    }

    .music-player .play-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    /* Update hamburger menu icon transition */
    .nav-toggle-label {
        display: block;
    }

    .nav-toggle-label i {
        transition: all 0.3s ease;
    }

    /* Change hamburger to X when menu is open */
    .nav-toggle:checked ~ .nav-toggle-label i::before {
        content: '\f00d'; /* FontAwesome X icon */
    }

    /* Add padding for about page text */
    .about-text {
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .about-text h2 {
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .about-text p {
        line-height: 1.8;
        margin-bottom: 20px;
    }

    /* Add padding for contact page */
    .contact-form-wrapper {
        padding: 0 20px;
    }

    .contact-form .form-group {
        margin-bottom: 25px;
    }

    .contact-form h2 {
        margin-bottom: 30px;
    }

    .contact-info {
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .contact-info .info-card {
        padding: 25px;
    }

    .info-item {
        margin-bottom: 25px;
    }

    .info-item:last-child {
        margin-bottom: 0;
    }

    .hero-video {
        pointer-events: none;  /* Prevents any interaction with the video */
        user-select: none;     /* Prevents text selection */
        -webkit-user-select: none;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/images/studio.jpg');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
}

.about-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.about-hero .subtitle {
    font-size: 1.5rem;
    color: #ff4d4d;
}

.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ff4d4d;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ff4d4d;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero h1 {
        font-size: 3rem;
    }
}

/* Updated Contact Form Styles */
.contact-form .form-group input[type="url"] {
    width: 100%;
    padding: 15px;
    border: 2px solid #333;
    border-radius: 5px;
    background-color: #2a2a2a;
    color: #fff;
    font-size: 0.9rem;  /* Reduced font size */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-group input[type="url"]:focus {
    border-color: #ff4d4d;
    box-shadow: 0 0 8px rgba(255, 77, 77, 0.3);
    outline: none;
}

.contact-form button {
    background-color: #ff4d4d;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-form button:hover {
    background-color: #e63939;
    transform: translateY(-2px);
}

/* Mobile adjustments for contact form */
@media (max-width: 768px) {
    .contact-form .form-group input[type="url"] {
        font-size: 0.75rem;  /* Even smaller font size on mobile */
    }

    .contact-form .form-group input[type="url"]::placeholder {
        font-size: 0.75rem;  /* Match the input text size */
    }
    
    .contact-form .form-group label {
        font-size: 0.75rem;  /* Match the input text size */
    }
}

/* Releases Page Styles */
.releases-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/images/releases-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
}

.releases-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.releases-hero .subtitle {
    font-size: 1.5rem;
    color: #ff4d4d;
}

.releases-grid {
    padding: 80px 0;
}

.release-card.featured {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.release-artwork {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.release-artwork img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.release-artwork:hover .play-overlay {
    opacity: 1;
}

.release-artwork:hover img {
    transform: scale(1.05);
}

.play-btn {
    width: 60px;
    height: 60px;
    background: #ff4d4d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.1);
}

.release-info h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ff4d4d;
}

.release-info .artist {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
}

.release-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stream-btn {
    display: inline-block;
    background: #ff4d4d;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stream-btn:hover {
    background: #e63939;
    transform: translateY(-2px);
}

.platform-links {
    display: flex;
    gap: 20px;
}

.platform-links a {
    font-size: 24px;
    color: #ccc;
    transition: color 0.3s ease, transform 0.3s ease;
}

.platform-links a:hover {
    color: #ff4d4d;
    transform: translateY(-2px);
}

/* Events Page Styles */
.events-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/images/events-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
}

.events-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.events-hero .subtitle {
    font-size: 1.5rem;
    color: #ff4d4d;
}

.events-content {
    padding: 80px 0;
}

.announcement-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    padding: 60px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.announcement-icon {
    font-size: 64px;
    color: #ff4d4d;
    margin-bottom: 30px;
}

.announcement-card h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ff4d4d;
}

.announcement-card p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
}

.notification-signup {
    background: rgba(255, 77, 77, 0.1);
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
}

.notification-signup p {
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .release-card.featured {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .releases-hero h1,
    .events-hero h1 {
        font-size: 3rem;
    }

    .announcement-card {
        padding: 30px;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/images/contact-bg.jpg');  /* Darker gradient to match other pages */
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
}

.contact-hero h1 {
    font-size: 4rem;  /* Reduced size to match other pages */
    margin-bottom: 1rem;
    text-shadow: none;
    color: #ffffff;
    font-weight: 600;  /* Slightly reduced weight */
    letter-spacing: 1px;  /* Reduced spacing */
}

.contact-hero .subtitle {
    font-size: 1.5rem;  /* Reduced to match other pages */
    color: #ff4d4d;
    font-weight: 500;
    text-shadow: none;
    margin-top: 10px;
}

/* Remove the extra overlay since we adjusted the main gradient */
.contact-hero .hero-overlay {
    display: none;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.form-card, .info-card {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-form-wrapper h2,
.contact-info h2 {
    font-size: 2.5rem;
    color: #ff4d4d;
    margin-bottom: 30px;
    text-align: center;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.info-item i {
    font-size: 3rem;
    color: #ff4d4d;
}

.info-item a {
    font-size: 1.2rem;
    color: #fff;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #ff4d4d;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-card, .info-card {
        padding: 30px;
    }

    .contact-hero h1 {
        font-size: 3rem;
    }
}