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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
}

h1 {
    font-size: 4rem;
    font-weight: 700;

}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2rem;
}

p {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.1rem;
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(26, 35, 126, 0.1);
}

.navbar {
    padding: 1.2rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a237e;
    margin: 0;
    letter-spacing: 3px;
    font-family: 'Montserrat', sans-serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.nav-link:hover,
.nav-link.active {
    color: #ff6b6b;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b, #1a237e);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 28px;
    height: 3px;
    background: #1a237e;
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1a237e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: #1a237e;
    border: 2px solid #1a237e;
}

.btn-outline:hover {
    background: #1a237e;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.3);
}

.btn-full {
    width: 100%;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/photographer-2048-x-1365-backgro.jpg') center/cover no-repeat;
    z-index: -2;
}

.hero-background::before {
   
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(84, 9, 189, 0.819);
    z-index: -1;
    opacity: 0.5;
}

.hero-container {
    width: 100%;
    text-align: center;
    color: white;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 1.2s ease;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: white;  
 

}
.hero-title p {
    font-size: 2.5rem;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    font-weight: 300;
    color:white;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Page Hero */
.page-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    color: white;
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  
}

.page-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Sections */
.section-title {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a237e;
    font-size: 3rem;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #1a237e);
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
}

/* Services */
.services-preview {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}



.service-card span {
    color: #1a237e;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 1px;
}
.service-card {

    background: white;
    padding: 3.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(26, 35, 126, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(26, 35, 126, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #1a237e);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(26, 35, 126, 0.15);
}

.service-image {
    margin-bottom: 2.5rem;
}

.service-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #1a237e, #3949ab);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 3rem;
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.3);
}

.service-content h3 {
    margin-bottom: 1.5rem;
    color: #1a237e;
    font-size: 2rem;
    font-weight: 600;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

/* Our Services */
.our-services {
    padding: 120px 0;
    background: white;
}

.services-detailed {
    display: grid;
    gap: 5rem;
}

.service-detailed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(26, 35, 126, 0.08);
    border: 1px solid rgba(26, 35, 126, 0.05);
}

.service-detailed:nth-child(even) {
    direction: rtl;
}

.service-detailed:nth-child(even) .service-info {
    direction: ltr;
}

.service-image-large {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

    .service-image-large img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}



.outdoor-bg {
    background: linear-gradient(135deg, #1a237e, #3949ab);
}

.studio-bg {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
}

.placeholder-image-large span {
    position: relative;
    z-index: 2;
    font-size: 1.3rem;
    margin-top: 1.5rem;
    font-weight: 400;
    color: #fff;
    background: rgba(26,35,126,0.7);
    padding: 0.5rem 1.2rem;
    border-radius: 12px;
    margin-bottom: 1rem;
  
}

.service-info h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a237e;
    font-weight: 700;
}

.service-features {
    list-style: none;
    margin: 2.5rem 0;
}

.service-features li {
    padding: 0.8rem 0;
    color: #666;
    position: relative;
    padding-left: 2.5rem;
    font-size: 1.1rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
    font-size: 1.3rem;
    width: 25px;
    height: 25px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-pricing {
    margin-top: 2.5rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a237e;
    font-family: 'Montserrat', sans-serif;
}

/* Additional Services */
.additional-services {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.additional-services .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.additional-services .service-card {
    padding: 2.5rem;
}

.additional-services .service-icon {
    width: 90px;
    height: 90px;
    font-size: 2.2rem;
}

/* Portfolio Preview */
.portfolio-preview {
    padding: 120px 0;
    background: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-item:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    height: 500px;
    overflow: hidden;
    object-fit: contain;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgb(255, 0, 0);
    font-size: 2.5rem;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
}

.wedding-bg {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
}

.portrait-bg {
    background: linear-gradient(135deg, #1a237e, #3949ab);
}

.event-bg {
    background: linear-gradient(135deg, #f5f5dc, #daa520);
}

.nature-bg {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.placeholder-image span {
    font-size: 1.1rem;
    margin-top: 1rem;
    font-weight: 400;
}

/* About Page */
.about-content {
    padding: 120px 0;
    background: white;
}

.about-layout {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 5rem;
    align-items: start;
}

.about-image {
    position: sticky;
    top: 150px;
}

.photographer-image {
    width: 100%;
    height: 550px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(26, 35, 126, 0.15);
    border: 4px solid white;
}

.placeholder-photographer {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a237e, #3949ab);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 7rem;
}
span{
    color: #fff;
}
.about-description h2 {
    color: #1a237e;
    margin-bottom: 2.5rem;
    font-size: 2.8rem;
    font-weight: 700;
}

.about-description p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    color: #555;
}

.photographer-skills {
    margin: 4rem 0;
}

.photographer-skills h3 {
    margin-bottom: 2rem;
    color: #1a237e;
    font-size: 2rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 15px;
    border-left: 4px solid #ff6b6b;
    box-shadow: 0 5px 15px rgba(26, 35, 126, 0.05);
    transition: all 0.3s ease;
}

.skill-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.1);
}

.skill-item i {
    color: #1a237e;
    font-size: 1.8rem;
}

.photographer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 4rem 0;
}

.stat-item {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 20px;
    border-top: 4px solid #ff6b6b;
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.08);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(26, 35, 126, 0.12);
}

.stat-item h4 {
    font-size: 3rem;
    color: #1a237e;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.about-quote {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-left: 6px solid #ff6b6b;
    border-radius: 15px;
    font-style: italic;
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.05);
}

.about-quote blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #555;
    font-family: 'Dancing Script', cursive;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
}

/* Philosophy Section */
.philosophy-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.philosophy-card {
    background: white;
    padding: 3.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(26, 35, 126, 0.08);
    transition: all 0.4s ease;
    border-top: 4px solid #ff6b6b;
    position: relative;
    overflow: hidden;
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 107, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.philosophy-card:hover::before {
    top: -100%;
    right: -100%;
}

.philosophy-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(26, 35, 126, 0.12);
}

.philosophy-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1a237e, #3949ab);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.3);
}

/* Gallery */
.gallery-section {
    padding: 120px 0;
    background: #fff;
    min-height: 80vh;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
   
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
    background: #f8f9fa;
    cursor: pointer;
    transition: box-shadow 0.3s, transform 0.3s;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item:hover {
    transform: scale(1.04) translateY(-8px);
    box-shadow: 0 24px 60px rgba(26, 35, 126, 0.18);
}

.gallery-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    display: block;
}

.placeholder-gallery {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #1a237e, #3949ab);
}

.placeholder-gallery i {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border-radius: 20px;
}
.video-section {
      background-color:  #000033;
      padding: 20px;
    }

    .video-section h2 {
      margin-bottom: 20px;
      font-size: 1.5rem;
      color: #ffffff;
      font-family: 'Montserrat', sans-serif;
    }

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

    .video-frame {
      width: 100%;
      aspect-ratio: 16 / 9;
      border: none;
      border-radius: 5px;
    }

/* Contact Page */
.contact-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background-contact {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/contact-reference-1.png') center/cover;
    z-index: -2;
}

.hero-overlay-contact {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.8), rgba(57, 73, 171, 0.6));
    z-index: -1;
}

.contact-hero-content {
    text-align: center;
    color: white;
}

.contact-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.contact-subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
    font-weight: 300;
}

.contact-main {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info h2 {
    color: #1a237e;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.contact-details {
    margin-bottom: 4rem;
}

.contact-item {
    margin-bottom: 3rem;
}

.contact-item h3 {
    color: #1a237e;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.contact-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #1a237e);
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.contact-item p {
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.social-links a:hover {
    color: #ff6b6b;
}


.contact-form-container {
    background: white;
    padding: 2rem 2rem 1.5rem 2rem;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(26, 35, 126, 0.1);
    border: 1px solid rgba(26, 35, 126, 0.05);
    min-height: 320px;
}

.contact-form {
    display: grid;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.8rem;
    color: #1a237e;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.form-group input{
        padding: 0.7rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: 'Source Sans Pro', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    padding: 0.7rem 1rem;
    min-height: 80px;
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
    transform: translateY(-2px);
}

.contact-additional {
    padding: 120px 0;
    background: white;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.contact-card {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 3.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(26, 35, 126, 0.08);
    transition: all 0.4s ease;
    border-top: 4px solid #ff6b6b;
}

.contact-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(26, 35, 126, 0.12);
}

.contact-card-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1a237e, #3949ab);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.3);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 120px 0;
    background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
    color: white;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="0,0 100,100 0,100" fill="rgba(255,255,255,0.05)"/></svg>');
}

.cta-section h2 {
    margin-bottom: 1.5rem;
    font-size: 3rem;
    font-weight: 700;
    color: white;
}

.cta-section p {
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 300;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a237e 0%, #2c3e50 100%);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-logo h3 {
    margin: 0 0 1rem 0;
    font-size: 1.8rem;
    letter-spacing: 3px;
    font-family: 'Montserrat', sans-serif;
    color: white;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 1.1rem;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.social-link {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.4rem;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(26, 35, 126, 0.1);
        padding: 3rem 0;
        backdrop-filter: blur(15px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .page-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detailed {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-detailed:nth-child(even) {
        direction: ltr;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        position: static;
    }
    
    .photographer-image {
        height: 450px;
    }
    
    .photographer-stats {
        grid-template-columns: 1fr;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .masonry-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.wide {
        grid-column: span 1;
    }
    
    .contact-title {
        font-size: 3rem;
    }
    
    .contact-form-container {
        padding: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .btn {
        width: 100%;
        max-width: 320px;
    }
    
    .service-card {
        padding: 2.5rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .contact-card {
        padding: 2.5rem;
    }
    
    .service-detailed {
        padding: 2.5rem;
    }
    
    .philosophy-card {
        padding: 2.5rem;
    }
}

