/* Contact Page Specific Styles */
.contact-hero-section {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--midnight-navy) 100%);
    color: white;
      padding: 147px 0 89px;
    position: relative;
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../display/casino_hotel_conference_room_business_4.webp') center/cover;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
      max-width: 780px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 49px;
    font-weight: 700;
      margin-bottom: 21px;
    line-height: 1.21;
}

.hero-subtitle {
    font-size: 19px;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-form-section {
      padding: 89px 0;
    background: var(--coral-sunset);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
      gap: 67px;
    align-items: start;
}

.contact-info {
    background: white;
      padding: 47px 34px;
    border-radius: 17px;
      box-shadow: 0 13px 34px var(--shadow-depth);
}

.contact-info h2 {
    font-size: 32px;
    color: var(--ocean-blue);
    font-weight: 700;
      margin-bottom: 34px;
}

.info-item {
    display: flex;
    align-items: flex-start;
      gap: 21px;
    margin-bottom: 34px;
}

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

.info-icon {
    flex-shrink: 0;
}

.icon-placeholder {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--accent-warm) 100%);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.info-icon.location .icon-placeholder::before {
    content: '';
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
}

.info-icon.location .icon-placeholder::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--ocean-blue);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
}

.info-icon.phone .icon-placeholder::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 3px solid white;
    border-radius: 4px;
    transform: rotate(15deg);
}

.info-icon.phone .icon-placeholder::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 2px;
    background: white;
    border-radius: 1px;
    top: 19px;
    left: 50%;
    transform: translateX(-50%) rotate(15deg);
}

.info-icon.service .icon-placeholder::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 3px solid white;
    border-radius: 50%;
    position: relative;
}

.info-icon.service .icon-placeholder::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 8px;
    background: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
    border-radius: 1px;
}

.info-content h4 {
    font-size: 18px;
    color: var(--ocean-blue);
    font-weight: 600;
      margin-bottom: 7px;
}

.info-content p {
    color: var(--midnight-navy);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-form {
    background: white;
      padding: 47px 34px;
    border-radius: 17px;
      box-shadow: 0 13px 34px var(--shadow-depth);
}

.form-header {
      margin-bottom: 34px;
}

.form-header h2 {
    font-size: 32px;
    color: var(--ocean-blue);
    font-weight: 700;
      margin-bottom: 13px;
}

.form-header p {
    color: var(--midnight-navy);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 0;
}

.form-group {
    position: relative;
      margin-bottom: 28px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--ocean-blue);
      margin-bottom: 9px;
}

.form-group input,
.form-group textarea {
    width: 100%;
      padding: 17px 21px;
    border: 2px solid #e1e5e9;
    border-radius: 13px;
    font-size: 16px;
    color: var(--midnight-navy);
      transition: all 0.34s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: #fafbfc;
    position: relative;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-warm);
    background: white;
      box-shadow: 0 0 0 3px rgba(22, 131, 251, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-highlight {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--accent-warm);
      transition: width 0.34s ease;
}

.form-group input:focus + .form-highlight,
.form-group textarea:focus + .form-highlight {
    width: 100%;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
      gap: 13px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
      gap: 13px;
    cursor: pointer;
    font-size: 15px;
    line-height: 1.5;
    color: var(--midnight-navy);
    margin-bottom: 0;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 21px;
    height: 21px;
    border: 2px solid #d1d5db;
    border-radius: 5px;
    position: relative;
    flex-shrink: 0;
      transition: all 0.28s ease;
    background: white;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--accent-warm);
    border-color: var(--accent-warm);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.submit-btn {
    width: 100%;
      padding: 19px 34px;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--accent-warm) 100%);
    color: white;
    border: none;
    border-radius: 13px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
      transition: all 0.34s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
      box-shadow: 0 13px 34px rgba(22, 131, 251, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn.loading {
    pointer-events: none;
}

.btn-text {
      transition: opacity 0.28s ease;
}

.btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    opacity: 0;
      transition: opacity 0.28s ease;
}

.submit-btn.loading .btn-text {
    opacity: 0;
}

.submit-btn.loading .btn-loader {
    opacity: 1;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.featured-hotels-preview {
      padding: 89px 0;
    background: white;
}

.hotels-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 34px;
}

.hotel-preview-card {
    background: white;
    border-radius: 17px;
    overflow: hidden;
      box-shadow: 0 7px 28px var(--shadow-depth);
      transition: all 0.34s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hotel-preview-card:hover {
      transform: translateY(-7px);
    box-shadow: 0 21px 54px var(--shadow-depth);
}

.hotel-preview-image {
    height: 200px;
    overflow: hidden;
}

.hotel-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
      transition: transform 0.42s ease;
}

.hotel-preview-card:hover .hotel-preview-image img {
    transform: scale(1.05);
}

.hotel-preview-content {
      padding: 24px 21px;
}

.hotel-preview-content h3 {
    font-size: 19px;
    color: var(--ocean-blue);
    font-weight: 600;
      margin-bottom: 7px;
}

.hotel-preview-content p {
    color: var(--midnight-navy);
    opacity: 0.7;
    font-size: 15px;
    margin-bottom: 0;
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
      transition: all 0.34s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(5px);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: white;
    border-radius: 21px;
      max-width: 540px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
      box-shadow: 0 34px 89px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(30px);
      transition: all 0.34s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.popup-overlay.active .popup-content {
    transform: scale(1) translateY(0);
}

.popup-header {
      padding: 47px 34px 21px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.success-icon {
      margin-bottom: 21px;
}

.checkmark-circle {
    width: 89px;
    height: 89px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.checkmark-circle .checkmark {
    width: 34px;
    height: 21px;
    border: solid white;
    border-width: 0 4px 4px 0;
    transform: rotate(45deg);
    animation: checkmark-appear 0.6s ease 0.2s both;
}

@keyframes checkmark-appear {
    0% {
        transform: rotate(45deg) scale(0);
    }
    100% {
        transform: rotate(45deg) scale(1);
    }
}

.popup-header h2 {
    font-size: 28px;
    color: var(--ocean-blue);
    font-weight: 700;
    margin-bottom: 0;
}

.popup-body {
      padding: 34px;
}

.popup-body p {
    color: var(--midnight-navy);
    line-height: 1.6;
      margin-bottom: 17px;
    opacity: 0.9;
}

.next-steps {
      margin-top: 28px;
      padding: 21px;
    background: var(--coral-sunset);
    border-radius: 13px;
}

.next-steps h4 {
    color: var(--ocean-blue);
    font-size: 17px;
    font-weight: 600;
      margin-bottom: 13px;
}

.next-steps ul {
    margin: 0;
    padding-left: 21px;
}

.next-steps li {
    color: var(--midnight-navy);
    opacity: 0.8;
      margin-bottom: 7px;
    line-height: 1.5;
}

.popup-footer {
      padding: 21px 34px 34px;
    display: flex;
      gap: 13px;
    justify-content: center;
}

.popup-btn {
      padding: 13px 28px;
    border: none;
    border-radius: 9px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
      transition: all 0.28s ease;
}

.popup-btn.primary {
    background: var(--ocean-blue);
    color: white;
}

.popup-btn.primary:hover {
    background: var(--midnight-navy);
    transform: translateY(-1px);
}

.popup-btn.secondary {
    background: transparent;
    color: var(--ocean-blue);
    border: 2px solid var(--ocean-blue);
}

.popup-btn.secondary:hover {
    background: var(--ocean-blue);
    color: white;
}

/* Responsive Styles */
@media (max-width: 890px) {
    .contact-hero-section {
          padding: 120px 0 67px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 17px;
    }
    
    .contact-form-section {
          padding: 67px 0;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
          gap: 47px;
    }
    
    .contact-info,
    .contact-form {
          padding: 34px 21px;
    }
    
    .contact-info h2,
    .form-header h2 {
        font-size: 28px;
    }
    
    .hotels-preview-grid {
        grid-template-columns: 1fr;
          gap: 28px;
    }
    
    .featured-hotels-preview {
          padding: 67px 0;
    }
}

@media (max-width: 640px) {
    .contact-hero-section {
          padding: 100px 0 56px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .contact-info,
    .contact-form {
          padding: 28px 17px;
    }
    
    .form-group {
          margin-bottom: 21px;
    }
    
    .form-group input,
    .form-group textarea {
          padding: 13px 17px;
    }
    
    .submit-btn {
          padding: 17px 28px;
        font-size: 16px;
    }
    
    .popup-content {
          max-width: 90%;
    }
    
    .popup-header,
    .popup-body {
          padding: 28px 21px;
    }
    
    .popup-footer {
          padding: 17px 21px 28px;
        flex-direction: column;
    }
    
    .popup-btn {
        width: 100%;
    }
}