/* CSS Variables */
:root {
  --primary-color: #1a437d;
  --secondary-color: #c12127;
  --accent-color: #f8c537;
  --text-color: #1b2027;
  --light-text: #6b7280;
  --bg-color: #ffffff;
  --card-bg: #f9f9f9;
  --border-color: #e5e7eb;
  --section-padding: 80px 0;
  --scroll-speed: 40s;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins';
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
}

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

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

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

section {
  padding: var(--section-padding);
  width: 100%;
  box-sizing: border-box;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary-color);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
}

span {
  color: var(--secondary-color);
}

/* Button Styles */
.cta-button, .submit-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: .8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover, .submit-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(193, 33, 39, 0.3);
}

/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 10px 5%;
  background-color: var(--bg-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
  height: 100px;
  transition: all 0.5s ease;
}

.navbar.scrolled .logo img {
  height: 70px;
}

.navbar.navbar.scrolled .menu li a{
    color: #1a437d;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.5s ease;
  position: relative;
}

.menu {
  display: flex;
}

.menu li {
  margin-left: 30px;
}

.menu li a {
  color: white;
  font-size: 1rem;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
}

.menu li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.5s ease;
}

.menu li a:hover::after {
  width: 100%;
}

.menu li a:hover {
  color: white;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  color: white;
  font-size: 1.5rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  padding: 0;
  margin-bottom: 0;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 40px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-us {
  background-color: var(--bg-color);
}

.about-us-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-us-image {
  flex: 1;
  overflow: hidden;
}

.about-us-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-us-image:hover img {
  transform: scale(1.05);
}

.about-us-content {
  flex: 1;
}

.about-us-content h2 {
  font-size: 2.4rem;
  font-weight: 100;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.about-us-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin: 25px 0 10px;
}

.about-us-content p {
  font-size: .9rem;
  font-weight: 100;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 15px;
}

/* Services Section */
.carousel {
  background-color: white;
}

.carousel__container {
  display: flex;
  gap: 30px;
  padding: 20px 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.carousel__container::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.carousel-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 280px;
  min-width: 280px;
  height: 350px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.carousel-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.carousel-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-item__details {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
  color: white;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.carousel-item:hover .carousel-item__details {
  transform: translateY(0);
}

.carousel-item__details--title {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.carousel-item__details--subtitle {
  font-size: 1rem;
  font-weight: 300;
  opacity: 0.9;
}

.carousel h2{
  font-size: 2.4rem;
  font-weight: 100;
}

.controls {
  margin-top: 14px;
}

.controls i {
  margin-right: 14px;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.5s ease;
}

.controls i:hover {
  color: var(--secondary-color);
}

/* Services Section Responsive */
@media (max-width: 992px) {
  .carousel-item {
    width: 260px;
    min-width: 260px;
    height: 330px;
  }
  
  .carousel__container {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .carousel-item {
    width: 240px;
    min-width: 240px;
    height: 300px;
  }
  
  .carousel__container {
    gap: 20px;
    padding: 20px 10px;
  }
  
  .carousel-item__details {
    padding: 15px;
  }
  
  .carousel-item__details--title {
    font-size: 1.1rem;
  }
  
  .carousel-item__details--subtitle {
    font-size: 0.9rem;
  }
  
  .carousel h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .carousel-item {
    width: 220px;
    min-width: 220px;
    height: 280px;
  }
  
  .carousel__container {
    gap: 15px;
    padding: 20px 5px;
  }
  
  .carousel-item__details {
    padding: 12px;
  }
  
  .carousel-item__details--title {
    font-size: 1rem;
  }
  
  .carousel-item__details--subtitle {
    font-size: 0.85rem;
  }
  
  .controls i {
    font-size: 0.9rem;
    margin-right: 10px;
  }
  
  .carousel h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 400px) {
  .carousel-item {
    width: 200px;
    min-width: 200px;
    height: 260px;
  }
  
  .carousel__container {
    gap: 12px;
  }
}


/* Our Work Section */
 .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    /* Work Section Styles */
    .work-section {
        padding: var(--section-padding);
        text-align: center;
    }
    
    .section-title {
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #333;
    }
    
    .section-description {
        font-size: 16px;
        color: #666;
        max-width: 700px;
        margin: 0 auto 40px;
        line-height: 1.6;
    }
    
    /* Work Preview Styles */
    .work-preview {
        text-align: left;
        margin-top: 40px;
    }
    
    .work-preview-title {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 30px;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #333;
        text-align: center;
    }
    
    .category {
        margin-bottom: 50px;
    }
    
    .category-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }
    
    .category-header h2 {
        font-size: 18px;
        font-weight: 600;
        text-transform: uppercase;
        color: #333;
    }
    
    .view-all {
        font-size: 14px;
        color: #666;
        text-decoration: none;
        display: flex;
        align-items: center;
    }
    
    .view-all::after {
        content: "→";
        margin-left: 5px;
    }
    
    .category-divider {
        border: none;
        border-top: 1px solid #ddd;
        margin: 40px auto;
        width: 100%;
        max-width: 1200px;
    }
    
    /* Video Grid Styles */
    .video-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
        justify-items: center;
    }
    
    .video-card-container {
        width: 100%;
        max-width: 350px;
    }
    
    .video-card {
        position: relative;
        width: 100%;
        padding-top: 56.25%; /* 16:9 aspect ratio */
        background-color: #000;
        cursor: pointer;
        overflow: hidden;
        border-radius: 4px;
    }
    
    .portfolio-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    .video-card iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }
    
    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: opacity 0.3s ease;
        z-index: 2;
        pointer-events: none;
    }
    
    .video-card:hover .video-overlay {
        opacity: 0;
    }
    
    .video-card.playing .video-overlay {
        opacity: 0;
    }
    
    .play-icon {
        width: 60px;
        height: 60px;
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #333;
        font-size: 20px;
        transition: transform 0.3s ease;
    }
    
    .video-card:hover .play-icon {
        transform: scale(1.1);
    }
    
    .video-controls {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding: 15px;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 3;
        pointer-events: none;
    }
    
    .video-card:hover .video-controls,
    .video-card.playing .video-controls {
        opacity: 1;
        pointer-events: all;
    }
    
    .control-btn {
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 14px;
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
    }
    
    .control-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
    }
    
    .control-btn:active {
        transform: scale(0.95);
    }
    
    .control-btn i {
        pointer-events: none;
    }
    
    .video-info {
        margin-top: 12px;
    }
    
    .date-info {
        font-size: 12px;
        color: #666;
        line-height: 1.4;
    }
    
    .initials {
        margin: 5px 0;
        font-size: 14px;
        letter-spacing: 1px;
        color: #333;
    }
    
    /* Photography Subcategories */
    .subcategories {
        display: flex;
        gap: 20px;
        margin: 15px 0 25px;
        flex-wrap: wrap;
    }
    
    .subcategory {
        font-weight: 600;
        color: #333;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .video-grid {
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 20px;
        }
        
        .section-title {
            font-size: 28px;
        }
        
        .work-preview-title {
            font-size: 22px;
        }
    }
    
    @media (max-width: 480px) {
        .video-grid {
            grid-template-columns: 1fr;
        }
        
        .subcategories {
            flex-direction: column;
            gap: 8px;
        }
        
        .section-title {
            font-size: 24px;
        }
        
        .work-preview-title {
            font-size: 20px;
        }
    }

/* Process Section */
.process-section {
  background-color: var(--bg-color);
}

.timeline {
  position: relative;
  padding-left: 50px;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-color);
  opacity: 0.2;
}

.timeline-step {
  position: relative;
  margin-bottom: 40px;
  background: var(--primary-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-left: 4px solid var(--secondary-color);
}

.step-number {
  position: absolute;
  left: -50px;
  top: 30px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: white;
  font-weight: 500;
  border-radius: 50%;
  border: 4px solid var(--card-bg);
}

.step-title {
  font-size: 1rem;
  font-weight: 300;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.step-description {
  color: var(--bg-color);
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.8;
}

.process-section h2{
  font-size: 2.4rem;
  font-weight: 100;
}

/* Clients Section */

   .clients-section {
            padding: var(--section-padding);
        }

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

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .scroller {
            overflow: hidden;
            position: relative;
            margin: 2rem 0;
            -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
            mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        }

        .scroller-inner {
            display: flex;
            flex-wrap: nowrap;
            width: max-content;
            animation: scroll var(--scroll-speed) linear infinite;
            will-change: transform;
        }

        .scroller:hover .scroller-inner {
            animation-play-state: paused;
        }

        .client-row {
            display: flex;
            align-items: center;
            gap: 0;
        }

        .client-item {
            flex: 0 0 auto;
            margin: 0 40px;
            transition: transform 0.3s ease;
        }

        .client-item:hover {
            transform: scale(1.1);
        }

        .client-link {
            display: block;
        }

        .client-logo {
            height: 60px;
            width: auto;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .client-link:hover .client-logo {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* Responsive adjustments */
        @media (max-width: 1024px) {
            :root {
                --section-padding: 3rem;
                --scroll-speed: 35s;
            }

            .client-logo {
                height: 50px;
            }
        }

        @media (max-width: 768px) {
            :root {
                --section-padding: 2.5rem;
                --scroll-speed: 30s;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .section-header p {
                font-size: 1rem;
            }

            .client-logo {
                height: 40px;
            }

            .client-item {
                margin: 0 25px;
            }
        }

        @media (max-width: 480px) {
            :root {
                --section-padding: 2rem;
                --scroll-speed: 25s;
            }

            .section-header h2 {
                font-size: 1.8rem;
            }

            .client-logo {
                height: 35px;
            }

            .client-item {
                margin: 0 20px;
            }
        }

 .contact-section {
            position: relative;
            width: 100%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: var(--section-padding);
            color: white;
            text-align: center;
        }

        .parallax-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../img/parallax.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            z-index: -1;
            filter: brightness(0.5);
        }

        .contact-container {
            max-width: 1200px;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: flex-start;
        }

        .contact-header {
            width: 100%;
            margin-bottom: 40px;
        }

        .contact-header h1 {
            font-size: 3rem;
            margin-bottom: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .contact-header h2 {
            font-size: 1.5rem;
            font-weight: 300;
            margin-bottom: 30px;
        }

        .contact-info {
            flex: 1;
            min-width: 300px;
            text-align: left;
            padding: 0 20px;
        }

        .map-container {
            width: 100%;
            height: 575px;
            background: rgba(255, 255, 255, 0.2);
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .map-placeholder {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .contact-info-item {
            margin-bottom: 30px;
        }

        .contact-info-item strong {
            display: block;
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .contact-form {
            flex: 1;
            min-width: 300px;
            padding: 0 20px;
        }

        .form-group {
            margin-bottom: 20px;
            text-align: left;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            font-size: 1rem;
        }

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

        .send-btn {
            background: white;
            color: black;
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
        }

        .send-btn:hover {
            background: #f1f1f1;
        }

        .divider {
            width: 100%;
            height: 1px;
            background: rgba(255, 255, 255, 0.3);
            margin: 40px 0;
        }

        .footer-number {
            font-size: 2rem;
            margin-top: 20px;
        }

        @media (max-width: 768px) {
            .contact-container {
                flex-direction: column;
            }
            
            .contact-info, .contact-form {
                width: 100%;
                padding: 0;
                margin-bottom: 40px;
            }
            
            .contact-header h1 {
                font-size: 2rem;
            }
            
            .contact-header h2 {
                font-size: 1.2rem;
            }
        }

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 120px;
  margin-bottom: 20px;
}

.footer-links h4, .footer-social h4 {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  color: var(--accent-color);
}

.footer-links h4::after, .footer-social h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--secondary-color);
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  font-size: .9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.5s ease;
}

.footer-links ul li a:hover {
  color: white;
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-bottom p{
  font-size: .8rem;
  font-weight: 400;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .section-title {
    font-size: 2.2rem;
    margin-bottom: 50px;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .about-us-container {
    flex-direction: column;
  }
  
  .about-us-content {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 15px 5%;
  }
  
  .menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--primary-color);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    padding: 20px;
  }
  
  .menu.active {
    left: 0;
  }
  
  .menu li {
    margin: 15px 0;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .timeline {
    padding-left: 30px;
  }
  
  .step-number {
    left: -40px;
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
  
  .step-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .cta-button, .submit-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .contact-info, .quote-form {
    padding: 30px 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-links h4::after, .footer-social h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-icons {
    justify-content: center;
  }
}