@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
    --primary-color: #1a174c;
    --secondary-color: #040a22;
    --accent-color: #f9b401;
    --accent-light: #fbbf24;
    --text-light: #6e7580;
    --text-dark: #0f172a;
    --bg-dark: #0f0f23;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, );
}

.bg-warning {
    background-color: #f9b401 !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--bg-dark);
}

.w-h-30{
    width: 30px;
    height: 30px;
}

.close-icon{
    width: 30px;
    height: 30px;
   color: #dc3545;
    top: 0px;
    right: 20px;
    cursor: pointer !important;
    z-index: 1;
    font-size: 24px;
}

.font-18{
    font-size: 18px;
}
.font-24{
    font-size: 24px;
}

.fish-btn:focus {
      background-color: #f85c23 !important;
      color: white;
      outline: none;
      box-shadow: none;
    }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    /* background: rgba(15, 15, 35, 0.9); */
    background:
        radial-gradient(circle at 25% 25%, rgba(13, 19, 69, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 9, 44, 0.1) 0%, transparent 50%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(249, 180, 1, 0.2);
    transition: all 0.4s ease;
    padding: 0.8rem 0;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(15, 15, 35, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--accent-color) !important;
    letter-spacing: -0.02em;
    text-shadow: 0 0 20px rgba(249, 180, 1, 0.3);
}

.navbar-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color) !important;
    text-shadow: 0 0 10px rgba(249, 180, 1, 0.5);
}

.nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -8px;
    left: 50%;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(249, 180, 1, 0.5);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.navbar-phone {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: var(--secondary-color) !important;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(249, 180, 1, 0.3);
    border: 2px solid transparent;
}

.navbar-phone:hover {
    background: transparent;
    color: var(--accent-color) !important;
    border-color: var(--accent-color);
    box-shadow: 0 5px 30px rgba(249, 180, 1, 0.4);
    transform: translateY(-2px);
}

/* Mobile Navigation */
@media (max-width: 991px) {
    .navbar-center {
        position: static;
        transform: none;
        flex-direction: column;
        align-items: center;
        margin: 1rem 0;
    }

    .navbar-phone {
        margin-top: 1rem;
        text-align: center;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: 
                radial-gradient(circle at 25% 25%, rgba(249, 180, 1, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(249, 180, 1, 0.1) 0%, transparent 50%); */
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/bg-hero.jpg') no-repeat center center/cover;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    background: var(--glass);
    border: 1px solid rgba(249, 180, 1, 0.3);
    color: var(--accent-color);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 3.5vw, 6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero h1 .accent {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    font-weight: 400;
    max-width: 600px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: var(--secondary-color);
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(249, 180, 1, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::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.6s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249, 180, 1, 0.4);
    color: var(--secondary-color);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-color);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: var(--accent-color);
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249, 180, 1, 0.3);
}

.prod-btn .btn-form-primary {
    background: #dc3545 !important;
    color: white;
    transform: none !important;
    }

.hero-visual {
    position: relative;
    z-index: 2;
}

.fish-showcase {
    position: relative;
    perspective: 1000px;
}

.fish-card-hero {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(249, 180, 1, 0.2);
    border-radius: 10px;
    padding: 0.5rem;
    text-align: center;
    transition: all 0.6s ease;
    transform-style: preserve-3d;
}

.fish-card-hero img {
    border-radius: 10px;
}

.fish-card-hero:hover {
    transform: rotateY(10deg) rotateX(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.fish-image-hero {
    width: 100%;
    height: 300px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.fish-name-hero {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    padding-top: 15px;
}

.fish-desc-hero {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Features Section */
.features {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    background: rgba(249, 180, 1, 0.1);
    color: var(--accent-color);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.feature-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: all 0.5s ease;
    z-index: -1;
}

.feature-card:hover::before {
    left: 0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(26, 23, 76, 0.15);
    color: var(--white);
}

.feature-card:hover .feature-icon,
.feature-card:hover .feature-title,
.feature-card:hover .feature-description {
    color: var(--white);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: var(--secondary-color);
    transition: all 0.4s ease;
}

.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.feature-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    transition: all 0.4s ease;
}

/* Fish Gallery */
.fish-gallery {
    padding: 8rem 0;
    background: var(--bg-dark);
    position: relative;
}

.fish-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(13, 19, 69, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 9, 44, 0.1) 0%, transparent 50%);
}

.fish-gallery .section-title {
    color: var(--white);
}

.fish-gallery .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.fish-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.fish-card-gallery {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(249, 180, 1, 0.2);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.5s ease;
    position: relative;
}

.fish-card-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 180, 1, 0.1), rgba(26, 23, 76, 0.1));
    opacity: 0;
    transition: all 0.5s ease;
}

.fish-card-gallery:hover::before {
    opacity: 1;
}

.fish-card-gallery:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-color);
}

.fish-image-container {
    height: 280px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05), rgba(249, 180, 1, 0.05));
}

.fish-svg-gallery {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.5s ease;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.fish-card-gallery:hover .fish-svg-gallery {
    transform: scale(1.1) rotate(5deg);
}

.fish-info {
    padding: 2.5rem 2rem;
}

.fish-name-gallery {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.fish-specialty {
    color: var(--accent-light);
    font-weight: 400;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.fish-description-gallery {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.fish-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.fish-tag {
    background: rgba(249, 180, 1, 0.15);
    color: var(--accent-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(249, 180, 1, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.fish-tag:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
}

/* Call to Action */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(26,23,76,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-button {
    background: var(--secondary-color);
    color: var(--white);
    padding: 1.5rem 4rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(4, 10, 34, 0.3);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(4, 10, 34, 0.4);
    color: var(--white);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    padding: 5rem 0 2rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h5 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 0.8rem;
    display: block;
}

.footer-section a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        text-align: center;
        min-height: 90vh;
    }

    .hero-actions {
        justify-content: center;
    }

    .fish-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .navbar-center {
        gap: 1rem;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.8s ease forwards;
}


/* faq section start here */

.faq-section {
    padding: 60px 0;
    background-color: #fff;
}

.faq-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: #0d6efd;
}

.faq-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    padding: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: solid 1px rgba(13, 19, 69, 0.1);
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.faq-answer {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
}


/*About section on home page*/

.about-section {
    background: linear-gradient(135deg, #FFC107 0%, #FF9800 100%);
    min-height: auto;
    position: relative;
    overflow: hidden;
    padding-top: 40px;
    padding-bottom: 40px;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 193, 7, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.geometric-shapes {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shape-container {
    position: relative;
    width: 350px;
    height: 400px;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.shape-container:hover {
    transform: rotateY(15deg) rotateX(10deg) scale(1.05);
}

.shape {
    position: absolute;
    border-radius: 20px;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.shape-1 {
    width: 300px;
    height: 380px;
    /* background: linear-gradient(145deg, #FF6B35, #FF8E53); */
    top: 60px;
    right: 135px;
    z-index: 2;
    background-image: url('../images/mirgel-fish.jpg');
    background-size: cover;
    background-position: center;
}

.shape-2 {
    width: 220px;
    height: 320px;
    /* background: linear-gradient(145deg, #1B263B, #0F1419); */
    top: 0;
    left: 135px;
    right: 0;
    z-index: 3;
    background-image: url('../images/katla-fish.jpg');
    background-size: cover;
    background-position: center;
}

.shape-container:hover .shape-1 {
    transform: translateX(-15px) translateY(-10px) rotateZ(-5deg);
}

.shape-container:hover .shape-2 {
    transform: translateX(15px) translateY(10px) rotateZ(5deg);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-dot:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-dot:nth-child(2) {
    top: 60%;
    left: 15%;
    animation-delay: 2s;
}

.floating-dot:nth-child(3) {
    top: 30%;
    right: 20%;
    animation-delay: 4s;
}

.floating-dot:nth-child(4) {
    bottom: 40%;
    right: 10%;
    animation-delay: 1s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-20px) rotate(90deg);
    }

    50% {
        transform: translateY(-40px) rotate(180deg);
    }

    75% {
        transform: translateY(-20px) rotate(270deg);
    }
}

.content-section {
    position: relative;
    z-index: 4;
}

.about-section .section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    letter-spacing: -2px;
    line-height: 1.2;
}

.about-section .section-description {
    font-size: 1.1rem;
    color: var(--secondary-color);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.promise-section {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.promise-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1B263B;
    margin-bottom: 1.5rem;
}

.promise-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.promise-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
    border-left-color: #FF6B35;
}

.promise-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #FF6B35, #FF8E53);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.promise-content h5 {
    color: #1B263B;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.promise-content p {
    color: #2C3E50;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-section .cta-button {
    background: linear-gradient(145deg, var(--secondary-color), var(--primary-color));
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px rgba(27, 38, 59, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.about-section .cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(27, 38, 59, 0.4);
    color: white;
}

.about-section .cta-button i {
    transition: transform 0.3s ease;
}

.about-section .cta-button:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .shape-container {
        width: 280px;
        height: 320px;
    }

    .shape-1 {
        width: 160px;
        height: 220px;
    }

    .shape-2 {
        width: 140px;
        height: 260px;
    }

    .promise-section {
        padding: 1.5rem;
    }
}

/* Animation on scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 {
    transition-delay: 0.2s;
}

.animate-on-scroll.delay-2 {
    transition-delay: 0.4s;
}

.animate-on-scroll.delay-3 {
    transition-delay: 0.6s;
}



/*About Us page*/

.hero-inner-section {
    padding: 4rem 0;
    color: var(--bg-light);
    position: relative;
    overflow: hidden;
    height: 320px;
    display: flex;
    align-items: end;
    justify-content: center;
    text-align: center;
    background-image: url('/images/bg-hero-inner.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

}

.hero-inner-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 3.5vw, 6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-top: 250px;
    letter-spacing: 0.04em;
}



.hero-inner-sections {
    padding: 4rem 0;
    color: var(--bg-light);
    position: relative;
    overflow: hidden;
    height: 215px;
    display: flex;
    align-items: end;
    justify-content: center;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

}

.hero-inner-sections h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3.5vw, 5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.7rem;
    letter-spacing: 0.04em;
}



.about-promise-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.about-promise-section .promise-section {
    background: rgba(255, 255, 255, 0.774);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.about-promise-section .promise-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 1.5rem;
}

.about-promise-section .promise-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.about-promise-section .promise-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
    border-left-color: #FF6B35;
}

.about-promise-section .promise-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #FF6B35, #FF8E53);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.about-promise-section .promise-content h5 {
    color: #1B263B;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.about-promise-section .promise-content p {
    color: #2C3E50;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-promise-section .promisewrap .promise-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 1.5rem;
}

.about-promise-section .promisimagewrap {
    height: 220px;
    width: 100%;
    text-align: left;
}

.about-promise-section .promisimagewrap img {
    height: 100%;
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}


/*About Us page*/

.ourfishessection {
    padding: 60px 0;
    position: relative;
}

.ourfishessection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}


/*Form Section*/

.form-card {
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-card h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ffc107, #ffb300);
    border-radius: 2px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-label {
    color: #2c1810;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.form-control,
.form-select {
    border: none;
    border-radius: 4px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
}

.form-control:focus,
.form-select:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    
}

.form-control:hover,
.form-select:hover {
    border-color: #ffb300;
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.5);
}

.input-group-text {
    background: linear-gradient(135deg, #ffc107, #ffb300);
    border: 1px solid #ffc107;
    color: #2c1810;
    font-weight: 600;
    transition: all 0.3s ease;
}

.input-group .form-control {
    border-radius: 4px;
}

.input-group:focus-within .input-group-text {
    background: linear-gradient(135deg, #ffb300, #ffc107);
    transform: scale(1.02);
}

.form-group .btn-primary {
    background: linear-gradient(145deg, #f85c23, #f88648);
    border: none;
    border-radius: 12px;
    padding: 15px 40px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c1810;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.form-group .btn-primary:hover::before {
    left: 100%;
}

.form-group .btn-primary:hover {
    background: linear-gradient(135deg, #ffb300, #ff8f00);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 193, 7, 0.4);
}

.form-group .btn-primary:active {
    transform: translateY(-1px);
}

.floating-label {
    position: relative;
}

.floating-label .form-control:focus+.form-label,
.floating-label .form-control:not(:placeholder-shown)+.form-label {
    transform: translateY(-25px) scale(0.85);
    color: #ffc107;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.8s ease forwards;
}

.phone-btn {
    background: linear-gradient(135deg, #ffc107, #ffb300);
    color: #2c1810;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.phone-btn:hover {
    background: linear-gradient(135deg, #ffb300, #ff8f00);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 193, 7, 0.3);
}

@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 2.5rem;
    }

    .info-card,
    .form-card {
        margin-bottom: 30px;
        padding: 30px 20px;
    }

    .main-content {
        padding: 40px 0;
    }
}

.fish-bullet{
    padding-bottom: 10px;
}