.playball-regular {
        font-family: "Playball", cursive;
        font-weight: 400;
        font-style: normal;
        }

        #header-font {
            font-family: "Playball", cursive;
            font-size: xxx-large;
            color: #F9B233
        }

        .yellow-text {
            color: #F9B233
        }

        .blue-text {
            color: #00a6ff;
        }

        .red-text {
            color: #D41217;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Space Grotesk", sans-serif;
            background: #0a0a0a;
            color: #fff;
            overflow-x: hidden;
            transition: background 0.3s ease, color 0.3s ease;
        }

        body.light-mode {
            background: #f8f8f8;
            color: #0a0a0a;
        }

        /* Theme Switch */
        .theme-switch-wrapper {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 1001;
        }

        .switch {
            font-size: 17px;
            position: relative;
            display: inline-block;
            width: 4em;
            height: 2.2em;
            border-radius: 30px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #2a2a2a;
            transition: 0.4s;
            border-radius: 30px;
            overflow: hidden;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 1.2em;
            width: 1.2em;
            border-radius: 20px;
            left: 0.5em;
            bottom: 0.5em;
            transition: 0.4s;
            transition-timing-function: cubic-bezier(0.81, -0.04, 0.38, 1.5);
            box-shadow: inset 8px -4px 0px 0px #fff;
        }

        .switch input:checked + .slider {
            background-color: #00a6ff;
        }

        .switch input:checked + .slider:before {
            transform: translateX(1.8em);
            box-shadow: inset 15px -4px 0px 15px #ffcf48;
        }

        .star {
            background-color: #fff;
            border-radius: 50%;
            position: absolute;
            width: 5px;
            transition: all 0.4s;
            height: 5px;
        }

        .star_1 {
            left: 2.5em;
            top: 0.5em;
        }

        .star_2 {
            left: 2.2em;
            top: 1.2em;
        }

        .star_3 {
            left: 3em;
            top: 0.9em;
        }

        .switch input:checked ~ .slider .star {
            opacity: 0;
        }

        .cloud {
            width: 3.5em;
            position: absolute;
            bottom: -1.4em;
            left: -1.1em;
            opacity: 0;
            transition: all 0.4s;
        }

        .switch input:checked ~ .slider .cloud {
            opacity: 1;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 2rem 4rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }

        body.light-mode nav {
            background: rgba(248, 248, 248, 0.95);
            backdrop-filter: blur(10px);
        }

        .logo {
            height: 100px;
        }

        .logo img {
            height: 100%;
            width: auto;
        }

        .menu {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .menu a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            transition: opacity 0.3s;
        }

        body.light-mode .menu a {
            color: #0a0a0a;
        }

        .menu a::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #4B93FF;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .menu a.active::after {
            opacity: 1;
            animation: waveMove 2s ease-in-out infinite;
        }

        @keyframes waveMove {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-3px);
            }
        }

        /* Hamburger Button */
        .hamburger-btn {
            display: none;
            position: fixed;
            right: 1rem;
            top: 1rem;
            font-size: 2rem;
            cursor: pointer;
            z-index: 1002;
            color: #fff;
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
            background: none;
            border: none;
        }

        body.light-mode .hamburger-btn {
            color: #0a0a0a;
        }

        /* Hero */
        .hero {
            height: 60vh;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            margin-top: 0;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #4B93FF 0%, #3a7ae0 100%);
        }

        .hero-content {
            text-align: center;
            z-index: 10;
            position: relative;
            padding: 0 2rem;
        }

        .hero h1 {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero p {
            font-size: clamp(1.2rem, 2vw, 1.5rem);
            font-weight: 400;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Content Sections */
        .section {
            padding: 8rem 4rem;
            position: relative;
        }

        .section-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 3rem;
            line-height: 1.2;
            text-align: center;
        }

        /* Contact Container */
        .contact-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            min-height: 600px;
        }

        .contact-slider {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            width: 200%;
        }

        .contact-slider.show-form {
            transform: translateX(-50%);
        }

        .contact-panel {
            width: 50%;
            flex-shrink: 0;
        }

        /* Contact Info */
        .contact-info {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 4rem;
            border-radius: 24px;
            backdrop-filter: blur(10px);
        }

        body.light-mode .contact-info {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-bottom: 3rem;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 16px;
            transition: all 0.3s;
        }

        body.light-mode .contact-item {
            background: rgba(0, 0, 0, 0.02);
        }

        .contact-item:hover {
            background: rgba(75, 147, 255, 0.05);
            transform: translateX(10px);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-item:nth-child(1) .contact-icon {
            background: linear-gradient(135deg, #00a6ff 0%, #0080cc 100%);
        }

        .contact-item:nth-child(2) .contact-icon {
            background: linear-gradient(135deg, #F9B233 0%, #e09a1a 100%);
        }

        .contact-item:nth-child(3) .contact-icon {
            background: linear-gradient(135deg, #D41217 0%, #a30e12 100%);
        }

        .contact-icon svg {
            width: 30px;
            height: 30px;
            color: #fff;
        }

        .contact-details h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .contact-details p {
            color: #888;
            font-size: 1.1rem;
        }

        body.light-mode .contact-details p {
            color: #555;
        }

        .contact-details a {
            color: #888;
            text-decoration: none;
            transition: color 0.3s;
        }

        body.light-mode .contact-details a {
            color: #555;
        }

        .contact-details a:hover {
            color: #4B93FF;
        }

        .toggle-btn {
            display: inline-block;
            margin-top: 2rem;
            padding: 1.2rem 3rem;
            background: linear-gradient(135deg, #4B93FF 0%, #3a7ae0 100%);
            color: #fff;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            font-family: "Space Grotesk", sans-serif;
        }

        .toggle-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(75, 147, 255, 0.3);
        }

        /* Contact Form */
        .contact-form-wrapper {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 4rem;
            border-radius: 24px;
            backdrop-filter: blur(10px);
        }

        body.light-mode .contact-form-wrapper {
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            font-size: 1rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: #fff;
            font-family: "Space Grotesk", sans-serif;
            font-size: 1rem;
            transition: all 0.3s;
        }

        body.light-mode .form-group input,
        body.light-mode .form-group textarea {
            background: rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.1);
            color: #0a0a0a;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #4B93FF;
            background: rgba(75, 147, 255, 0.05);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .form-buttons {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .submit-btn {
            flex: 1;
            padding: 1.2rem 3rem;
            background: linear-gradient(135deg, #4B93FF 0%, #3a7ae0 100%);
            color: #fff;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            font-family: "Space Grotesk", sans-serif;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(75, 147, 255, 0.3);
        }

        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .back-btn {
            padding: 1.2rem 2rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            font-family: "Space Grotesk", sans-serif;
        }

        body.light-mode .back-btn {
            background: rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.1);
            color: #0a0a0a;
        }

        .back-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }

        /* Tooltip Container */
        .tooltip-container {
            position: relative;
            cursor: pointer;
            transition: all 0.2s;
            font-size: 17px;
            border-radius: 10px;
        }

        .tooltip {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            padding: 10px;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s;
            border-radius: 15px;
            box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2),
                inset -5px -5px 15px rgba(255, 255, 255, 0.1),
                5px 5px 15px rgba(0, 0, 0, 0.3), 
                -5px -5px 15px rgba(255, 255, 255, 0.1);
        }

        .tooltip-container:hover .tooltip {
            top: -150px;
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        /* Profile Styles */
        .profile {
            border-radius: 10px 15px;
            padding: 10px;
        }

        /* Instagram Profile */
        .tooltip-container:has(.instagramSVG) .profile {
            background: #2a2b2f;
            border: 1px solid #52382f;
        }

        /* Facebook Profile */
        .tooltip-container:has(.facebookSVG) .profile {
            background: #3b5998;
            border: 1px solid #29487d;
        }

        .user {
            display: flex;
            gap: 10px;
        }

        .img {
            width: 50px;
            height: 50px;
            font-size: 25px;
            font-weight: 700;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
        }

        /* Instagram Image Border */
        .tooltip-container:has(.instagramSVG) .img {
            border: 1px solid #e6683c;
        }

        /* Facebook Image Border */
        .tooltip-container:has(.facebookSVG) .img {
            border: 1px solid #1877f2;
        }

        .details {
            display: flex;
            flex-direction: column;
            gap: 0;
            color: #fff;
        }

        .name {
            font-size: 17px;
            font-weight: 700;
        }

        /* Instagram Name Color */
        .tooltip-container:has(.instagramSVG) .name {
            color: #e6683c;
        }

        /* Facebook Name Color */
        .tooltip-container:has(.facebookSVG) .name {
            color: #1877f2;
        }

        .username {
            font-size: 14px;
            color: #fff;
        }

        .about {
            color: #ccc;
            padding-top: 5px;
            font-size: 14px;
        }

        /* Icon Styles */
        .icon {
            text-decoration: none;
            color: #fff;
            display: block;
            position: relative;
        }

        .layer {
            width: 55px;
            height: 55px;
            transition: transform 0.3s;
            position: relative;
        }

        .icon:hover .layer {
            transform: rotate(-35deg) skew(20deg);
        }

        .layer span {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            border: 1px solid #fff;
            transition: all 0.3s;
        }

        /* Instagram Layer */
        .tooltip-container:has(.instagramSVG) .layer span {
            border-radius: 15px;
            border-color: #e6683c;
        }

        /* Facebook Layer */
        .tooltip-container:has(.facebookSVG) .layer {
            border: 3px solid #1877f2;
            border-radius: 50%;
            box-shadow: 0 0 15px rgba(24, 119, 242, 0.7), 0 0 20px rgba(24, 119, 242, 0.5);
        }

        .tooltip-container:has(.facebookSVG) .icon:hover .layer {
            box-shadow: 0 0 30px rgba(24, 119, 242, 1), 0 0 40px rgba(24, 119, 242, 0.7);
        }

        .tooltip-container:has(.facebookSVG) .layer span {
            border-radius: 50%;
            border-color: #1877f2;
        }

        /* Instagram Hover Effects */
        .tooltip-container:has(.instagramSVG) .icon:hover .layer span {
            box-shadow: -1px 1px 3px #e6683c;
        }

        /* Facebook Hover Effects */
        .tooltip-container:has(.facebookSVG) .icon:hover .layer span {
            box-shadow: -1px 1px 3px #1877f2;
        }

        /* Text Below Icon */
        .icon .text {
            position: absolute;
            left: 50%;
            bottom: -5px;
            opacity: 0;
            font-weight: 500;
            transform: translateX(-50%);
            transition: bottom 0.3s ease, opacity 0.3s ease;
            white-space: nowrap;
        }

        .icon:hover .text {
            bottom: -35px;
            opacity: 1;
        }

        /* Instagram Text Color */
        .tooltip-container:has(.instagramSVG) .icon .text {
            color: #e6683c;
        }

        /* Facebook Text Color */
        .tooltip-container:has(.facebookSVG) .icon .text {
            color: #1877f2;
        }

        /* Layer Span Animation */
        .icon:hover .layer span:nth-child(1) {
            opacity: 0.2;
        }

        .icon:hover .layer span:nth-child(2) {
            opacity: 0.4;
            transform: translate(5px, -5px);
        }

        .icon:hover .layer span:nth-child(3) {
            opacity: 0.6;
            transform: translate(10px, -10px);
        }

        .icon:hover .layer span:nth-child(4) {
            opacity: 0.8;
            transform: translate(15px, -15px);
        }

        .icon:hover .layer span:nth-child(5) {
            opacity: 1;
            transform: translate(20px, -20px);
        }

        /* SVG Icons */
        .instagramSVG {
            font-size: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(
                45deg,
                #f09433 0%,
                #e6683c 25%,
                #dc2743 50%,
                #cc2366 75%,
                #bc1888 100%
            );
            border-radius: 15px;
            width: 55px;
            height: 55px;
        }

        .facebookSVG {
            font-size: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(
                45deg,
                #1877f2 0%,
                #3b5998 25%,
                #1877f2 50%,
                #3b5998 75%,
                #1877f2 100%
            );
            border-radius: 50%;
            width: 55px;
            height: 55px;
        }

        .svgIcon {
            width: 25px;
            height: 25px;
        }

        /* Footer */
        footer {
            padding: 6rem 4rem 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        body.light-mode footer {
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .footer-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        .footer-brand {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .footer-desc {
            color: #888;
            line-height: 1.6;
        }

        body.light-mode .footer-desc {
            color: #555;
        }

        .footer-title {
            font-weight: 600;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-links a {
            color: #888;
            text-decoration: none;
            transition: color 0.3s;
        }

        body.light-mode .footer-links a {
            color: #555;
        }

        .footer-links a:hover {
            color: #4B93FF;
        }

        .footer-bottom {
            text-align: center;
            color: #555;
            padding-top: 3rem;
            font-size: 0.9rem;
        }

        body.light-mode .footer-bottom {
            color: #888;
        }

        @media (max-width: 768px) {
    
    nav {
        padding: 1rem;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
    }
    
    body.light-mode nav {
        background: rgba(248, 248, 248, 0.98);
    }
    
    .logo {
        height: 50px;
        position: relative;
        z-index: 1002;
    }
    
    .hamburger-btn {
        display: flex;
    }
    
    .menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 5rem 0 2rem 0;
        transition: left 0.3s ease;
        z-index: 1001;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    }
    
    body.light-mode .menu {
        background: rgba(248, 248, 248, 0.98);
    }
    
    .menu.mobile-active {
        left: 0;
    }
    
    .menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    body.light-mode .menu li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .menu a {
        display: block;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    .menu a::after {
        display: none;
    }
    
    .hero {
        height: 50vh;
        min-height: 400px;
        padding: 0 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    #header-font {
        font-size: xx-large;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    /* Sections */
    .section {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-container {
        min-height: auto;
        overflow: hidden; 
    }
    
    .contact-slider {
        width: 100%;
        flex-direction: column;
        transform: none !important;
    }
    
    .contact-panel {
        width: 100%;
    }
    
    .contact-slider.show-form .contact-panel:first-child {
        display: none;
    }
    
    .contact-slider:not(.show-form) .contact-panel:last-child {
        display: none;
    }
    
    .contact-info {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .contact-item {
        flex-direction: row;
        gap: 1.5rem;
        margin-bottom: 2rem;
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .contact-item:hover {
        transform: none;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon svg {
        width: 25px;
        height: 25px;
    }
    
    .contact-details h3 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .contact-details p {
        font-size: 0.95rem;
    }
    
    .toggle-btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
        margin-top: 1.5rem;
    }
    
    .toggle-btn:hover {
        transform: none;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
        border-radius: 10px;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    .form-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .submit-btn,
    .back-btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .submit-btn:hover,
    .back-btn:hover {
        transform: none;
    }
    
    .tooltip-container:hover .tooltip {
        display: none;
    }
    
    .icon .text {
        display: none;
    }
    
    .layer {
        width: 50px;
        height: 50px;
    }
    
    .instagramSVG,
    .facebookSVG {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    footer {
        padding: 3rem 1rem 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-brand {
        font-size: 1.3rem;
    }
    
    .footer-desc {
        font-size: 0.9rem;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links {
        gap: 0.8rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        font-size: 0.85rem;
        padding-top: 2rem;
    }
    
    /* Theme Switch */
    .theme-switch-wrapper {
        bottom: 1rem;
        right: 1rem;
    }
    
    .switch {
        font-size: 14px;
        width: 3.5em;
        height: 2em;
    }
    
    .slider:before {
        height: 1em;
        width: 1em;
        left: 0.4em;
        bottom: 0.5em;
    }
    
    .switch input:checked + .slider:before {
        transform: translateX(1.5em);
    }
    
    .star {
        width: 4px;
        height: 4px;
    }
    
    .cloud {
        width: 3em;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 40px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    #header-font {
        font-size: x-large;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .contact-item {
        padding: 1.2rem 1rem;
        gap: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .contact-details h3 {
        font-size: 1rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .toggle-btn,
    .submit-btn,
    .back-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .layer {
        width: 45px;
        height: 45px;
    }
    
    .instagramSVG,
    .facebookSVG {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}